Class HeadwayGTURealCopy

  • All Implemented Interfaces:
    Serializable, Comparable<Headway>, org.opentrafficsim.base.Identifiable, PerceivedObject, Headway, HeadwayGTU
    Direct Known Subclasses:
    HeadwayGTUPerceived

    public class HeadwayGTURealCopy
    extends AbstractHeadwayGTU
    Container for a reference to information about a (lane based) GTU and a headway. The Headway can store information about GTUs or objects ahead of the reference GTU, behind the reference GTU, or (partially) parallel to the reference GTU. In addition to the (perceived) headway, several other pieces of information can be stored, such as (perceived) speed, (perceived) acceleration, (perceived) turn indicators, and (perceived) braking lights.
    This particular version returns behavioral information about the observed GTU objects based on their real state.
    Special care must be taken in curves when perceiving headway of a GTU or object on an adjacent lane.The question is whether we perceive the parallel or ahead/behind based on a line perpendicular to the front/back of the GTU (rectangular), or perpendicular to the center line of the lane (wedge-shaped in case of a curve). The difficulty of a wedge-shaped situation is that reciprocity might be violated: in case of a clothoid, for instance, it is not sure that the point on the center line when projected from lane 1 to lane 2 is the same as the projection from lane 2 to lane 1. The same holds for shapes with sharp bends. Therefore, algorithms implementing headway should only project the reference point of the reference GTU on the center line of the adjacent lane, and then calculate the forward position and backward position on the adjacent lane based on the reference point. Still, our human perception of what is parallel and what not, is not reflected by fractional positions. See examples in http://simulation.tudelft.nl:8085/browse/OTS-113.

    Copyright (c) 2013-2022 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
    BSD-style license. See OpenTrafficSim License.

    $LastChangedDate: 2015-07-24 02:58:59 +0200 (Fri, 24 Jul 2015) $, @version $Revision: 1147 $, by $Author: averbraeck $, initial version May 27, 2016
    Author:
    Alexander Verbraeck, Peter Knoppers, Wouter Schakel
    See Also:
    Serialized Form
    • Constructor Detail

      • HeadwayGTURealCopy

        HeadwayGTURealCopy​(String id,
                           GTUType gtuType,
                           Length distance,
                           Length length,
                           Length width,
                           Speed speed,
                           Acceleration acceleration,
                           CarFollowingModel carFollowingModel,
                           org.opentrafficsim.base.parameters.Parameters parameters,
                           SpeedLimitInfo speedLimitInfo,
                           Route route,
                           Speed desiredSpeed,
                           GTUStatus... gtuStatus)
                    throws GTUException
        Protected constructor for moved copies or subclasses.
        Parameters:
        id - String; id
        gtuType - GTUType; GTU type
        distance - Length; distance
        length - Length; length
        width - Length; width
        speed - Speed; speed
        acceleration - Acceleration; acceleration
        carFollowingModel - CarFollowingModel; car-following model
        parameters - Parameters; parameters
        speedLimitInfo - SpeedLimitInfo; speed limit info
        route - Route; route
        desiredSpeed - Speed; desired speed
        gtuStatus - GTUStatus...; gtu status
        Throws:
        GTUException - when id is null, objectType is null, or parameters are inconsistent
      • HeadwayGTURealCopy

        HeadwayGTURealCopy​(String id,
                           GTUType gtuType,
                           Length overlapFront,
                           Length overlap,
                           Length overlapRear,
                           Length length,
                           Length width,
                           Speed speed,
                           Acceleration acceleration,
                           CarFollowingModel carFollowingModel,
                           org.opentrafficsim.base.parameters.Parameters parameters,
                           SpeedLimitInfo speedLimitInfo,
                           Route route,
                           Speed desiredSpeed,
                           GTUStatus... gtuStatus)
                    throws GTUException
        Protected constructor for moved copies or subclasses.
        Parameters:
        id - String; id
        gtuType - GTUType; GTU type
        overlapFront - the front-front distance to the other GTU; if this constructor is used, this value cannot be null.
        overlap - the 'center' overlap with the other GTU; if this constructor is used, this value cannot be null.
        overlapRear - the rear-rear distance to the other GTU; if this constructor is used, this value cannot be null.
        length - Length; length
        width - Length; width
        speed - Speed; speed
        acceleration - Acceleration; acceleration
        carFollowingModel - CarFollowingModel; car-following model
        parameters - Parameters; parameters
        speedLimitInfo - SpeedLimitInfo; speed limit info
        route - Route; route
        desiredSpeed - Speed; desired speed
        gtuStatus - GTUStatus...; gtu status
        Throws:
        GTUException - when id is null, objectType is null, or parameters are inconsistent
      • HeadwayGTURealCopy

        public HeadwayGTURealCopy​(LaneBasedGTU gtu,
                                  Length distance)
                           throws GTUException
        Construct a new Headway information object, for a GTU ahead of us or behind us.
        Parameters:
        gtu - LaneBasedGTU; the observed GTU, can not be null.
        distance - the distance to the other object; if this constructor is used, distance cannot be null.
        Throws:
        GTUException - when id is null, objectType is null, or parameters are inconsistent
      • HeadwayGTURealCopy

        public HeadwayGTURealCopy​(LaneBasedGTU gtu,
                                  Length overlapFront,
                                  Length overlap,
                                  Length overlapRear)
                           throws GTUException
        Construct a new Headway information object, for a GTU parallel with us.
        Parameters:
        gtu - LaneBasedGTU; the observed GTU, can not be null.
        overlapFront - the front-front distance to the other GTU; if this constructor is used, this value cannot be null.
        overlap - the 'center' overlap with the other GTU; if this constructor is used, this value cannot be null.
        overlapRear - the rear-rear distance to the other GTU; if this constructor is used, this value cannot be null.
        Throws:
        GTUException - when id is null, or parameters are inconsistent
    • Method Detail

      • getCarFollowingModel

        public final CarFollowingModel getCarFollowingModel()
        Many models that observe a GTU need to predict the imminent behavior of that GTU. Having a car following model of the observed GTU can help with that. The car following model that is returned can be on a continuum between the actual car following model of the observed GTU and the own car following model of the observing GTU, not making any assumptions about the observed GTU. When successive observations of the GTU take place, parameters about its behavior can be estimated more accurately. Another interesting easy-to-implement solution is to return a car following model per GTU type, where the following model of a truck can differ from that of a car.
        Returns:
        a car following model that represents the expected behavior of the observed GTU
      • getParameters

        public final org.opentrafficsim.base.parameters.Parameters getParameters()
        Many models that observe a GTU need to predict the imminent behavior of that GTU. Having an estimate of the behavioral characteristics of the observed GTU can help with that. The parameters that are returned can be on a continuum between the actual parameters of the observed GTU and the own parameters of the observing GTU, not making any assumptions about the observed GTU. When successive observations of the GTU take place, parameters about its behavior can be estimated more accurately. Another interesting easy-to-implement solution is to return a set of parameters per GTU type, where the parameters of a truck can differ from that of a car.
        Returns:
        the parameters that represent the expected behavior of the observed GTU
      • getSpeedLimitInfo

        public final SpeedLimitInfo getSpeedLimitInfo()
        Many models that observe a GTU need to predict the imminent behavior of that GTU. Having a model of the speed info profile for the observed GTU can help with predicting its future behavior. The speed limit info that is returned can be on a continuum between the actual speed limit model of the observed GTU and the own speed limit model of the observing GTU, not making any assumptions about the observed GTU. When successive observations of the GTU take place, parameters about its behavior, such as the maximum speed it accepts, can be estimated more accurately. Another interesting easy-to-implement solution is to return a speed limit info object per GTU type, where the returned information of a truck -- with a maximum allowed speed on 80 km/h -- can differ from that of a car -- which can have a maximum allowed speed of 100 km/h on the same road.
        Returns:
        a speed limit model that helps in determining the expected behavior of the observed GTU
      • getRoute

        public final Route getRoute()
        Models responding to other GTU may assume a route of the vehicle, for instance at intersections. The route may be short, i.e. only over the next intersection. Implementations may return anything from the actual route, a route based on indicators and other assumptions, or null if simply not known/estimated.
        Returns:
        route of gtu
      • moved

        public final AbstractHeadwayGTU moved​(Length headway,
                                              Speed speed,
                                              Acceleration acceleration)
        Creates a copy with different headway, speed and possibly acceleration. It may not be alongside. This method is used to anticipate movement of a neighboring GTU.
        Parameters:
        headway - Length; headway
        speed - Speed; speed
        acceleration - Acceleration; acceleration
        Returns:
        copy with different headway, speed and possibly acceleration