stepAllSimulations {simplace} | R Documentation |
Performs count
steps of the simulation and returns the values from
the actual variable map. Can be called consecutively.
stepAllSimulations(simplace, count = 1, filter = NULL, parameterLists = NULL)
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 |
handle to an array of data containers which has to be processed afterwards
## Not run: simplace <- initSimplace(SimplaceInstallationDir,SimplaceWorkDir,SimplaceOutputDir) openProject(simplace, Solution) createSimulation(simplace) vm <- stepAllSimulation(simplace,count=22) vm_s <- stepAllSimulation(simplace,filter=c("CURRENT.DATE","LintulBiomass.sWSO"),count=18) closeProject(simplace) ## End(Not run)