Transmission Frame¶

- class CommunicationTransmissionFrame(signal, bits, bit_block_size, encoded_bits, code_block_size, symbols, encoded_symbols, timestamp)[source]¶
Bases:
Transmission
A single synchronized frame of information generated by transmittgin over a modem.
Returned when calling the
transmit
method of aTransmittingModem
instance.- Parameters:
signal (
Signal
) – Transmitted communication base-band waveform.bits (
ndarray
) – Transmitted communication data bits.bit_block_size (
int
) – Block size of the forward error correction input.encoded_bits (
ndarray
) – Transmitted communication bits after FEC encoding.code_block_size (
int
) – Block size of the forward error correction outputsymbols (
Symbols
) – Transmitted communication data symbols.encoded_symbols (
Symbols
) – Transmitted communication data symbols after symbol encoding.timestamp (
float
) – Time at which the frame was transmitted in seconds.
- 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.
- 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: