Learn R Programming

SpaDES (version 1.0.1)

scheduleEvent: Schedule a simulation event

Description

Adds a new event to the simulation's event queue, updating the simulation object.

Usage

scheduleEvent(sim, eventTime, moduleName, eventType)

## S3 method for class 'simList,numeric,character,character':
scheduleEvent(sim, eventTime,
  moduleName, eventType)

## S3 method for class 'simList,`NULL`,character,character':
scheduleEvent(sim, eventTime,
  moduleName, eventType)

Arguments

sim
A simList simulation object.
eventTime
A numeric specifying the time of the next event.
moduleName
A character string specifying the module from which to call the event.
eventType
A character string specifying the type of event from within the module.

Value

  • Returns the modified simList object.

Details

Based on code from chapter 7.8.3 of Matloff (2011): "Discrete event simulation". Here, we implement a simulation in a more modular fashion so it's easier to add submodules to the simulation. We use S4 classes and methods, and use `data.table` instead of `data.frame` to implement the event queue (because it is much faster).

References

Matloff, N. (2011). The Art of R Programming (ch. 7.8.3). San Fransisco, CA: No Starch Press, Inc.. Retrieved from http://www.nostarch.com/artofr.htm

Examples

Run this code
scheduleEvent(x, time(sim) + 1.0, "firemodule", "burn")

Run the code above in your browser using DataLab