Compound Module Ieee802154NarrowbandScalarReceiver

Package: inet.physicallayer.ieee802154.packetlevel
File: src/inet/physicallayer/ieee802154/packetlevel/Ieee802154NarrowbandScalarReceiver.ned

(no description)

IErrorModel

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

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
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)

snirThreshold double

reception is not successful if the SNIR is below this threshold (unsuccessful reception)

carrierFrequency 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

errorModelType string "APSKErrorModel"

NED type of the error model

modulation string "DSSS-OQPSK-16"

one of "BPSK", "16-QAM", "256-QAM"

minInterferencePower double

Properties:

Name Value Description
display i=block/wrx
class Ieee802154NarrowbandScalarReceiver

Source code:

module Ieee802154NarrowbandScalarReceiver extends NarrowbandReceiverBase
{
    parameters:
        modulation = default("DSSS-OQPSK-16");
        errorModelType = default("APSKErrorModel");
        double minInterferencePower @unit(dBm);
        @class(Ieee802154NarrowbandScalarReceiver);
}