Class IncentiveSocioSpeed
java.lang.Object
org.opentrafficsim.road.gtu.lane.tactical.lmrs.IncentiveSocioSpeed
- All Implemented Interfaces:
Supplier<IncentiveSocioSpeed>,Stateless<IncentiveSocioSpeed>,Incentive,VoluntaryIncentive
public final class IncentiveSocioSpeed
extends Object
implements VoluntaryIncentive, Stateless<IncentiveSocioSpeed>
Lane change incentive based on social pressure. Drivers may refrain from changing left to not hinder faster traffic, or
drivers may change right to get out of the way. When drivers are on the left lane, this is considered 'overtaking', and
related to this the desired speed could be increased by using
SocioDesiredSpeedModel.
Copyright (c) 2013-2024 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
- Author:
- Alexander Verbraeck, Peter Knoppers, Wouter Schakel
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected static final ParameterTypeLengthLook-ahead distance.protected static final ParameterTypeDoubleSocial pressure applied to the leader.static final IncentiveSocioSpeedSingleton instance.protected static final ParameterTypeDoubleHierarchy parameter.protected static final ParameterTypeSpeedSpeed threshold below which traffic is considered congested.protected static final ParameterTypeSpeedVgain parameter; ego-speed sensitivity. -
Method Summary
Modifier and TypeMethodDescriptiondetermineDesire(Parameters parameters, LanePerception perception, CarFollowingModel carFollowingModel, Desire mandatoryDesire, Desire voluntaryDesire) Determines level of lane change desire for a lane change incentive.get()toString()
-
Field Details
-
RHO
Social pressure applied to the leader. -
SOCIO
Hierarchy parameter. -
VCONG
Speed threshold below which traffic is considered congested. -
VGAIN
Vgain parameter; ego-speed sensitivity. -
LOOKAHEAD
Look-ahead distance. -
SINGLETON
Singleton instance.
-
-
Method Details
-
get
- Specified by:
getin interfaceStateless<IncentiveSocioSpeed>- Specified by:
getin interfaceSupplier<IncentiveSocioSpeed>
-
determineDesire
public Desire determineDesire(Parameters parameters, LanePerception perception, CarFollowingModel carFollowingModel, Desire mandatoryDesire, Desire voluntaryDesire) throws ParameterException, OperationalPlanException Description copied from interface:VoluntaryIncentiveDetermines level of lane change desire for a lane change incentive.- Specified by:
determineDesirein interfaceVoluntaryIncentive- Parameters:
parameters- parametersperception- perceptioncarFollowingModel- car-following modelmandatoryDesire- level of mandatory desire at current timevoluntaryDesire- level of voluntary desire at current time, of voluntary incentives calculated before- Returns:
- level of lane change desire for this incentive
- Throws:
ParameterException- if a parameter is not given or out of boundsOperationalPlanException- in case of a perception exception
-
toString
-