Package: inet.physicallayer.wireless.apsk.packetlevel
ApskTransmitter
compound moduleThis transmitter model produces transmissions that have scalar transmission power in their analog representation and the configured modulation.
<b>See also:</b> ~ApskReceiver, ~ApskRadio, ~ScalarRadioMedium.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Extends
| Name | Type | Description |
|---|---|---|
| NarrowbandTransmitterBase | compound module |
Serves as a base module for narrowband transmitter 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 |
| signalAnalogRepresentation | string | "scalar" |
Determines the analog domain signal representation of transmissions |
| preambleDuration | double |
Preamble duration |
|
| headerLength | int |
Number of header bits added to the length of the MAC frame |
|
| bitrate | double |
The bitrate of the transmitter is used to compute the duration of the transmission |
|
| power | double |
Transmission power |
|
| centerFrequency | double |
Center frequency of the band where the transmitter transmits on the medium |
|
| bandwidth | double |
Bandwidth of the band where the transmitter transmits on the medium |
|
| codeRate | double | 1 | |
| modulation | string | "BPSK" |
"BPSK", "16-QAM", "256-QAM" |
Properties
| Name | Value | Description |
|---|---|---|
| class | ApskTransmitter | |
| display | i=block/wtx |
Source code
// // This transmitter model produces transmissions that have scalar transmission // power in their analog representation and the configured modulation. // // @see ~ApskReceiver, ~ApskRadio, ~ScalarRadioMedium. // module ApskTransmitter extends NarrowbandTransmitterBase { parameters: modulation = default("BPSK"); @class(ApskTransmitter); }File: src/inet/physicallayer/wireless/apsk/packetlevel/ApskTransmitter.ned