Simple Module ThruputMeter

Package: inet.linklayer.ppp
File: src/linklayer/ppp/ThruputMeter.ned

C++ definition

Thruput measurement utility module.

ThruputMeter

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.

Used in compound modules:

Name Type Description
PPPInterfaceWithDLThruputMeter compound module

PPP interface. Complements the PPP module with an output queue for QoS and RED support.

PPPInterfaceWithULThruputMeter compound module

PPP interface. Complements the PPP module with an output queue for QoS and RED support.

Networks:

Name Type Description
REDTestDebug network (no description)
REDTestTh network (no description)

Parameters:

Name Type Default value Description
startTime double 0s
batchSize int 50
maxInterval double 1s

Properties:

Name Value Description
node
display i=block/timer_vs

Gates:

Name Direction Size Description
in input
out output

Source code:

//
// Thruput measurement utility module.
//
simple ThruputMeter
{
    parameters:
        @node();
        double startTime @unit("s") = default(0s);
        int batchSize = default(50);
        double maxInterval @unit("s") = default(1s);
        @display("i=block/timer_vs");
    gates:
        input in;
        output out;
}