Package: inet.physicallayer.wireless.apsk.packetlevel
ApskScalarReceiver
compound moduleThis receiver model receives a transmission succesfully if the minimum of the signal to noise and interference ratio over the duration of the reception is sufficiently high. It uses the error model to compute the error rate based on this value and the used modulation.
See also: ApskScalarTransmitter, ApskScalarRadio, ApskScalarRadioMedium, ScalarAnalogModel.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Extends
Name | Type | Description |
---|---|---|
NarrowbandReceiverBase | compound module |
This module servces as a base module for narrowband receiver models. |
Parameters
Name | Type | Default value | Description |
---|---|---|---|
snirThreshold | double |
reception is not successful if the SNIR is below this threshold (unsuccessful reception) |
|
snirThresholdMode | string | "min" | |
energyDetection | double |
no signal is detected at all below this reception power threshold (idle state) |
|
sensitivity | double |
reception is not possible if the signal power is below sensitivity (idle or busy states) |
|
centerFrequency | double |
center frequency of the band where this receiver listens on the medium |
|
bandwidth | double |
bandwidth of the band where this receiver listens on the medium |
|
modulation | string | "BPSK" |
one of "BPSK", "16-QAM", "256-QAM" |
Properties
Name | Value | Description |
---|---|---|
display | i=block/wrx | |
class | ApskScalarReceiver |
Source code
// // This receiver model receives a transmission succesfully if the minimum of the // signal to noise and interference ratio over the duration of the reception is // sufficiently high. It uses the error model to compute the error rate based on // this value and the used modulation. // // @see ~ApskScalarTransmitter, ~ApskScalarRadio, ~ApskScalarRadioMedium, // ~ScalarAnalogModel. // module ApskScalarReceiver extends NarrowbandReceiverBase { parameters: modulation = default("BPSK"); errorModel.typename = default("ApskErrorModel"); @class(ApskScalarReceiver); }File: src/inet/physicallayer/wireless/apsk/packetlevel/ApskScalarReceiver.ned