sim {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, ...)
  # sim(obj, animation=FALSE, delay=0, ...)

Arguments

obj an object of class simObj or one of its subclasses.
animation logical value to switch animation on (for classes gridModel and rwalkModel.
delay delay (in ms and in addition to the time needed for the simulation) between consecutive images (for gridModels) or xy-plots (for rwalkModels).
... optional parameters passed to the solver function (e.g. hmax for lsoda).

Value

The function returns the complete simObj instance with the simulation results in the out slot.

Methods

obj = "odeModel"
simulates the respective model object.
obj = "gridModel"
simulates the respective model object with optional animation.
obj = "rwalkModel"
simulates the respective model object with optional animation.

Examples

  data(lv)
  plot(sim(lv))

  lv2 <- lv
  parms(lv2) <- c(k1=0.5)
  lv2 <- sim(lv2)
  plot(out(lv2))

[Package simecol version 0.3-11 Index]