Contains procedures associated with the composite integrator class
Getter for currentTime
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(CompositeIntegrator), | intent(in) | :: | this |
Composite integraotr initialization routine
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(CompositeIntegrator), | intent(inout) | :: | this | |||
real(kind=rk), | intent(in) | :: | initialTime |
Time value before first step |
||
real(kind=rk), | intent(in) | :: | initialTimestep |
Default timestep |
||
integer(kind=ik), | intent(in) | :: | numIntegrators |
Number of integrators expected |
||
class(TimestepController), | intent(in), | optional | :: | dtController |
Optional timestep controller |
Add Integrator object to composite integrator
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(CompositeIntegrator), | intent(inout) | :: | this | |||
class(Integrator), | intent(in) | :: | integ |
Add integration stage to composite integrator
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(CompositeIntegrator), | intent(inout) | :: | this | |||
type(IntegratorCallStep), | intent(in) | :: | integStage |
Setter for dtController
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(CompositeIntegrator), | intent(inout) | :: | this | |||
class(TimestepController), | intent(in) | :: | controller |
Setter for requestedTimestep
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(CompositeIntegrator), | intent(inout) | :: | this | |||
real(kind=rk), | intent(in) | :: | timestep |
Resets the requested timestep to the initial timestep
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(CompositeIntegrator), | intent(inout) | :: | this |
Call all integrators based on the integration stages and global timestep. The global timestep is updated at the start if there is an allocated timestep controller.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(CompositeIntegrator), | intent(inout) | :: | this | |||
class(ModellerSurrogate), | intent(inout) | :: | manipulatedModeller |
Modeller object used in callback |
||
class(VariableContainer), | intent(inout) | :: | outputVars |
Container for integration output |
||
class(VariableContainer), | intent(in) | :: | inputVars |
Integration input variables |