Compound Module PlainMobilityHost

File: networks/mobileNet/PlainMobilityHost.ned

A host for demonstrating mobility models only -- it contains no protocol layers at all.

blackboard: Blackboard mobility: mobilityType like BasicMobility

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.

BasicMobility

Basic module for all mobility modules.

Blackboard

The Blackboard works as entity to enable inter layer / process communication.

Used in compound modules:

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

MobileNet (no description)

Parameters:

Name Type Description
mobilityType string

Unassigned submodule parameters:

Name Type Description
blackboard.coreDebug numeric const

debug switch for core framework

mobility.coreDebug numeric const

debug switch for the core framework

mobility.x numeric const

x coordinate of the nodes' position (-1 = random)

mobility.y numeric const

y coordinate of the nodes' position (-1 = random)

Source code:

module PlainMobilityHost
    parameters:
        mobilityType: string;
    submodules:
        blackboard: Blackboard;
            display: "p=70,67;i=block/control";
        mobility: mobilityType like BasicMobility;
            display: "p=132,141;i=block/cogwheel";
    connections nocheck:
endmodule