1 package org.opentrafficsim.core.gtu; 2 3 import java.io.Serializable; 4 5 import org.djunits.value.vdouble.scalar.Frequency; 6 7 /** 8 * Driving characteristics of the driver of a GTU. Sets the parameters for models that the TacticalPlanner (and other planners) 9 * and perception can use. An example is: how often does a driver observe the environment? How far does a driver look forward or 10 * backward for other GTUs? Etc. 11 * <p> 12 * Copyright (c) 2013-2015 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved. <br> 13 * BSD-style license. See <a href="http://opentrafficsim.org/docs/license.html">OpenTrafficSim License</a>. 14 * </p> 15 * $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $, 16 * initial version Nov 28, 2015 <br> 17 * @author <a href="http://www.tbm.tudelft.nl/averbraeck">Alexander Verbraeck</a> 18 * @author <a href="http://www.tudelft.nl/pknoppers">Peter Knoppers</a> 19 */ 20 public interface DrivingCharacteristics extends Serializable 21 { 22 /** @return the average update frequency of the driver to update the Perception state. */ 23 Frequency getAveragePerceptionUpdateFrequency(); 24 }