SnirReceiverBase

Package: inet.physicallayer.wireless.common.base.packetlevel

SnirReceiverBase

compound module

Serves as a base module for SNIR receiver models.

analogModel : like IReceiverAnalogModel

IReceiverAnalogModel: The receiver analog model describes the connecting piece between the technology-dependent part of...

Source:
analogModel: <default("")> like IReceiverAnalogModel if typename != "" {
    @display("p=100,100");
}

Inheritance diagram

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Known subclasses

Name Type Description
ApskLayeredReceiver compound module

This receiver model is part of a simple hypothetical layered radio. It receives detailed transmissions that have a separate representation for all simulated domains. The levelOfDetail parameter controls which domains are actually simulated, but all parameters relevant to the error model are expected to be set on the reception.

GenericReceiver compound module

This receiver is part of the generic radio architecture.

Ieee80211LayeredOfdmReceiver compound module

Implements an IEEE 802.11 OFDM receiver. The implementation details are based on the following standard: IEEE Std 802.11-2012 PART 11: WIRELESS LAN MAC AND PHY SPECIFICATIONS

NarrowbandReceiverBase compound module

Serves as a base module for narrowband receiver models.

Extends

Name Type Description
ReceiverBase compound module (no description)

Parameters

Name Type Default value Description
displayStringTextFormat string ""

Determines the text that is written on top of the submodule, supports displaying pars, watches, and module-specific information

ignoreInterference bool false

True means interfering transmissions are ignored when determining whether a reception is successful or not

signalAnalogRepresentation string "scalar"
snirThreshold double

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

snirThresholdMode string "min"

Properties

Name Value Description
class Module
display i=block/wrx

Source code

//
// Serves as a base module for SNIR receiver models.
//
module SnirReceiverBase extends ReceiverBase like IReceiver
{
    parameters:
        double snirThreshold @unit(dB);    // Reception is not successful if the SNIR is below this threshold (unsuccessful reception)
        string snirThresholdMode @enum("min","mean") = default("min");
        @display("i=block/wrx");
}

File: src/inet/physicallayer/wireless/common/base/packetlevel/SnirReceiverBase.ned