Package: inet.physicallayer.wireless.ieee80211.bitlevel
Ieee80211OfdmModulator
simple moduleThis is an IEEE 802.11 OFDM modulator module, the implementation is based on 18.3.5.8 Subcarrier modulation mapping section in IEEE 802.11-2012 Std.
It has only one parameter: the subcarrier modulation, in compliant mode, is one of the following constellation mappings (Table 18-7.):
- BPSK
- QPSK
- 16-QAM
- 64-QAM
However, it can be used with an arbitrary OFDM compatible constellation mapping.
Inheritance diagram
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Parameters
Name | Type | Default value | Description |
---|---|---|---|
numSubcarriers | int | 52 | |
subcarrierModulation | string | ||
pilotSubcarrierPolarityVectorOffset | int |
Properties
Name | Value | Description |
---|---|---|
display | i=block/mac | |
class | Ieee80211OfdmModulatorModule |
Source code
// This is an IEEE 802.11 OFDM modulator module, the // implementation is based on 18.3.5.8 Subcarrier modulation // mapping section in IEEE 802.11-2012 Std. // // It has only one parameter: the subcarrier modulation, // in compliant mode, is one of the following constellation // mappings (Table 18-7.): // - BPSK // - QPSK // - 16-QAM // - 64-QAM // // However, it can be used with an arbitrary OFDM compatible // constellation mapping. // simple Ieee80211OfdmModulator like IModulator { parameters: int numSubcarriers = default(52); string subcarrierModulation; int pilotSubcarrierPolarityVectorOffset; @display("i=block/mac"); @class(Ieee80211OfdmModulatorModule); }File: src/inet/physicallayer/wireless/ieee80211/bitlevel/Ieee80211OfdmModulator.ned