Channel Equalization

Inheritance diagram of hermespy.modem.waveform.ChannelEqualization

Channel equalization refers to the process of correcting the channel propagation’s impact between transmitter and receiver on communication symbols.

class ChannelEqualization(waveform=None)[source]

Bases: Generic[CWT], ABC, Serializable

Abstract base class for channel equalization routines of waveform generators.

Parameters:

waveform (Optional[TypeVar(CWT, bound= CommunicationWaveform)]) – The waveform generator this equalization routine is attached to.

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:

ChannelEqualization

Returns:

The deserialized object.

equalize_channel(stated_symbols)[source]

Equalize the wireless channel of a received communication frame.

Parameters:

frame – Symbols and channel state of the received communication frame.

Return type:

Symbols

Returns: The equalize symbols.

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 waveform: CWT | None

Waveform generator this equalization routine is attached to.

Returns: Handle to the waveform generator. None if the equalization routine is floating.