Compound Module GlobalVastModules

File: Overlay/Vast/ConnectivityProbe.ned

(no description)

coordinator: GlobalCoordinator probe: ConnectivityProbe

Usage diagram:

The following diagram shows usage relationships between modules, networks and channels. Unresolved module (and channel) types are missing from the diagram. Click here to see the full picture.

Contains the following modules:

If a module type shows up more than once, that means it has been defined in more than one NED file.

ConnectivityProbe (no description)
GlobalCoordinator (no description)

Parameters:

Name Type Description
connectivityProbeIntervall numeric

interval after which to check connectivity

visualizeNetworkIntervall numeric
areaDimension numeric

movement range from [0.0, 0.0] to [areaDimension, areaDimension]

seed numeric

seed for scenery generation

Unassigned submodule parameters:

Name Type Description

Source code:

module GlobalVastModules
    parameters:
        connectivityProbeIntervall: numeric,    // interval after which to check connectivity
        visualizeNetworkIntervall: numeric,
        areaDimension: numeric,     // movement range from [0.0, 0.0] to [areaDimension, areaDimension]
        seed: numeric;      // seed for scenery generation

    submodules:
        coordinator: GlobalCoordinator;
            parameters:
                seed=seed;      // seed for scenery generation
            display:
                "i=block/app";
        probe: ConnectivityProbe;
            parameters:
                connectivityProbeIntervall=connectivityProbeIntervall,
                visualizeNetworkIntervall=visualizeNetworkIntervall,
                areaDimension=areaDimension;
            display:
                "i=block/network2";
endmodule