Clipping Power Amplifier

Inheritance diagram of hermespy.simulation.rf_chain.power_amplifier.ClippingPowerAmplifier

Model of a power amplifier driven into saturation. Complex signal samples with amplitudes above \(s_\mathrm{sat} \in \mathbb{R}\) will be clipped to the maximum amplitude value. In case of clipping, the respective sample angles will be preserved, so that

\[s'(t) = \frac{s(t)}{|s(t)|} \cdot \min{(|s(t)|, s_\mathrm{sat})} \text{.}\]
class ClippingPowerAmplifier(saturation_amplitude=inf, adjust_power=False)[source]

Bases: PowerAmplifier

Model of a clipping power amplifier.

Parameters:
  • saturation_amplitude (float) – Cut-off point for the linear behaviour of the amplification in Volt.

  • adjust_power (bool) – Power adjustment flag.

model(input_signal)[source]

Model signal amplification characteristics.

Parameters:

input_signal (ndarray) – Sample vector of the signal feeding into the power amplifier.

Return type:

ndarray

Returns: Distorted signal after amplification modeling.