Package: inet.physicallayer.wireless.common.base.packetlevel
NarrowbandRadioBase
compound moduleThis module servces as a base module for narrowband radio models.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Known subclasses
Name | Type | Description |
---|---|---|
FlatRadioBase | compound module |
This module servces as a base module for flat radio models. |
Extends
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. |
Parameters
Name | Type | Default value | Description |
---|---|---|---|
radioMediumModule | string | "radioMedium" |
module path of the medium module where this radio communicates |
energySourceModule | string | "" |
module path of the energy source module which provides energy to the radio |
initialRadioMode | string | "off" | |
switchingTimes | string | "ms 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0" |
time parameters to switch between radio modes |
sendRawBytes | bool | false |
when true packets are serialized into a sequence of bytes before sending out |
separateTransmissionParts | bool | false |
when enabled the transmission of preamble, header and data part are simulated separately |
separateReceptionParts | bool | false |
when enabled the reception of preamble, header and data part are simulated separately |
displayCommunicationRange | bool | false |
if true communication range is displayed as a blue circle around the node |
displayInterferenceRange | bool | false |
if true interference range is displayed as a gray circle around the node |
centerFrequency | double |
center frequency of the band where the radio transmits and receives signals on the medium |
|
bandwidth | double |
bandwidth of the band where the radio transmits and receives signals on the medium |
Properties
Name | Value | Description |
---|---|---|
display | i=block/wrxtx | |
class | Radio |
Gates
Name | Direction | Size | Description |
---|---|---|---|
upperLayerIn | input | ||
upperLayerOut | output | ||
radioIn | input |
Signals
Name | Type | Unit |
---|---|---|
receptionStateChanged | long | |
radioModeChanged | long | |
transmissionStarted | ||
receptionEnded | ||
transmittedSignalPartChanged | long | |
receptionStarted | ||
packetReceivedFromUpper | cPacket | |
receivedSignalPartChanged | long | |
packetSentToUpper | cPacket | |
transmissionStateChanged | long | |
listeningChanged | ||
transmissionEnded |
Statistics
Name | Title | Source | Record | Unit | Interpolation Mode |
---|---|---|---|---|---|
receptionState | Radio reception state | receptionStateChanged | count, vector | sample-hold | |
bitErrorRate | Bit error rate | bitErrorRate(packetSentToUpper) | histogram | ||
radioMode | Radio mode | radioModeChanged | count, vector | sample-hold | |
packetErrorRate | Packet error rate | packetErrorRate(packetSentToUpper) | histogram | ||
symbolErrorRate | Symbol error rate | symbolErrorRate(packetSentToUpper) | histogram | ||
transmissionState | Radio transmission state | transmissionStateChanged | count, vector | sample-hold | |
minSnir | Min SNIR | minimumSnir(packetSentToUpper) | histogram |
Source code
// // This module servces as a base module for narrowband radio models. // module NarrowbandRadioBase extends Radio { parameters: double centerFrequency @unit(Hz); // center frequency of the band where the radio transmits and receives signals on the medium double bandwidth @unit(Hz); // bandwidth of the band where the radio transmits and receives signals on the medium *.centerFrequency = default(this.centerFrequency); // passed down to transmitter and receiver by default *.bandwidth = default(this.bandwidth); // passed down to transmitter and receiver by default }File: src/inet/physicallayer/wireless/common/base/packetlevel/NarrowbandRadioBase.ned