varmapToList {simplace} | R Documentation |
Converts the varMap to a list. All elements are converted to appropriate R objects. Arrays are expanded to vectors by default.
varmapToList(varmap, expand = TRUE)
varmap |
the varMap returned by |
expand |
if |
list with parameter name as key and parameter value as value
## Not run: simplace <- initSimplace(SimplaceInstallationDir,SimplaceWorkDir,SimplaceOutputDir) openProject(simplace, Solution) varmap <- stepSimulation(simplace,count=22) closeProject(simplace) varlist <- varmapToList(varmap) varlist$startdate - 24*3600 varlist$LintulBiomass.sWSO ## End(Not run)