Class AbstractLaneBasedGTU
- All Implemented Interfaces:
java.io.Serializable
,Locatable
,EventProducerInterface
,Identifiable
,Drawable
,GTU
,LaneBasedGTU
public abstract class AbstractLaneBasedGTU extends AbstractGTU implements LaneBasedGTU
The starting point of a LaneBasedTU is that it can be in multiple lanes at the same time. This can be due to a lane change (lateral), or due to crossing a link (front of the GTU is on another Lane than rear of the GTU). If a Lane is shorter than the length of the GTU (e.g. when we do node expansion on a crossing, this is very well possible), a GTU could occupy dozens of Lanes at the same time.
When calculating a headway, the GTU has to look in successive lanes. When Lanes (or underlying CrossSectionLinks) diverge, the headway algorithms have to look at multiple Lanes and return the minimum headway in each of the Lanes. When the Lanes (or underlying CrossSectionLinks) converge, "parallel" traffic is not taken into account in the headway calculation. Instead, gap acceptance algorithms or their equivalent should guide the merging behavior.
To decide its movement, an AbstractLaneBasedGTU applies its car following algorithm and lane change algorithm to set the acceleration and any lane change operation to perform. It then schedules the triggers that will add it to subsequent lanes and remove it from current lanes as needed during the time step that is has committed to. Finally, it re-schedules its next movement evaluation with the simulator.
Copyright (c) 2013-2020 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
- Version:
- $Revision: 1408 $, $LastChangedDate: 2015-09-24 15:17:25 +0200 (Thu, 24 Sep 2015) $, by $Author: pknoppers $,
initial version Oct 22, 2014
- Author:
- Alexander Verbraeck, Peter Knoppers
- See Also:
- Serialized Form
-
Field Summary
Fields Modifier and Type Field Description static int
CACHED_POSITION
cached position count.static boolean
CACHING
Caching on or off.static Length
initialLocationThresholdDifference
The threshold distance for differences between initial locations of the GTU on different lanes.static int
NON_CACHED_POSITION
cached position count.Fields inherited from class org.opentrafficsim.core.gtu.AbstractGTU
ALIGN_COUNT, ALIGNED, operationalPlan
Fields inherited from interface org.djutils.event.EventProducerInterface
FIRST_POSITION, LAST_POSITION
Fields inherited from interface org.opentrafficsim.core.gtu.GTU
DESTROY_EVENT, INIT_EVENT, MOVE_EVENT
Fields inherited from interface org.opentrafficsim.road.gtu.lane.LaneBasedGTU
LANE_CHANGE_EVENT, LANE_ENTER_EVENT, LANE_EXIT_EVENT, LANEBASED_DESTROY_EVENT, LANEBASED_INIT_EVENT, LANEBASED_MOVE_EVENT, LINK_ENTER_EVENT, LINK_EXIT_EVENT
-
Constructor Summary
Constructors Constructor Description AbstractLaneBasedGTU(java.lang.String id, GTUType gtuType, OTSSimulatorInterface simulator, OTSRoadNetwork network)
Construct a Lane Based GTU. -
Method Summary
Modifier and Type Method Description protected void
addGtuToLane(Lane lane, Length position)
Part of 'enterLane' which registers the GTU with the lane so the lane can report its GTUs.void
addTrigger(Lane lane, SimEventInterface<SimTimeDoubleUnit> event)
Add an event to the list of lane triggers scheduled for this GTU.void
changeLaneInstantaneously(LateralDirectionality laneChangeDirection)
Change lanes instantaneously.void
destroy()
void
enterLane(Lane lane, Length position, GTUDirectionality gtuDirection)
insert GTU at a certain position.protected void
finalizeLaneChange(LateralDirectionality laneChangeDirection)
Performs the finalization of a lane change by leaving the from lanes.double
fractionalPosition(Lane lane, RelativePosition relativePosition)
Return the longitudinal position of a point relative to this GTU, relative to the center line of the Lane, as a fraction of the length of the lane.double
fractionalPosition(Lane lane, RelativePosition relativePosition, Time when)
Return the longitudinal position of a point relative to this GTU, relative to the center line of the Lane, as a fraction of the length of the lane.java.util.Map<Lane,java.lang.Double>
fractionalPositions(RelativePosition relativePosition)
Return the longitudinal positions of a point relative to this GTU, relative to the center line of the Lanes in which the vehicle is registered, as fractions of the length of the lane.java.util.Map<Lane,java.lang.Double>
fractionalPositions(RelativePosition relativePosition, Time when)
Return the longitudinal positions of a point relative to this GTU, relative to the center line of the Lanes in which the vehicle is registered, as fractions of the length of the lane.javax.media.j3d.Bounds
getBounds()
Acceleration
getCarFollowingAcceleration()
This method returns the current car-following acceleration of the GTU.Speed
getDesiredSpeed()
This method returns the current desired speed of the GTU.GTUDirectionality
getDirection(Lane lane)
Return the directionality of a lane on which the GTU is registered for its current operational plan.RoadNetwork
getNetwork()
DirectedLanePosition
getReferencePosition()
Return the current Lane, position and directionality of the GTU.LaneBasedStrategicalPlanner
getStrategicalPlanner()
LaneBasedStrategicalPlanner
getStrategicalPlanner(Time time)
TurnIndicatorStatus
getTurnIndicatorStatus()
TurnIndicatorStatus
getTurnIndicatorStatus(Time time)
VehicleModel
getVehicleModel()
Returns the vehicle model.void
init(LaneBasedStrategicalPlanner strategicalPlanner, java.util.Set<DirectedLanePosition> initialLongitudinalPositions, Speed initialSpeed)
void
initLaneChange(LateralDirectionality laneChangeDirection)
Register on lanes in target lane.boolean
isSafeToChange()
Hack method.void
leaveLane(Lane lane)
Unregister the GTU from a lane.void
leaveLane(Lane lane, boolean beingDestroyed)
Leave a lane but do not complain about having no lanes left when beingDestroyed is true.protected boolean
move(DirectedPoint fromLocation)
Length
position(Lane lane, RelativePosition relativePosition)
Return the longitudinal position of a point relative to this GTU, relative to the center line of the Lane at the current simulation time.Length
position(Lane lane, RelativePosition relativePosition, Time when)
Return the longitudinal position of a point relative to this GTU, relative to the center line of the Lane.java.util.Map<Lane,Length>
positions(RelativePosition relativePosition)
Return the longitudinal positions of a point relative to this GTU, relative to the center line of the Lanes in which the vehicle is registered.java.util.Map<Lane,Length>
positions(RelativePosition relativePosition, Time when)
Return the longitudinal positions of a point relative to this GTU, relative to the center line of the Lanes in which the vehicle is registered.Length
projectedPosition(Lane projectionLane, RelativePosition relativePosition, Time when)
Return the longitudinal position on the projection lane that has the same fractional position on one of the current lanes of the indicated relative position.void
reinit(java.util.Set<DirectedLanePosition> initialLongitudinalPositions)
Reinitializes the GTU on the network using the existing strategical planner and zero speed.protected void
scheduleEnterLeaveTriggers()
Schedule the triggers for this GTU that are going to happen until the next evaluation time.void
setFinalizeLaneChangeEvent(SimEventInterface<SimTimeDoubleUnit> event)
Sets event to finalize lane change.void
setParent(GTU gtu)
All lanes the GTU is on will be left.void
setTurnIndicatorStatus(TurnIndicatorStatus turnIndicatorStatus)
Set the status of the turn indicator.void
setVehicleModel(VehicleModel vehicleModel)
Sets a vehicle model.java.lang.String
toString()
Length
translatedPosition(Lane projectionLane, RelativePosition relativePosition, Time when)
Return the longitudinal position that the indicated relative position of this GTU would have if it were to change to another Lane with a / the current CrossSectionLink.Methods inherited from class org.opentrafficsim.core.gtu.AbstractGTU
addGtu, equals, getAcceleration, getAcceleration, getChildren, getErrorHandler, getGTUType, getId, getLocation, getMaximumAcceleration, getMaximumDeceleration, getNextMoveEvent, getOdometer, getOdometer, getOperationalPlan, getOperationalPlan, getParameters, getParent, getPerceivableContext, getReference, getSimulator, getSourceId, getSpeed, getSpeed, hashCode, init, interruptMove, isDestroyed, removeGtu, setErrorHandler, setMaximumAcceleration, setMaximumDeceleration, setParameters
Methods inherited from class org.djutils.event.EventProducer
addListener, addListener, addListener, addListener, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireEvent, fireTimedEvent, fireTimedEvent, fireTimedEvent, fireTimedEvent, fireTimedEvent, fireTimedEvent, fireTimedEvent, getEventTypesWithListeners, hasListeners, numberOfListeners, removeAllListeners, removeAllListeners, removeListener
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface org.djutils.event.EventProducerInterface
addListener, addListener, addListener, addListener, getEventTypesWithListeners, getSourceId, hasListeners, numberOfListeners, removeListener
Methods inherited from interface org.opentrafficsim.core.gtu.GTU
addGtu, getAcceleration, getAcceleration, getCenter, getChildren, getContourPoints, getFront, getGTUType, getId, getLength, getMaximumAcceleration, getMaximumDeceleration, getMaximumSpeed, getOdometer, getOdometer, getOperationalPlan, getOperationalPlan, getParameters, getParent, getPerceivableContext, getRear, getReference, getRelativePositions, getSimulator, getSpeed, getSpeed, getWidth, isDestroyed, removeGtu, setErrorHandler, setParameters
Methods inherited from interface org.opentrafficsim.road.gtu.lane.LaneBasedGTU
getLateralPosition, getLocation, getProjectedLength, getTacticalPlanner, getTacticalPlanner, isBrakingLightsOn, isBrakingLightsOn, isInstantaneousLaneChange, laneChangeAllowed, setInstantaneousLaneChange, setNoLaneChangeDistance
-
Field Details
-
initialLocationThresholdDifference
The threshold distance for differences between initial locations of the GTU on different lanes. -
CACHING
public static boolean CACHINGCaching on or off. -
CACHED_POSITION
public static int CACHED_POSITIONcached position count. -
NON_CACHED_POSITION
public static int NON_CACHED_POSITIONcached position count.
-
-
Constructor Details
-
AbstractLaneBasedGTU
public AbstractLaneBasedGTU(java.lang.String id, GTUType gtuType, OTSSimulatorInterface simulator, OTSRoadNetwork network) throws GTUExceptionConstruct a Lane Based GTU.- Parameters:
id
- String; the id of the GTUgtuType
- GTUType; the type of GTU, e.g. TruckType, CarType, BusTypesimulator
- OTSSimulatorInterface; to initialize the move method and to get the current timenetwork
- OTSRoadNetwork; the network that the GTU is initially registered in- Throws:
GTUException
- when initial values are not correct
-
-
Method Details
-
init
public void init(LaneBasedStrategicalPlanner strategicalPlanner, java.util.Set<DirectedLanePosition> initialLongitudinalPositions, Speed initialSpeed) throws NetworkException, SimRuntimeException, GTUException, OTSGeometryException- Parameters:
strategicalPlanner
- LaneBasedStrategicalPlanner; the strategical planner (e.g., route determination) to useinitialLongitudinalPositions
- Set<DirectedLanePosition>; the initial positions of the car on one or more lanes with their directionsinitialSpeed
- Speed; the initial speed of the car on the lane- Throws:
NetworkException
- when the GTU cannot be placed on the given laneSimRuntimeException
- when the move method cannot be scheduledGTUException
- when initial values are not correctOTSGeometryException
- when the initial path is wrong
-
setParent
All lanes the GTU is on will be left.- Specified by:
setParent
in interfaceGTU
- Overrides:
setParent
in classAbstractGTU
- Throws:
GTUException
-
reinit
public void reinit(java.util.Set<DirectedLanePosition> initialLongitudinalPositions) throws NetworkException, SimRuntimeException, GTUException, OTSGeometryExceptionReinitializes the GTU on the network using the existing strategical planner and zero speed.- Parameters:
initialLongitudinalPositions
- Set<DirectedLanePosition>; initial position- Throws:
NetworkException
- when the GTU cannot be placed on the given laneSimRuntimeException
- when the move method cannot be scheduledGTUException
- when initial values are not correctOTSGeometryException
- when the initial path is wrong
-
isSafeToChange
Hack method. TODO remove and solve better- Returns:
- safe to change
- Throws:
GTUException
- on error
-
enterLane
public void enterLane(Lane lane, Length position, GTUDirectionality gtuDirection) throws GTUExceptioninsert GTU at a certain position. This can happen at setup (first initialization), and after a lane change of the GTU. The relative position that will be registered is the referencePosition (dx, dy, dz) = (0, 0, 0). Front and rear positions are relative towards this position.- Parameters:
lane
- Lane; the lane to add to the list of lanes on which the GTU is registered.gtuDirection
- GTUDirectionality; the direction of the GTU on the lane (which can be bidirectional). If the GTU has a positive speed, it is moving in this direction.position
- Length; the position on the lane.- Throws:
GTUException
- when positioning the GTU on the lane causes a problem
-
addGtuToLane
Part of 'enterLane' which registers the GTU with the lane so the lane can report its GTUs.- Parameters:
lane
- Lane; laneposition
- Length; position- Throws:
GTUException
- on exception
-
leaveLane
Unregister the GTU from a lane.- Parameters:
lane
- Lane; the lane to remove from the list of lanes on which the GTU is registered.- Throws:
GTUException
- when leaveLane should not be called
-
leaveLane
Leave a lane but do not complain about having no lanes left when beingDestroyed is true.- Parameters:
lane
- Lane; the lane to leavebeingDestroyed
- boolean; if true, no complaints about having no lanes left- Throws:
GTUException
- in case leaveLane should not be called
-
changeLaneInstantaneously
public void changeLaneInstantaneously(LateralDirectionality laneChangeDirection) throws GTUExceptionChange lanes instantaneously.- Specified by:
changeLaneInstantaneously
in interfaceLaneBasedGTU
- Parameters:
laneChangeDirection
- LateralDirectionality; the direction to change to- Throws:
GTUException
- in case lane change fails
-
initLaneChange
Register on lanes in target lane.- Specified by:
initLaneChange
in interfaceLaneBasedGTU
- Parameters:
laneChangeDirection
- LateralDirectionality; direction of lane change- Throws:
GTUException
- exception
-
finalizeLaneChange
Performs the finalization of a lane change by leaving the from lanes.- Parameters:
laneChangeDirection
- LateralDirectionality; direction of lane change
-
setFinalizeLaneChangeEvent
Sets event to finalize lane change.- Specified by:
setFinalizeLaneChangeEvent
in interfaceLaneBasedGTU
- Parameters:
event
- SimEventInterface<SimTimeDoubleUnit>; event
-
getDirection
Return the directionality of a lane on which the GTU is registered for its current operational plan.- Specified by:
getDirection
in interfaceLaneBasedGTU
- Parameters:
lane
- Lane; the lane for which we want to know the direction- Returns:
- GTUDirectionality; the direction on the given lane
- Throws:
GTUException
- in case the GTU is not registered on the Lane
-
move
protected boolean move(DirectedPoint fromLocation) throws SimRuntimeException, GTUException, OperationalPlanException, NetworkException, ParameterException- Overrides:
move
in classAbstractGTU
- Throws:
SimRuntimeException
GTUException
OperationalPlanException
NetworkException
ParameterException
-
positions
public final java.util.Map<Lane,Length> positions(RelativePosition relativePosition) throws GTUExceptionReturn the longitudinal positions of a point relative to this GTU, relative to the center line of the Lanes in which the vehicle is registered.
Note: If a GTU is registered in multiple parallel lanes, the lateralLaneChangeModel is used to determine the center line of the vehicle at this point in time. Otherwise, the average of the center positions of the lines will be taken.- Specified by:
positions
in interfaceLaneBasedGTU
- Parameters:
relativePosition
- RelativePosition; the position on the vehicle relative to the reference point.- Returns:
- the lanes and the position on the lanes where the GTU is currently registered, for the given position of the GTU.
- Throws:
GTUException
- when the vehicle is not on one of the lanes on which it is registered.
-
positions
public final java.util.Map<Lane,Length> positions(RelativePosition relativePosition, Time when) throws GTUExceptionReturn the longitudinal positions of a point relative to this GTU, relative to the center line of the Lanes in which the vehicle is registered.- Specified by:
positions
in interfaceLaneBasedGTU
- Parameters:
relativePosition
- RelativePosition; the position on the vehicle relative to the reference point.when
- Time; the future time for which to calculate the positions.- Returns:
- the lanes and the position on the lanes where the GTU will be registered at the time, for the given position of the GTU.
- Throws:
GTUException
- when the vehicle is not on one of the lanes on which it is registered.
-
position
Return the longitudinal position of a point relative to this GTU, relative to the center line of the Lane at the current simulation time.- Specified by:
position
in interfaceLaneBasedGTU
- Parameters:
lane
- Lane; the position on this lane will be returned.relativePosition
- RelativePosition; the position on the vehicle relative to the reference point.- Returns:
- DoubleScalarAbs<LengthUnit>; the position, relative to the center line of the Lane.
- Throws:
GTUException
- when the vehicle is not on the given lane.
-
translatedPosition
public Length translatedPosition(Lane projectionLane, RelativePosition relativePosition, Time when) throws GTUExceptionReturn the longitudinal position that the indicated relative position of this GTU would have if it were to change to another Lane with a / the current CrossSectionLink. This point may be before the begin or after the end of the link of the projection lane of the GTU. This preserves the length of the GTU.- Parameters:
projectionLane
- Lane; the lane onto which the position of this GTU must be projectedrelativePosition
- RelativePosition; the point on this GTU that must be projectedwhen
- Time; the time for which to project the position of this GTU- Returns:
- Length; the position of this GTU in the projectionLane
- Throws:
GTUException
- when projectionLane it not in any of the CrossSectionLink that the GTU is on
-
projectedPosition
public Length projectedPosition(Lane projectionLane, RelativePosition relativePosition, Time when) throws GTUExceptionReturn the longitudinal position on the projection lane that has the same fractional position on one of the current lanes of the indicated relative position. This preserves the fractional positions of all relative positions of the GTU.- Parameters:
projectionLane
- Lane; the lane onto which the position of this GTU must be projectedrelativePosition
- RelativePosition; the point on this GTU that must be projectedwhen
- Time; the time for which to project the position of this GTU- Returns:
- Length; the position of this GTU in the projectionLane
- Throws:
GTUException
- when projectionLane it not in any of the CrossSectionLink that the GTU is on
-
position
public Length position(Lane lane, RelativePosition relativePosition, Time when) throws GTUExceptionReturn the longitudinal position of a point relative to this GTU, relative to the center line of the Lane.- Specified by:
position
in interfaceLaneBasedGTU
- Parameters:
lane
- Lane; the position on this lane will be returned.relativePosition
- RelativePosition; the position on the vehicle relative to the reference point.when
- Time; the future time for which to calculate the positions.- Returns:
- DoubleScalarAbs<LengthUnit>; the position, relative to the center line of the Lane.
- Throws:
GTUException
- when the vehicle is not on the given lane.
-
getReferencePosition
Return the current Lane, position and directionality of the GTU.- Specified by:
getReferencePosition
in interfaceLaneBasedGTU
- Returns:
- DirectedLanePosition; the current Lane, position and directionality of the GTU
- Throws:
GTUException
- in case the reference position of the GTU cannot be found on the lanes in its current path
-
scheduleEnterLeaveTriggers
protected void scheduleEnterLeaveTriggers() throws NetworkException, SimRuntimeException, GTUExceptionSchedule the triggers for this GTU that are going to happen until the next evaluation time. Also schedule the registration and deregistration of lanes when the vehicle enters or leaves them, at the exact right time.
Note: when the GTU makes a lane change, the vehicle will be registered for both lanes during the entire maneuver.- Throws:
NetworkException
- on network inconsistencySimRuntimeException
- should never happenGTUException
- when a branch is reached where the GTU does not know where to go next
-
fractionalPositions
public final java.util.Map<Lane,java.lang.Double> fractionalPositions(RelativePosition relativePosition) throws GTUExceptionReturn the longitudinal positions of a point relative to this GTU, relative to the center line of the Lanes in which the vehicle is registered, as fractions of the length of the lane. This is important when we want to see if two vehicles are next to each other and we compare an 'inner' and 'outer' curve.- Specified by:
fractionalPositions
in interfaceLaneBasedGTU
- Parameters:
relativePosition
- RelativePosition; the position on the vehicle relative to the reference point.- Returns:
- the lanes and the position on the lanes where the GTU is currently registered, for the given position of the GTU.
- Throws:
GTUException
- when the vehicle is not on one of the lanes on which it is registered.
-
fractionalPositions
public final java.util.Map<Lane,java.lang.Double> fractionalPositions(RelativePosition relativePosition, Time when) throws GTUExceptionReturn the longitudinal positions of a point relative to this GTU, relative to the center line of the Lanes in which the vehicle is registered, as fractions of the length of the lane. This is important when we want to see if two vehicles are next to each other and we compare an 'inner' and 'outer' curve.- Specified by:
fractionalPositions
in interfaceLaneBasedGTU
- Parameters:
relativePosition
- RelativePosition; the position on the vehicle relative to the reference point.when
- Time; the future time for which to calculate the positions.- Returns:
- the lanes and the position on the lanes where the GTU will be registered at the time, for the given position of the GTU.
- Throws:
GTUException
- when the vehicle is not on one of the lanes on which it is registered.
-
fractionalPosition
public final double fractionalPosition(Lane lane, RelativePosition relativePosition, Time when) throws GTUExceptionReturn the longitudinal position of a point relative to this GTU, relative to the center line of the Lane, as a fraction of the length of the lane. This is important when we want to see if two vehicles are next to each other and we compare an 'inner' and 'outer' curve.- Specified by:
fractionalPosition
in interfaceLaneBasedGTU
- Parameters:
lane
- Lane; the position on this lane will be returned.relativePosition
- RelativePosition; the position on the vehicle relative to the reference point.when
- Time; the future time for which to calculate the positions.- Returns:
- the fractional relative position on the lane at the given time.
- Throws:
GTUException
- when the vehicle is not on the given lane.
-
fractionalPosition
public final double fractionalPosition(Lane lane, RelativePosition relativePosition) throws GTUExceptionReturn the longitudinal position of a point relative to this GTU, relative to the center line of the Lane, as a fraction of the length of the lane. This is important when we want to see if two vehicles are next to each other and we compare an 'inner' and 'outer' curve.- Specified by:
fractionalPosition
in interfaceLaneBasedGTU
- Parameters:
lane
- Lane; the position on this lane will be returned.relativePosition
- RelativePosition; the position on the vehicle relative to the reference point.- Returns:
- the fractional relative position on the lane at the given time.
- Throws:
GTUException
- when the vehicle is not on the given lane.
-
addTrigger
Add an event to the list of lane triggers scheduled for this GTU.- Specified by:
addTrigger
in interfaceLaneBasedGTU
- Parameters:
lane
- Lane; the lane on which the event occursevent
- SimEventInterface<SimTimeDoubleUnit>; SimeEvent<SimTimeDoubleUnit> the event
-
setVehicleModel
Sets a vehicle model.- Parameters:
vehicleModel
- VehicleModel; vehicle model
-
getVehicleModel
Returns the vehicle model.- Specified by:
getVehicleModel
in interfaceLaneBasedGTU
- Returns:
- VehicleModel; vehicle model
-
destroy
public void destroy()- Specified by:
destroy
in interfaceGTU
- Overrides:
destroy
in classAbstractGTU
-
getBounds
public final javax.media.j3d.Bounds getBounds() -
getStrategicalPlanner
- Specified by:
getStrategicalPlanner
in interfaceGTU
- Specified by:
getStrategicalPlanner
in interfaceLaneBasedGTU
- Overrides:
getStrategicalPlanner
in classAbstractGTU
-
getStrategicalPlanner
- Specified by:
getStrategicalPlanner
in interfaceGTU
- Specified by:
getStrategicalPlanner
in interfaceLaneBasedGTU
- Overrides:
getStrategicalPlanner
in classAbstractGTU
-
getNetwork
- Specified by:
getNetwork
in interfaceLaneBasedGTU
- Returns:
- the road network to which the LaneBasedGTU belongs
-
getDesiredSpeed
This method returns the current desired speed of the GTU. This value is required often, so implementations can cache it.- Specified by:
getDesiredSpeed
in interfaceLaneBasedGTU
- Returns:
- Speed; current desired speed
-
getCarFollowingAcceleration
This method returns the current car-following acceleration of the GTU. This value is required often, so implementations can cache it.- Specified by:
getCarFollowingAcceleration
in interfaceLaneBasedGTU
- Returns:
- Acceleration; current car-following acceleration
-
getTurnIndicatorStatus
- Specified by:
getTurnIndicatorStatus
in interfaceLaneBasedGTU
- Returns:
- the status of the turn indicator
-
getTurnIndicatorStatus
- Specified by:
getTurnIndicatorStatus
in interfaceLaneBasedGTU
- Parameters:
time
- Time; time to obtain the turn indicator status at- Returns:
- the status of the turn indicator at the given time
-
setTurnIndicatorStatus
Set the status of the turn indicator.- Specified by:
setTurnIndicatorStatus
in interfaceLaneBasedGTU
- Parameters:
turnIndicatorStatus
- TurnIndicatorStatus; the new status of the turn indicator.
-
toString
public java.lang.String toString()- Overrides:
toString
in classjava.lang.Object
-