- ds_inputs
A list of deSolve inputs generated by read_xmile
- consts_df
A data frame that contains the values of constants to
simulate. Each column corresponds to a constant and each row to an
iteration. If stocks_df
is also supplied, both data frames must have
the same number of rows.
- stocks_df
A data frame that containts the initial value of stocks to
be explored. Each column corresponds to a stock and each row to an
iteration. If consts_df
is also supplied, both data frames must have
the same number of rows.
- start_time
A number indicating the time at which the simulation begins.
- stop_time
A number indicating the time at which the simulation ends.
- timestep
A number indicating the time interval for the simulation.
Also known as dt
.
- integ_method
A string indicating the integration method. It can be
either "euler" or "rk4"
- multicore
A boolean value that indicates whether the process
is parallelised.
- n_cores
An integer indicating the number of cores for the parallel run.
- reporting_interval
A real number indicating the interval at which the
simulation results are returned. The default is set to 1
. For
instance, if the simulation runs from 0 to 10. This function returns the
results at times 0, 1, 2, ..., 10.