Package: inet.physicallayer.wireless.common.contract.packetlevel
IReceiver
module interfaceThe receiver model describes the physical process which converts electric signals into packets.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Implemented by
Name | Type | Description |
---|---|---|
ApskDimensionalReceiver | compound module |
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. |
ApskLayeredReceiver | compound module |
This receiver model is part of a simple hypothetical layered radio. It receives detailed transmissions that have 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. |
ApskScalarReceiver | compound module |
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. |
Ieee80211DimensionalReceiver | compound module |
This receiver model receives an IEEE 802.11 transmission successfully if the minimum of the signal to noise and interference ratio over the duration of the reception is sufficiently high. It uses one of the IEEE 802.11 specific error models to compute the error rate based on this value and the used operation mode. |
Ieee80211LayeredOfdmReceiver | compound module |
This module implements an IEEE 802.11 OFDM receiver. The implemenation details are based on the following standard: IEEE Std 802.11-2012 PART 11: WIRELESS LAN MAC AND PHY SPECIFICATIONS |
Ieee80211ReceiverBase | compound module |
This receiver model serves as the base module for IEEE 802.11 receivers. It supports switching channels, configuring different operation modes, and preamble modes. |
Ieee80211ScalarReceiver | compound module |
This receiver model receives an IEEE 802.11 transmission successfully if the minimum of the signal to noise and interference ratio over the duration of the reception is sufficiently high. It uses one of the IEEE 802.11 specific error models to compute the error rate based on this value and the used operation mode. |
Ieee80211UnitDiskReceiver | compound module |
See also: Ieee80211UnitDiskTransmitter, Ieee80211UnitDiskRadio, UnitDiskRadioMedium. |
Ieee802154NarrowbandDimensionalReceiver | compound module | (no description) |
Ieee802154NarrowbandScalarReceiver | compound module | (no description) |
Ieee802154UwbIrReceiver | compound module | (no description) |
NarrowbandReceiverBase | compound module |
This module servces as a base module for narrowband receiver models. |
SnirReceiverBase | compound module |
This module servces as a base module for SNIR receiver models. |
UnitDiskReceiver | compound module |
This receiver model receives a transmission succesfully within communication range unless there's another interfering transmission within interference range. It also supports an ideal communication channel with configuring the receiver to ignore interfering transmissions. |
Used in compound modules
Name | Type | Description |
---|---|---|
Radio | compound module |
The radio model describes the physical device that is capable of transmitting and receiving signals on the medium. It contains an antenna model, a transmitter model, a receiver model, and an energy consumer model. |
Properties
Name | Value | Description |
---|---|---|
display | i=block/wrx |
Source code
// // The receiver model describes the physical process which converts electric // signals into packets. // moduleinterface IReceiver { parameters: @display("i=block/wrx"); }File: src/inet/physicallayer/wireless/common/contract/packetlevel/IReceiver.ned