Saleh Power Amplifier¶

Model of a power amplifier according to Saleh[1]. Implements a saturation characteristic according to
where
describes the amplitude model depending on two parameters \(\alpha_\mathrm{a}, \beta_\mathrm{a} \in \mathbb{R}_{+}\) and
describes the phase model depending on \(\alpha_\Phi, \beta_\Phi \in \mathbb{R}\), respectively.
- class SalehPowerAmplifier(amplitude_alpha, amplitude_beta, phase_alpha, phase_beta, **kwargs)[source]¶
Bases:
PowerAmplifier
Model of a power amplifier according to Saleh.
See Saleh[1] for further details.
- Parameters:
- 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 theFactory
and provides an interface to deserialization methods supporting multiple backends.- Return type:
- 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:
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 theFactory
and provides an interface to serialization methods supporting multiple backends.- Return type:
- property amplitude_alpha: float¶
Amplitude model factor \(\alpha_\mathrm{a}\).
- Returns:
Amplitude factor.
- Return type:
- Raises:
ValueError – If the factor is smaller than zero.
- property amplitude_beta: float¶
Amplitude model factor \(\beta_\mathrm{a}\).
Returns: Amplitude factor.
- Raises:
ValueError – If the factor is smaller than zero.