Class | Description |
---|---|
ImportSimulation |
ImportSimulation does not actually run the simulation itself. |
SimTreeApplication |
Base class for
SimTree applications. |
Simulation |
Simulation controls all simulation phases.
|
SimulationEnvironment |
The
SimulationEnvironment provides a standard set of command
line parameters which are automatically parsed. |
StdSimulation |
Standard implementation for normal sequential simulations with one global
model.
|
Simulation
has been developed that defines
functions for the individual steps, which are executed during a simulation.
Most of these functions are empty and can be overridden in derived classes.StdSimulation
derived from
Simulation
has been pre-defined and will suffice
for many simulations. One entity of this class is generally declared in the
main()
function of the simulation program and requires the
following parameters upon constructor call:
ikr.simlib.model
) which is
to be used for simulationSimulationEnvironment
)
Simulation
- are processed
when the method run()
from Simulation
has been called. Normally, this occurs in the main()
function of
the simulation program.StdSimulation
, the methods
have been (partly) overridden so that they mirror a normal sequence of a
simulation.