CreateSupervisor {airGRiwrm} | R Documentation |
Creation of a Supervisor for handling regulation in a model
Description
Creation of a Supervisor for handling regulation in a model
Usage
CreateSupervisor(InputsModel, TimeStep = 1L)
Arguments
InputsModel |
[object of type |
TimeStep |
numeric number of time steps between each supervision |
Details
See RunModel.Supervisor and vignettes for examples of use.
Value
A Supervisor
object which is an environment containing all the necessary variables to run a supervised simulation, such as:
-
DatesR
POSIXct: vector of date fromInputsModel
-
InputsModel
: a copy ofInputsModel
provided by CreateInputsModel.GRiwrm -
griwrm
: a copy ofgriwrm
provided by CreateGRiwrm -
Controllers
list: list of the controllers used in the supervised simulation (See CreateController) some internal state variables updated during simulation (
ts.index
,ts.previous
,ts.date
,ts.index0
,controller.id
)
See Also
RunModel.Supervisor()
, CreateController()