Package: inet.physicallayer.wireless.apsk.packetlevel
ApskRadio
compound moduleThis radio model provides a hypothetical radio that simply uses one of the well-known modulations without utilizing other techniques such as forward error correction, interleaving, spreading, etc.
<b>See also:</b> ~ApskScalarRadio, ~ScalarRadioMedium.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Known subclasses
| Name | Type | Description |
|---|---|---|
| ApskDimensionalRadio | compound module | (no description) |
| ApskLayeredRadio | compound module |
This radio model is part of a simple hypothetical layered radio. It produces detailed transmissions that have separate representations for all simulated domains. |
| ApskScalarRadio | compound module | (no description) |
| ApskUnitDiskRadio | compound module |
Specializes ~ApskRadio to use the simplified signal representation of the unit disk signal propagation model. Suitable for simulations where computational efficiency is more important than detailed physical layer modeling. |
Extends
| Name | Type | Description |
|---|---|---|
| FlatRadioBase | compound module |
Serves as a base module for flat radio models. |
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 |
| 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 |
| signalAnalogRepresentation | string | "scalar" | |
| 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 |
|
| protocol | string | "" |
Properties
| Name | Value | Description |
|---|---|---|
| class | ApskRadio | |
| display | i=block/wrxtx |
Gates
| Name | Direction | Size | Description |
|---|---|---|---|
| upperLayerIn | input | ||
| upperLayerOut | output | ||
| radioIn | input |
Signals
| Name | Type | Unit | Description |
|---|---|---|---|
| packetDropped | inet::Packet |
Statistics
| Name | Title | Source | Record | Unit | Interpolation Mode | Description |
|---|---|---|---|---|---|---|
| packetDropped | packets dropped | count, sum(packetBytes), vector(packetBytes) | none |
Source code
// // This radio model provides a hypothetical radio that simply uses one of the // well-known modulations without utilizing other techniques such as forward // error correction, interleaving, spreading, etc. // // @see ~ApskScalarRadio, ~ScalarRadioMedium. // module ApskRadio extends FlatRadioBase { parameters: string protocol = default(""); transmitter.typename = default("ApskTransmitter"); receiver.typename = default("ApskReceiver"); @class(ApskRadio); @signal[packetDropped](type=inet::Packet); @statistic[packetDropped](title="packets dropped"; record=count,sum(packetBytes),vector(packetBytes); interpolationmode=none); }File: src/inet/physicallayer/wireless/apsk/packetlevel/ApskRadio.ned