public abstract class AbstractGTUGenerator extends Object
Copyright (c) 2013-2015 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
Modifier and Type | Field and Description |
---|---|
protected long |
numberGTUs
Number of generated GTUs.
|
Constructor and Description |
---|
AbstractGTUGenerator(String name,
org.opentrafficsim.core.dsol.OTSDEVSSimulatorInterface simulator,
org.opentrafficsim.core.gtu.GTUType gtuType,
Class<?> gtuClass,
GTUFollowingModel gtuFollowingModel,
LaneChangeModel laneChangeModel,
org.opentrafficsim.core.units.distributions.ContinuousDistDoubleScalar.Rel<org.djunits.value.vdouble.scalar.Speed,org.djunits.unit.SpeedUnit> initialSpeedDist,
org.opentrafficsim.core.units.distributions.ContinuousDistDoubleScalar.Rel<org.djunits.value.vdouble.scalar.Time.Rel,org.djunits.unit.TimeUnit> interarrivelTimeDist,
long maxGTUs,
org.djunits.value.vdouble.scalar.Time.Abs startTime,
org.djunits.value.vdouble.scalar.Time.Abs endTime,
Lane lane,
org.djunits.value.vdouble.scalar.Length.Rel position,
LaneBasedRouteGenerator routeGenerator,
org.opentrafficsim.core.gtu.animation.GTUColorer gtuColorer) |
Modifier and Type | Method and Description |
---|---|
protected void |
checkCarBuilderList()
Check if car can be generated.
|
protected boolean |
enoughSpace(LaneBasedIndividualCar.LaneBasedIndividualCarBuilder carBuilder)
Check if the car to be built is not overlapping with another GTU on the same lane, and if it has enough headway to be
generated safely.
|
protected void |
generate()
Generate a GTU.
|
org.djunits.value.vdouble.scalar.Time.Abs |
getEndTime() |
Class<?> |
getGtuClass() |
org.opentrafficsim.core.gtu.animation.GTUColorer |
getGtuColorer() |
GTUFollowingModel |
getGtuFollowingModel() |
org.opentrafficsim.core.gtu.GTUType |
getGtuType() |
org.opentrafficsim.core.units.distributions.ContinuousDistDoubleScalar.Rel<org.djunits.value.vdouble.scalar.Speed,org.djunits.unit.SpeedUnit> |
getInitialSpeedDist() |
org.opentrafficsim.core.units.distributions.ContinuousDistDoubleScalar.Rel<org.djunits.value.vdouble.scalar.Time.Rel,org.djunits.unit.TimeUnit> |
getInterarrivelTimeDist() |
LaneChangeModel |
getLaneChangeModel() |
abstract org.opentrafficsim.core.units.distributions.ContinuousDistDoubleScalar.Rel<org.djunits.value.vdouble.scalar.Length.Rel,org.djunits.unit.LengthUnit> |
getLengthDist() |
long |
getMaxGTUs() |
abstract org.opentrafficsim.core.units.distributions.ContinuousDistDoubleScalar.Rel<org.djunits.value.vdouble.scalar.Speed,org.djunits.unit.SpeedUnit> |
getMaximumSpeedDist() |
String |
getName() |
org.opentrafficsim.core.network.route.RouteGenerator |
getRouteGenerator() |
abstract org.opentrafficsim.core.dsol.OTSDEVSSimulatorInterface |
getSimulator() |
org.djunits.value.vdouble.scalar.Time.Abs |
getStartTime() |
abstract org.opentrafficsim.core.units.distributions.ContinuousDistDoubleScalar.Rel<org.djunits.value.vdouble.scalar.Length.Rel,org.djunits.unit.LengthUnit> |
getWidthDist() |
HeadwayGTU |
headway(org.djunits.value.vdouble.scalar.Length.Rel maxDistance,
LaneBasedRouteNavigator routeNavigator,
Lane generatorLane)
Check the available headway for GTU that is about to be constructed.
|
void |
setRouteGenerator(LaneBasedRouteGenerator routeGenerator) |
public AbstractGTUGenerator(String name, org.opentrafficsim.core.dsol.OTSDEVSSimulatorInterface simulator, org.opentrafficsim.core.gtu.GTUType gtuType, Class<?> gtuClass, GTUFollowingModel gtuFollowingModel, LaneChangeModel laneChangeModel, org.opentrafficsim.core.units.distributions.ContinuousDistDoubleScalar.Rel<org.djunits.value.vdouble.scalar.Speed,org.djunits.unit.SpeedUnit> initialSpeedDist, org.opentrafficsim.core.units.distributions.ContinuousDistDoubleScalar.Rel<org.djunits.value.vdouble.scalar.Time.Rel,org.djunits.unit.TimeUnit> interarrivelTimeDist, long maxGTUs, org.djunits.value.vdouble.scalar.Time.Abs startTime, org.djunits.value.vdouble.scalar.Time.Abs endTime, Lane lane, org.djunits.value.vdouble.scalar.Length.Rel position, LaneBasedRouteGenerator routeGenerator, org.opentrafficsim.core.gtu.animation.GTUColorer gtuColorer) throws nl.tudelft.simulation.dsol.SimRuntimeException
name
- the name of the generatorsimulator
- the simulator to schedule the start of the generationgtuType
- the type of GTU to generategtuClass
- the GTU class to instantiategtuFollowingModel
- the GTU following model to uselaneChangeModel
- the lane change model to useinitialSpeedDist
- distribution of the initial speed of the GTUinterarrivelTimeDist
- distribution of the interarrival timemaxGTUs
- maximum number of GTUs to generatestartTime
- start time of generation (delayed start)endTime
- end time of generationlane
- the lane to generate the GTU onposition
- position on the lane, relative to the design line of the linkrouteGenerator
- RouteGenerator; the route generator that will create a route for each generated GTUgtuColorer
- the GTUColorer to usenl.tudelft.simulation.dsol.SimRuntimeException
- when simulation scheduling failsprotected final void generate() throws Exception
Exception
- when something in the generation fails.protected final boolean enoughSpace(LaneBasedIndividualCar.LaneBasedIndividualCarBuilder carBuilder) throws org.opentrafficsim.core.network.NetworkException
carBuilder
- the car to be generatedorg.opentrafficsim.core.network.NetworkException
- if GTU does not have a position on the lane where it is registeredpublic final HeadwayGTU headway(org.djunits.value.vdouble.scalar.Length.Rel maxDistance, LaneBasedRouteNavigator routeNavigator, Lane generatorLane) throws org.opentrafficsim.core.network.NetworkException
maxDistance
- DoubleScalar.Rel<LengthUnit>; the maximum distance to look for a leaderrouteNavigator
- RouteNavigator; the route that this GTU intends to takegeneratorLane
- Lane; the lane on which the GTU is generatedorg.opentrafficsim.core.network.NetworkException
- on network inconsistencyprotected final void checkCarBuilderList() throws Exception
Exception
- on any problempublic abstract org.opentrafficsim.core.dsol.OTSDEVSSimulatorInterface getSimulator()
public abstract org.opentrafficsim.core.units.distributions.ContinuousDistDoubleScalar.Rel<org.djunits.value.vdouble.scalar.Length.Rel,org.djunits.unit.LengthUnit> getLengthDist()
public abstract org.opentrafficsim.core.units.distributions.ContinuousDistDoubleScalar.Rel<org.djunits.value.vdouble.scalar.Length.Rel,org.djunits.unit.LengthUnit> getWidthDist()
public abstract org.opentrafficsim.core.units.distributions.ContinuousDistDoubleScalar.Rel<org.djunits.value.vdouble.scalar.Speed,org.djunits.unit.SpeedUnit> getMaximumSpeedDist()
public final String getName()
public final org.opentrafficsim.core.gtu.GTUType getGtuType()
public final Class<?> getGtuClass()
public final GTUFollowingModel getGtuFollowingModel()
public final org.opentrafficsim.core.units.distributions.ContinuousDistDoubleScalar.Rel<org.djunits.value.vdouble.scalar.Speed,org.djunits.unit.SpeedUnit> getInitialSpeedDist()
public final org.opentrafficsim.core.units.distributions.ContinuousDistDoubleScalar.Rel<org.djunits.value.vdouble.scalar.Time.Rel,org.djunits.unit.TimeUnit> getInterarrivelTimeDist()
public final long getMaxGTUs()
public final org.djunits.value.vdouble.scalar.Time.Abs getStartTime()
public final org.djunits.value.vdouble.scalar.Time.Abs getEndTime()
public final org.opentrafficsim.core.network.route.RouteGenerator getRouteGenerator()
public final void setRouteGenerator(LaneBasedRouteGenerator routeGenerator)
routeGenerator
- set routeGenerator.public final LaneChangeModel getLaneChangeModel()
public final org.opentrafficsim.core.gtu.animation.GTUColorer getGtuColorer()
Copyright © 2014–2015 Delft University of Technology. All rights reserved.