Compound Module PropagationBase

Package: inet.physicallayer.base.packetlevel
File: src/inet/physicallayer/base/packetlevel/PropagationBase.ned

This module servces as a base module for propagation models.

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.

Known subclasses:

Name Type Description
ConstantSpeedPropagation compound module

This propagation model computes the propagation time to be proportional to the traveled distance, the ratio is determined by the constant propagation speed parameter.

ConstantTimePropagation compound module

This propagation model computes the propagation time to be independent of the traveled distance. In other words, the propagation time is determined by a constant parameter.

Parameters:

Name Type Default value Description
propagationSpeed double 299792458mps

the theoretical propagation speed of signals on the medium (used by path loss models)

Properties:

Name Value Description
display i=block/timer

Source code:

//
// This module servces as a base module for propagation models.
//
module PropagationBase like IPropagation
{
    parameters:
        double propagationSpeed @unit(mps) = default(299792458mps); // the theoretical propagation speed of signals on the medium (used by path loss models)
        @display("i=block/timer");
}