simmer (version 4.4.6.3)

activate: Activate/Deactivate Sources

Description

Activities for activating or deactivating the generation of arrivals by name. Sources must be defined in the simulation environment (see add_generator, add_dataframe).

Usage

activate(.trj, sources, ..., tag)

deactivate(.trj, sources, ..., tag)

Value

Returns the trajectory object.

Arguments

.trj

the trajectory object.

sources

the name(s) of the source(s) or a function returning the name(s).

...

unused.

tag

activity tag name to perform named rollbacks (see rollback) or just to better identify your activities.

See Also

set_trajectory, set_source

Examples

Run this code
traj <- trajectory() %>%
  deactivate("dummy") %>%
  timeout(1) %>%
  activate("dummy")

simmer() %>%
  add_generator("dummy", traj, function() 1) %>%
  run(10) %>%
  get_mon_arrivals()

Run the code above in your browser using DataLab