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 (numpy.ndarray) – Transmitted communication data bits.
bit_block_size (int) – Block size of the forward error correction input.
encoded_bits (numpy.ndarray) – Transmitted communication bits after FEC encoding.
code_block_size (int) – Block size of the forward error correction output
symbols (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.