Compound Module DimensionalAnalogModel

Package: inet.physicallayer.analogmodel.packetlevel
File: src/inet/physicallayer/analogmodel/packetlevel/DimensionalAnalogModel.ned

This analog model computes with dimensional analog power representation. In other words the signal power may change over time and/or frequency.

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Parameters:

Name Type Default value Description
attenuateWithCarrierFrequency bool true

true means frequency selectivity will always use the carrier frequencey as opposed to using the frequency where the change in power occurs

interpolationMode string "sample-hold"

Properties:

Name Value Description
display i=block/tunnel
class DimensionalAnalogModel

Source code:

//
// This analog model computes with dimensional analog power representation. In
// other words the signal power may change over time and/or frequency.
//
module DimensionalAnalogModel like IAnalogModel
{
    parameters:
        bool attenuateWithCarrierFrequency = default(true); // true means frequency selectivity will always use the carrier frequencey as opposed to using the frequency where the change in power occurs
        string interpolationMode @enum("linear","sample-hold") = default("sample-hold");
        @display("i=block/tunnel");
        @class(DimensionalAnalogModel);
}