Package: inet.physicallayer.ieee802154.packetlevel
Ieee802154NarrowbandScalarRadioMedium
compound module(no description)
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
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 |
propagationType | string | "ConstantSpeedPropagation" |
submodule type parameters |
pathLossType | string | "BreakpointPathLoss" |
NED type of the path loss model |
obstacleLossType | string | "" |
NED type of the obstacle loss model |
analogModelType | string | "ScalarAnalogModel" |
NED type of the analog model |
backgroundNoiseType | string | "IsotropicScalarBackgroundNoise" |
NED type of the background noise model |
mediumLimitCacheType | string | "MediumLimitCache" |
NED type of the medium limit cache model |
neighborCacheType | string | "" |
NED type of the neighbor cache model |
communicationCacheType | string | "VectorCommunicationCache" |
NED type of the communication cache model |
rangeFilter | string | "" |
filter parameters that control when radio frames are sent to receiver radios |
radioModeFilter | bool | false |
when enabled the radio medium doesn't send radio frames to a radio if it's neither in receiver nor in transceiver mode |
listeningFilter | bool | false |
when enabled the radio medium doesn't send radio frames 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 radio frames to a radio if it the destination mac address differs |
recordCommunicationLog | bool | false |
logging parameters |
Properties
Name | Value | Description |
---|---|---|
class | RadioMedium | |
display | i=misc/sun_s |
Signals
Name | Type | Unit |
---|---|---|
transmissionAdded | ||
radioRemoved | ||
transmissionStarted | ||
receptionEnded | ||
receptionStarted | ||
radioAdded | ||
transmissionRemoved | ||
transmissionEnded |
Unassigned submodule parameters
Name | Type | Default value | Description |
---|---|---|---|
neighborCache.refillPeriod | double |
Source code
module Ieee802154NarrowbandScalarRadioMedium extends RadioMedium { parameters: propagationType = default("ConstantSpeedPropagation"); analogModelType = default("ScalarAnalogModel"); backgroundNoiseType = default("IsotropicScalarBackgroundNoise"); // 802.15.4-2006, page 266 pathLossType = default("BreakpointPathLoss"); pathLoss.breakpointDistance = 8 m; pathLoss.l01 = 40.2; pathLoss.alpha1 = 2; pathLoss.l02 = 58.5; pathLoss.alpha2 = 3.3; // Reflects the thermal noise for the receiver sensitivity // TODO couple with sensitivity backgroundNoise.power = default(-96.616dBm); backgroundNoise.dimensions = default("time"); }File: src/inet/physicallayer/ieee802154/packetlevel/Ieee802154NarrowbandScalarRadioMedium.ned