stepAllSimulations {simplace} | R Documentation |
Run all simulations in queue stepwise
Description
Performs count
steps of the simulation and returns the values from
the actual variable map. Can be called consecutively.
Usage
stepAllSimulations(simplace, count = 1, filter = NULL, parameterLists = NULL)
Arguments
simplace |
handle to the SimplaceWrapper object returned by |
count |
number of steps to be performed |
filter |
vector of the variable names to be included in the result. If not set, all variables are returned |
parameterLists |
a list of parameter lists for each simulation |
Value
handle to an array of data containers which has to be processed afterwards
Examples
## Not run:
simplace <- initSimplace(SimplaceInstallationDir,SimplaceWorkDir,SimplaceOutputDir)
openProject(simplace, Solution)
createSimulation(simplace)
vm <- stepAllSimulations(simplace,count=22)
vm_s <- stepAllSimulations(simplace,filter=c("CURRENT.DATE","LintulBiomass.sWSO"),count=18)
closeProject(simplace)
## End(Not run)
[Package simplace version 5.0.13 Index]