NED File src/inet/physicallayer/wireless/apsk/packetlevel/ApskDimensionalRadio.ned
Name | Type | Description |
---|---|---|
ApskDimensionalRadio | compound module |
This radio model provides a hypothetical radio that simply uses one of the well-known modulations without utilizing other techiques such as forward error correction, interleaving, spreading, etc. It must be used in conjunction with the ApskDimensionalRadioMedium model. |
Source code
// // Copyright (C) 2013 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // package inet.physicallayer.wireless.apsk.packetlevel; // // This radio model provides a hypothetical radio that simply uses one of the // well-known modulations without utilizing other techiques such as forward // error correction, interleaving, spreading, etc. It must be used in // conjunction with the ~ApskDimensionalRadioMedium model. // // @see ~ApskDimensionalRadioMedium, ~DimensionalAnalogModel, // ~ApskDimensionalTransmitter, ~ApskDimensionalReceiver. // module ApskDimensionalRadio extends ApskRadio { parameters: transmitter.typename = default("ApskDimensionalTransmitter"); receiver.typename = default("ApskDimensionalReceiver"); }