Simple Module ThruputMeter

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

C++ definition: click here

Thruput measurement utility module.

ThruputMeter

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Networks:

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;
}