setAllSimulationValues {simplace} | R Documentation |
Sets values of arbitrary SimVariables in a simplace simulation. Useful if you want to couple simplace with another simulation and interchange values daily.
setAllSimulationValues(simplace, parameterLists = NULL)
simplace |
handle to the SimplaceWrapper object returned by |
parameterLists |
a list of parameter lists for each simulation |
## Not run: for(i in 1:365) { params <- list() params[[1]] <- list(iRain=0.0) params[[2]] <- list(iRain=2.0) setAllSimulationValue(simplace,params) stepAll(simplace) } ## End(Not run)