TrafficLightMobility

Package: simu5g.mobility.trafficLightMobility

TrafficLightMobility

simple module

This module extends INET's Linear Mobility model to simulate the movement of a vehicle navigating roads with intersections regulated by traffic lights. The node implementing this mobility model moves at a constant speed and, if it encounters a TrafficLight module with a "red" color, it stops until the traffic light turns "green". Upon resuming its movement, the node may change its direction if the "enableTurns" parameter is enabled. This module requires the presence of TrafficLight modules in the same network scenario.

Inheritance diagram

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Extends

Name Type Description
LinearMobility simple module

This is a linear mobility model with speed, angle and acceleration parameters. Angle only changes when the mobile node hits a wall: then it reflects off the wall at the same angle.

Parameters

Name Type Default value Description
subjectModule string "^"

module path which determines the subject module, the motion of which this mobility model describes, the default value is the parent module

coordinateSystemModule string ""

module path of the geographic coordinate system module

displayStringTextFormat string "p: %p\nv: %v"

format string for the mobility module's display string text

updateDisplayString bool true

enables continuous update of the subject module's position via modifying its display string

constraintAreaMinX double -inf m

min x position of the constraint area, unconstrained by default (negative infinity)

constraintAreaMinY double -inf m

min y position of the constraint area, unconstrained by default (negative infinity)

constraintAreaMinZ double -inf m

min z position of the constraint area, unconstrained by default (negative infinity)

constraintAreaMaxX double inf m

max x position of the constraint area, unconstrained by default (positive infinity)

constraintAreaMaxY double inf m

max y position of the constraint area, unconstrained by default (positive infinity)

constraintAreaMaxZ double inf m

max z position of the constraint area, unconstrained by default (positive infinity)

updateInterval double 0.1s

the simulation time interval used to regularly signal mobility state changes and update the display

faceForward bool true
initialX double uniform(this.constraintAreaMinX, this.constraintAreaMaxX)
initialY double uniform(this.constraintAreaMinY, this.constraintAreaMaxY)
initialZ double nanToZero(uniform(this.constraintAreaMinZ, this.constraintAreaMaxZ))
initFromDisplayString bool true

enables one time initialization from the subject module's display string

speed double 0mps

speed of the host

initialMovementHeading double uniform(0deg, 360deg)
initialMovementElevation double 0deg
initialRoadIndex int 0
trafficLightsList object []
enableTurns bool false

Properties

Name Value Description
display i=block/cogwheel
class TrafficLightMobility

Signals

Name Type Unit Description
mobilityStateChanged inet::MobilityBase

it's work in inet, but not work in extended module in other namespace

Source code

//
// This module extends INET's Linear Mobility model to simulate the movement of
// a vehicle navigating roads with intersections regulated by traffic lights.
// The node implementing this mobility model moves at a constant speed and, if it
// encounters a ~TrafficLight module with a "red" color, it stops until the
// traffic light turns "green". Upon resuming its movement, the node may
// change its direction if the "enableTurns" parameter is enabled. This module
// requires the presence of ~TrafficLight modules in the same network scenario.
//
simple TrafficLightMobility extends LinearMobility
{
    parameters:
        @class(TrafficLightMobility);

        int initialRoadIndex = default(0);
        object trafficLightsList = default([]);
        bool enableTurns = default(false);
}
File: src/mobility/trafficLightMobility/TrafficLightMobility.ned