C-FSK

Inheritance diagram of hermespy.modem.waveform_chirp_fsk.ChirpFSKWaveform, hermespy.modem.waveform_chirp_fsk.ChirpFSKSynchronization, hermespy.modem.waveform_chirp_fsk.ChirpFSKCorrelationSynchronization

Chirp Frequency Shift Keying (C-FSK) is a modulation scheme that encodes information in the start and stop frequency of an FMCW ramp.

The waveform can be configured by specifying the number of number of pilot- and data chirps contained within each frame, as well as the duration and bandwidth each of the chirps:

1# Initialize the waveform description
2waveform = ChirpFSKWaveform(
3    chirp_duration=1e-8,
4    chirp_bandwidth=1e9,
5    num_pilot_chirps=16,
6    num_data_chirps=64,
7)

Afterwards, additional processing steps such as synchronization can be added to the waveform description:

1# Configure the waveform's synchronization routine
2waveform.synchronization = ChirpFSKCorrelationSynchronization()

In order to generate and evaluate communication transmissions or receptions, waveforms should be added to modem implementations. Refer to Transmitting Modem, Receiving Modem or Simplex Link for more information. For instructions how to implement custom waveforms, refer to Implementing Communication Waveforms.

class ChirpFSKWaveform(chirp_duration=1e-08, chirp_bandwidth=1000000000.0, freq_difference=None, num_pilot_chirps=14, num_data_chirps=50, guard_interval=0.0, **kwargs)[source]

Bases: PilotCommunicationWaveform

Chirp Frequency Shift Keying communication waveform description.

Parameters:
  • chirp_duration (float) – Duration of a single chirp in seconds.

  • chirp_bandwidth (float) – Bandwidth of a single chirp in Hz.

  • freq_difference (float | None) – Frequency difference of two adjacent chirp symbols.

  • num_pilot_chirps (int) – Number of pilot symbols within a single frame.

  • num_data_chirps (int) – Number of data symbols within a single frame.

  • guard_interval (float) – Frame guard interval in seconds.

  • **kwargs – Base waveform generator initialization arguments.

symbol_type

alias of int64

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:

ChirpFSKWaveform

Returns:

The deserialized object.

demodulate(baseband_signal)[source]

Demodulate a base-band signal stream to data symbols.

Parameters:

signal – Vector of complex-valued base-band samples of a single communication frame.

Return type:

Symbols

Returns:

The demodulated communication symbols

map(data_bits)[source]

Map a stream of bits to data symbols.

Parameters:

data_bits (ndarray) – Vector containing a sequence of L hard data bits to be mapped onto data symbols.

Return type:

Symbols

Returns: Mapped data symbols.

modulate(symbols)[source]

Modulate a stream of data symbols to a base-band signal containing a single data frame.

Parameters:

data_symbols – Singular stream of data symbols to be modulated by this waveform.

Return type:

ndarray

Returns: Samples of the modulated base-band signal.

pick(symbols)[source]

Pick the mapped symbols from the communicaton frame.

Additionally removes interleaved pilot symbols.

Parameters:

placed_symbols – The placed symbols.

Return type:

StatedSymbols

Returns: The symbols with the mapped symbols picked from the frame.

place(symbols)[source]

Place the mapped symbols within the communicaton frame.

Additionally interleaves pilot symbols.

Parameters:

symbols (Symbols) – The mapped symbols.

Return type:

Symbols

Returns: The symbols with the mapped symbols placed within the frame.

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

unmap(symbols)[source]

Map a stream of data symbols to data bits.

Parameters:

symbols (Symbols) – Sequence of K data symbols to be mapped onto bit sequences.

Return type:

ndarray

Returns:

Vector containing the resulting sequence of L data bits In general, L is greater or equal to K.

property bandwidth: float

Bandwidth of the frame generated by this generator.

Used to estimate the minimal sampling frequency required to adequately simulate the scenario.

Returns: Bandwidth in Hz.

property bit_energy: float

Theoretical average bit energy of the modulated signal.

property bits_per_symbol: int

The number of bits per generated symbol.

property chirp_bandwidth: float

Access the chirp bandwidth.

Returns: The chirp bandwidth in Hz.

property chirp_duration: float

Duration of a single chirp within a frame.

Returns: Chirp duration in seconds.

Raises:

ValueError – If the duration is less or equal to zero.

property chirps_in_frame: int

The number of chirps per generated frame.

property frame_duration: float

Length of one data frame in seconds.

property freq_difference: float

The frequency offset between neighbouring chirp symbols.

Returns: The frequency difference in Hz.

Raises:

ValueError – If freq_difference is smaller or equal to zero.

property guard_interval: float

Access the guard interval.

Returns: The guard interval in seconds.

property modulation_order: int

Access the modulation order.

Returns:

The modulation order.

Return type:

int

property num_data_chirps: int

Access the number of data chirps.

Returns: The number of data chirps.

property num_data_symbols: int

Number of bit-mapped symbols contained within each communication frame.

property num_pilot_chirps: int

Access the number of pilot chirps.

Returns: The number of pilot chirps.

property pilot_signal: Signal

Samples of the frame’s pilot section.

property power: float

Returns the theoretical average symbol (unitless) power,

Power of baseband_signal \(x[k]\) is defined as \(\sum_{k=1}^N{|x[k]|}^2 / N\) Power is the average power of the data part of the transmitted frame, i.e., bit energy x raw bit rate

property samples_in_chirp: int

The number of discrete samples per generated chirp.

property samples_per_frame: int

Number of time-domain samples per processed communication frame.

property sampling_rate: float

Rate at which the waveform generator signal is internally sampled.

Returns: Sampling rate in Hz.

property symbol_duration: float

Duration of a single symbol block.

property symbol_energy: float

The theoretical average symbol (discrete-time) energy of the modulated baseband_signal.

Energy of baseband_signal \(x[k]\) is defined as \(\sum{|x[k]}^2\) Only data bits are considered, i.e., reference, guard intervals are ignored.

Returns:

The average symbol energy in UNIT.

property symbol_precoding_support: bool

Flag indicating if this waveforms supports symbol precodings.

Returns: Boolean support flag.

class ChirpFSKSynchronization(waveform=None)[source]

Bases: Synchronization[ChirpFSKWaveform], Serializable

Synchronization for chirp-based frequency shift keying communication waveforms.

Parameters:

waveform (ChirpFSKWaveform | None) – The waveform generator this synchronization routine is attached to.

class ChirpFSKCorrelationSynchronization(threshold=0.9, guard_ratio=0.8, peak_prominence=0.2, *args, **kwargs)[source]

Bases: CorrelationSynchronization[ChirpFSKWaveform]

Correlation-based clock-synchronization for Chirp-FSK waveforms.

Parameters:
  • threshold (float) – Correlation threshold at which a pilot signal is detected.

  • guard_ratio (float) – Guard ratio of frame duration.

  • peak_prominence (float) – Minimum peak prominence for peak detection in the interval (0, 1]. \(0.2\) is a good default value for most applications.

  • *args (Any) – Synchronization base class initialization parameters.