Compound Module PlainMobilityHost

File: Examples/MobileAdhoc/Mobility/PlainMobilityHost.ned

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

notificationBoard: NotificationBoard 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

This is not an actual mobility model, but a prototype for other mobility models.

NotificationBoard

Using NotificationBoard, modules can now notify each other about "events" such as routing table changes, interface status changes (up/down), interface configuration changes, wireless handovers, changes in the state of the wireless channel, mobile node position changes, etc.

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

Source code:

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