IsotropicDimensionalBackgroundNoise

Package: inet.physicallayer.backgroundnoise

IsotropicDimensionalBackgroundNoise

compound module

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.

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");
}
File: src/inet/physicallayer/backgroundnoise/IsotropicDimensionalBackgroundNoise.ned