Rapp Power Amplifier

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

Model of a power amplifier according to Rapp[1]. Implements a saturation characteristic according to

\[s'(t) = s(t) \cdot \left( 1 + \left( \frac{|s(t)|}{s_\mathrm{sat}} \right)^{2p_\mathrm{Rapp}} \right)^{-\frac{1}{2p_\mathrm{Rapp}}} \text{,}\]

where \(p_\mathrm{Rapp} \in \lbrace x \in \mathbb{R} | x \geq 1 \rbrace\) denotes the smoothness factor of the saturation curve.

class RappPowerAmplifier(smoothness_factor=1.0, **kwargs)[source]

Bases: PowerAmplifier

Model of a power amplifier according to Rapp’s model.

See Rapp[1] for further details.

Parameters:
  • smoothness_factor (float) – Smoothness factor of the amplification saturation characteristics.

  • **kwargs (Any) – PowerAmplifier base class initialization arguments.

classmethod Deserialize(process)[source]

Deserialize an object’s state.

Objects cannot be deserialized directly, instead a Factory must be instructed to carry out the deserialization process.

Parameters:

process (DeserializationProcess) – The current stage of the deserialization process. This object is generated by the Factory and provides an interface to deserialization methods supporting multiple backends.

Return type:

RappPowerAmplifier

Returns:

The deserialized object.

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.

serialize(process)[source]

Serialize this object’s state.

Objects cannot be serialized directly, instead a Factory must be instructed to carry out the serialization process.

Parameters:

process (SerializationProcess) – The current stage of the serialization process. This object is generated by the Factory and provides an interface to serialization methods supporting multiple backends.

Return type:

None

property smoothness_factor: float

Smoothness factor of the amplification saturation characteristics.

Also referred to as Rapp-factor \(p_\mathrm{Rapp}\).

Returns: Smoothness factor.

Raises:

ValueError – If smoothness factor is smaller than one.