Compound Module IsotropicDimensionalBackgroundNoise

Package: inet.physicallayer.backgroundnoise
File: src/inet/physicallayer/backgroundnoise/IsotropicDimensionalBackgroundNoise.ned

This background noise model describes noise that does not change over space, time and frequency. It produces dimensional noise signals that can be further used in dimensional computations.

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
power double

noise power

dimensions string "time"

dimensions of noise power: time and/or frequency

interpolationMode string "sample-hold"

Properties:

Name Value Description
class IsotropicDimensionalBackgroundNoise
display i=block/mac

Source code:

//
// This background noise model describes noise that does not change over space,
// time and frequency. It produces dimensional noise signals that can be further
// used in dimensional computations.
//
module IsotropicDimensionalBackgroundNoise like IRadioBackgroundNoise
{
    parameters:
        double power @unit(dBm); // noise power
        string dimensions = default("time"); // dimensions of noise power: time and/or frequency
        string interpolationMode @enum("linear","sample-hold") = default("sample-hold");
        @class(IsotropicDimensionalBackgroundNoise);
        @display("i=block/mac");
}