Learn R Programming

simplace (version 5.1.2)

stepAllSimulations: 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)

Value

handle to an array of data containers which has to be processed afterwards

Arguments

simplace

handle to the SimplaceWrapper object returned by initSimplace

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

Examples

Run this code
if (FALSE) {
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)   }

Run the code above in your browser using DataLab