Groups¶
-
series¶
Series A sequential series of actions to apply during a simulation.
- Syntax
series(*actions, flatten=true, name=none)
- Required
actions
: A collection of Actions to run in seriesflatten
: When True, each action will be stored in the top level of the solution tree. When False, each action will be a child of the previous solution generated.name
: Optional name for the solution generated by these actions
- See Also
-
for¶
For An action changes a parameter value and runs a set of actions for each value in the array. Essentially the same as Series combined with Change. The parameter value is not reset to its original value once this action has finished.
Generates a
ForSolution
output when run.- Syntax
for(param, values, *actions)
- Required
param
: Parameter to change in the modelvalues
: Array of values to use for the parameter*actions
: Actions to run for each parameter value.