Create simulations from simulation configurations
Source:R/utilities-simulation.R
createSimulations.RdCreates one simulation per entry of simulationConfigurations. All
simulations are created in parallel.
Usage
createSimulations(
simulationConfigurations,
createAllProcessRateParameters = FALSE,
showWarnings = FALSE,
stopIfFails = FALSE
)Arguments
- simulationConfigurations
A named list of
SimulationConfigurationobjects. The names are used as the names of the created simulations and must be unique.- createAllProcessRateParameters
If
TRUE, process rate parameters will be created for all reactions and transport processes.- showWarnings
If
TRUE, warnings generated during simulation creation will be shown as R warnings. Default isFALSE.- stopIfFails
If
TRUE, an error is thrown as soon as one simulation could not be created. IfFALSE(default), a warning is shown for every simulation that could not be created, and its entry in the returned list isNULL.