activate {simmer} | R Documentation |
Activities for activating or deactivating the generation of arrivals by name.
Sources must be defined in the simulation environment (see
add_generator
, add_dataframe
).
activate(.trj, sources)
deactivate(.trj, sources)
.trj |
the trajectory object. |
sources |
the name(s) of the source(s) or a function returning the name(s). |
Returns the trajectory object.
traj <- trajectory() %>%
deactivate("dummy") %>%
timeout(1) %>%
activate("dummy")
simmer() %>%
add_generator("dummy", traj, function() 1) %>%
run(10) %>%
get_mon_arrivals()