N0

Inheritance diagram of hermespy.simulation.noise.level.N0

The noise level \(N_0\) representes the expected power of the noise in Watts.

class N0(power)[source]

Bases: NoiseLevel

Fixed noise power configuration.

Parameters:

power (float) – Noise power in Watt.

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:

N0

Returns:

The deserialized object.

get_power()[source]

Power of the noise level.

Returns: Power in Watt.

Return type:

float

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 level: float

Power of the noise in Watt.

Raises:

ValueError – If the noise power is negative.

property power: float

Power of the noise level in Watt.

Raises:

ValueError – If the noise power is negative.

property title: str

Title of the scalar dimension.

Displayed in plots and tables during simulation runtime.