NED File src/inet/physicallayer/wireless/apsk/packetlevel/ApskDimensionalReceiver.ned
Name | Type | Description |
---|---|---|
ApskDimensionalReceiver | compound module |
This receiver model receives a transmission succesfully if the minimum of the signal to noise and interference ratio over the duration of the reception is sufficiently high. It uses the error model to compute the error rate based on this value and the used modulation. |
Source code
// // Copyright (C) 2013 OpenSim Ltd. // // SPDX-License-Identifier: LGPL-3.0-or-later // package inet.physicallayer.wireless.apsk.packetlevel; import inet.physicallayer.wireless.common.base.packetlevel.NarrowbandReceiverBase; // // This receiver model receives a transmission succesfully if the minimum of the // signal to noise and interference ratio over the duration of the reception is // sufficiently high. It uses the error model to compute the error rate based on // this value and the used modulation. // // @see ~ApskDimensionalTransmitter, ~ApskDimensionalRadio, // ~ApskDimensionalRadioMedium, ~DimensionalAnalogModel. // module ApskDimensionalReceiver extends NarrowbandReceiverBase { parameters: modulation = default("BPSK"); errorModel.typename = default("ApskErrorModel"); @class(ApskDimensionalReceiver); }