Transmission

Inheritance diagram of hermespy.modem.modem.CommunicationTransmission
class CommunicationTransmission(signal, frames=None)[source]

Bases: Transmission

Collection of information generated by transmitting over a modem.

Returned when calling the transmit method of a TransmittingModem instance.

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 the Factory and provides an interface to deserialization methods supporting multiple backends.

Return type:

CommunicationTransmission

Returns:

The deserialized object.

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 bits: ndarray

Transmitted bits before FEC encoding.

Returns: Numpy array of transmitted bits.

frames: List[CommunicationTransmissionFrame]

Individual transmitted communication frames.

property num_frames: int

Number of transmitted communication frames.

Returns:

Number of frames.

property symbols: Symbols