Package: inet.physicallayer.wireless.ieee80211.packetlevel
Ieee80211RadioMedium
compound moduleThis radio medium model is part of thee IEEE 802.11 physical layer model. It must be used in conjunction with the Ieee80211Radio model or other derived models.
This model provides sensible default values for the radio medium parameters to be used in IEEE 802.11 simulations.
See also: Ieee80211ScalarRadioMedium, Ieee80211DimensionalRadioMedium.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Known subclasses
Name | Type | Description |
---|---|---|
Ieee80211DimensionalRadioMedium | compound module |
This radio medium model uses dimensional transmission power (that changes over time and/or frequency) in the analog representation. It must be used in conjunction with the Ieee80211DimensionalRadio model. |
Ieee80211ScalarRadioMedium | compound module |
This radio medium model uses scalar transmission power in the analog representation. It must be used in conjunction with the Ieee80211ScalarRadio model. |
Extends
Name | Type | Description |
---|---|---|
RadioMedium | compound module |
The medium model describes the shared physical medium where communication takes place. It keeps track of radios, noise sources, ongoing transmissions, background noise, and other ongoing noises. The medium computes when, where and how transmissions and noises arrive at receivers. It also efficiently provides the set of interfering transmissions and noises for the receivers. |
Parameters
Name | Type | Default value | Description |
---|---|---|---|
physicalEnvironmentModule | string | "physicalEnvironment" |
module path of the physical environment model |
signalAnalogRepresentation | string | "scalar" | |
rangeFilter | string | "" |
filter parameters that control when signals are sent to receiver radios |
radioModeFilter | bool | false |
when enabled the radio medium doesn't send signals to a radio if it's neither in receiver nor in transceiver mode |
listeningFilter | bool | false |
when enabled the radio medium doesn't send signals to a radio if it listens on the channel in incompatible mode (e.g. different carrier frequency and bandwidth, different modulation) |
macAddressFilter | bool | false |
when enabled the radio medium doesn't send signals to a radio if it the destination mac address differs |
recordTransmissionLog | bool | false |
logging parameters |
recordReceptionLog | bool | false |
when enabled the medium writes one line per reception into the communication log file |
Properties
Name | Value | Description |
---|---|---|
class | RadioMedium | |
display | i=misc/sun |
Signals
Name | Type | Unit |
---|---|---|
radioRemoved | ||
signalDepartureStarted | ||
radioAdded | ||
signalArrivalStarted | ||
signalAdded | ||
signalDepartureEnded | ||
signalRemoved | ||
signalArrivalEnded |
Unassigned submodule parameters
Name | Type | Default value | Description |
---|---|---|---|
neighborCache.refillPeriod | double |
Source code
// // This radio medium model is part of thee IEEE 802.11 physical layer model. It // must be used in conjunction with the ~Ieee80211Radio model or other derived // models. // // This model provides sensible default values for the radio medium parameters // to be used in IEEE 802.11 simulations. // // @see ~Ieee80211ScalarRadioMedium, ~Ieee80211DimensionalRadioMedium. // module Ieee80211RadioMedium extends RadioMedium { parameters: backgroundNoise.power = default(-110dBm); mediumLimitCache.centerFrequency = default(2.4GHz); mediumLimitCache.minReceptionPower = default(-85dBm); mediumLimitCache.minInterferencePower = default(-110dBm); }File: src/inet/physicallayer/wireless/ieee80211/packetlevel/Ieee80211RadioMedium.ned