
Houses GroupEvaluator class, a Manipulator that evaluates specific model term groups
GroupEvaluator initialization routine
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(GroupEvaluator), | intent(inout) | :: | this | |||
| integer(kind=ik), | intent(in) | :: | resultVarIndex |
Index of variable to write the result in |
||
| integer(kind=ik), | intent(in) | :: | modelIndex |
Index of model whose term group should be evaluated |
||
| integer(kind=ik), | intent(in) | :: | termGroup |
Term group to evaluate in model |
Implementation of abstract manipulate routine for the evaluator
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(GroupEvaluator), | intent(inout) | :: | this | |||
| class(ModellerSurrogate), | intent(inout) | :: | manipulatedModeller |
Modeller to be used in callbacks during manipulation |
||
| class(VariableContainer), | intent(inout) | :: | outputVars |
VariableContainer object to store the manipulation output |
||
| class(VariableContainer), | intent(in) | :: | inputVars |
VariableContainer object housing input data for the manipulation routine |
Manipulator that evaluates a specific model term group and writes the result into variable with given index
| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| logical, | public | :: | userDefined | = | .false. |
True only if user explicitly sets it to true |
|
| integer(kind=ik), | private | :: | resultVarIndex | ||||
| integer(kind=ik), | private | :: | evaluatedModelIndex | ||||
| integer(kind=ik), | private | :: | evaluatedTermGroup |
| procedure, public :: isDefined => isDefinedObject | |
| procedure, public :: makeDefined => makeDefinedObject | |
| procedure, public :: makeUndefined => makeUndefinedObject | |
| procedure, public :: init => initEvaluator | |
| procedure, public :: affect => evaluate |