public interface WrappableSimulation
Copyright (c) 2013-2018 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
$LastChangedDate: 2018-09-19 13:55:45 +0200 (Wed, 19 Sep 2018) $, @version $Revision: 4006 $, by $Author: averbraeck $,
initial version 17 dec. 2014
Modifier and Type | Method and Description |
---|---|
SimpleSimulatorInterface |
buildSimulator(Time startTime,
Duration warmupPeriod,
Duration runLength,
ArrayList<Property<?>> properties)
Build the simulation.
|
String |
description()
Return a description of the simulation (HTML formatted).
|
ArrayList<AbstractProperty<?>> |
getProperties()
Retrieve a list of visible properties of the simulation.
|
void |
setNextReplication(Integer nextReplication)
Set the number of the next spawned replication.
|
String |
shortName()
Return a very short description of the simulation.
|
SimpleSimulatorInterface buildSimulator(Time startTime, Duration warmupPeriod, Duration runLength, ArrayList<Property<?>> properties) throws SimRuntimeException, NetworkException, NamingException, OTSSimulationException, PropertyException
startTime
- Time; the start time of the simulationwarmupPeriod
- Duration; the warm up period of the simulation (use new Duration(0, SECOND) if you don't know what
this is)runLength
- Duration; the duration of the simulationproperties
- ArrayList<AbstractProperty<?>>; the (possibly user-modified) properties. This list must
contain all the properties returned by getProperties(); any additional properties may be ignoredSimRuntimeException
- on ???NetworkException
- on Network inconsistencyNamingException
- when context for the animation cannot be createdOTSSimulationException
- when the construction of the simulation, the control panel, the animation, or the charts
failsPropertyException
- when one of the user modified properties has the empty string as keyString shortName()
String description()
ArrayList<AbstractProperty<?>> getProperties()
void setNextReplication(Integer nextReplication)
nextReplication
- Integer; the next replication number, or null to use the built-in auto-incrementing replication
counterCopyright © 2014–2018 Delft University of Technology. All rights reserved.