No Phase Noise

Inheritance diagram of hermespy.simulation.rf_chain.phase_noise.NoPhaseNoise

The NoPhaseNoise is HermesPy’s implementation of an ideal oscillator that does not add any phase noise.

class NoPhaseNoise(mother_node=None, seed=None)[source]

Bases: PhaseNoise

No phase noise considered within the device model.

Parameters:
  • mother_node (RandomNode | None) – Mother node of this random node. By default, nodes are considered to be roots.

  • seed (int | None) – Random seed used to initialize the pseudo-random number generator.

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:

NoPhaseNoise

Returns:

The deserialized object.

add_noise(signal)[source]

Add phase noise to a signal model.

Parameters:

signal (Signal) – The signal model to which phase noise is to be added.

Return type:

Signal

Returns: Noise signal model.

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