Compound Module TracingObstacleLossBase

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

This module servces as a base module for tracing obstacle loss 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
DielectricObstacleLoss compound module

This obstacle loss model determines the power loss by computing the accurate dielectric and reflection loss along the straight path considering the shape, the position, the orientation, and the material of obstructing physical objects.

IdealObstacleLoss compound module

This obstacle loss model determines power loss by checking if there is any obstructing physical object along the straight propagation path. The result is either total power loss if there was such an object or no loss at all if there wasn't.

Parameters:

Name Type Default value Description
physicalEnvironmentModule string "physicalEnvironment"

module path of the physical environment model

Properties:

Name Value Description
display i=block/control

Signals:

Name Type Unit
obstaclePenetrated

Source code:

//
// This module servces as a base module for tracing obstacle loss models.
//
module TracingObstacleLossBase like IObstacleLoss
{
    parameters:
        string physicalEnvironmentModule = default("physicalEnvironment"); // module path of the physical environment model
        @display("i=block/control");
        @signal[obstaclePenetrated];
}