Interface Task
- All Superinterfaces:
org.djutils.base.Identifiable
- All Known Implementing Classes:
AbstractTask
,ConstantTask
,ExponentialTask
,TaskCarFollowing
,TaskHeadwayBased
,TaskLaneChanging
,TaskRoadSideDistraction
public interface Task
extends org.djutils.base.Identifiable
Interface for tasks, where each describes a fundamental relation between exogenous inputs causing a mental task demand. The
concept of anticipation reliance can be included, which is a reduction of mental task demand by prioritizing a primary task
and relying more on anticipation regarding secondary tasks. Control over the amount of anticipation reliance is
implementation dependent, but is typically not part of the task itself.
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
-
Method Summary
Modifier and TypeMethodDescriptiondouble
calculateTaskDemand
(LanePerception perception, LaneBasedGtu gtu, org.opentrafficsim.base.parameters.Parameters parameters) Returns the gross task demand to be managed by a task manager.double
Returns the level of anticipation reliance.double
Returns the gross demand of this task, i.e without considering anticipation reliance.void
setAnticipationReliance
(double anticipationReliance) Set anticipation reliance.void
setTaskDemand
(double taskDemand) Sets (gross) task demand.Methods inherited from interface org.djutils.base.Identifiable
getId
-
Method Details
-
calculateTaskDemand
double calculateTaskDemand(LanePerception perception, LaneBasedGtu gtu, org.opentrafficsim.base.parameters.Parameters parameters) throws org.opentrafficsim.base.parameters.ParameterException, GtuException Returns the gross task demand to be managed by a task manager.- Parameters:
perception
- LanePerception; perceptiongtu
- LaneBasedGtu; gtuparameters
- Parameters; parameters- Returns:
- double; gross task demand
- Throws:
org.opentrafficsim.base.parameters.ParameterException
- if a parameter is missing or out of boundsGtuException
- exceptions pertaining to the GTU
-
setTaskDemand
void setTaskDemand(double taskDemand) Sets (gross) task demand.- Parameters:
taskDemand
- double; set task demand
-
getTaskDemand
double getTaskDemand()Returns the gross demand of this task, i.e without considering anticipation reliance.- Returns:
- double; gross demand of this task, i.e. without considering anticipation reliance
-
setAnticipationReliance
void setAnticipationReliance(double anticipationReliance) Set anticipation reliance.- Parameters:
anticipationReliance
- double; set anticipation reliance
-
getAnticipationReliance
double getAnticipationReliance()Returns the level of anticipation reliance.- Returns:
- double; anticipation reliance
-