setSimulationValues {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.
setSimulationValues(simplace, parameterList = NULL, simulationNumber = 1)
simplace |
handle to the SimplaceWrapper object returned by |
parameterList |
a list with the parameter name as key and parametervalue as value |
simulationNumber |
number of simulation in the queue whose parameters should be set (default first simulation) |
## Not run: for(i in 1:365) { param <- list(iRain=0.0) setSimulationValue(simplace,param) step(simplace) } ## End(Not run)