sim-methods {simecol} | R Documentation |
Simulation of 'simObj' model objects
Description
This function provides the core functionality of the ‘simecol’ package. Several methods depending on the class of the model are available.
Usage
sim(obj, initialize=TRUE, ...)
# sim(obj, animation=FALSE, delay=0, ...)
Arguments
obj |
an object of class |
initialize |
re-initialize the object if the object contains a
user-defined initializing function ( |
animation |
logical value to switch animation on (for classes
|
delay |
delay (in ms and in addition to the time needed for the
simulation) between consecutive images (for |
... |
optional parameters passed to the solver function
(e.g. |
Details
sim
re-initializes the model object (if initialize==TRUE
and calls the appropriate solver, specified in the solver
-slot.
Objects of class rwalkModel
and indbasedModel
are
simulated by the default simObj
method. If you derive own
sublasses from simObj
it may be neccessary to write an
appropriate sim
method and/or solver function.
Value
The function returns the complete simObj
instance with the
simulation results in the out
slot.
Methods
- obj = "simObj"
simulates the respective model object with optional animation.
- obj = "odeModel"
simulates the respective model object.
- obj = "indbasedModel"
simulates the respective model object with optional animation.
- obj = "gridModel"
simulates the respective model object with optional animation.
Examples
data(lv)
plot(sim(lv))
lv2 <- lv
parms(lv2)["k1"] <- 0.5
lv2 <- sim(lv2)
plot(out(lv2))