Contains an implicit Picard Backwards Euler integrator class
Getter for nonlinTol value
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(PicardBDEIntegrator), | intent(in) | :: | this |
Geter for maxIterations value
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(PicardBDEIntegrator), | intent(in) | :: | this |
Getter for convergenceTestVars array
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(PicardBDEIntegrator), | intent(in) | :: | this |
Integration routine for BDE integrator - implementation of abstract manipulate routine
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(PicardBDEIntegrator), | intent(inout) | :: | this | |||
class(ModellerSurrogate), | intent(inout) | :: | manipulatedModeller |
Modeller to be used in callbacks during integration |
||
class(VariableContainer), | intent(inout) | :: | outputVars |
VariableContainer object to store the integration output |
||
class(VariableContainer), | intent(in) | :: | inputVars |
VariableContainer object housing input data for the integration routine |
BDE integrator constructor
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(PicardBDEIntegrator), | intent(inout) | :: | this | |||
type(Indexing), | intent(in) | :: | indexingObj |
Indexing object to be used in initializing the implicit vectors |
||
integer(kind=ik), | intent(in) | :: | procRank |
Rank of current processors |
||
real(kind=rk), | intent(in), | optional | :: | nonlinTol |
Picard iteration relative tolerance |
|
real(kind=rk), | intent(in), | optional | :: | absTol |
Picard iteration absolute tolerance in epsilon units |
|
integer(kind=ik), | intent(in), | optional | :: | maxIters |
Maximum number of Picard iterations |
|
integer(kind=ik), | intent(in), | optional, | dimension(:) | :: | convergenceIndices |
Variable indices in VariableContainer used to determine convergence of Picard iterations |
integer(kind=ik), | intent(in), | optional, | dimension(:) | :: | modelList |
List of models this integrator is responsible for |
type(IntArray), | intent(in), | optional, | dimension(:) | :: | termGroups |
Term groups this integrator is responsible for - should conform with modelList |
logical, | intent(in), | optional | :: | evolvesTimeVar |
Set to true if this integrator is allowed to change the "time" varible (if present in passed variable container) |
|
class(TimestepController), | intent(in), | optional | :: | dtController |
User-supplied timestep controller object |
|
real(kind=rk), | intent(in), | optional | :: | initialTimestep |
Default timestep |
|
logical, | intent(in), | optional | :: | use2Norm |
Set to true if this integrator uses the 2-norm instead of the local inf-norm for checking individual variable convergence |
|
integer(kind=ik), | intent(in), | optional | :: | petscGroup |
PETSc obj group this solver should interact with (defaults to 1) |
|
type(InternalControllerOptions), | intent(in), | optional | :: | intContOptions |
InternalControlOptions (if present turns on internal control) |
|
character(len=*), | intent(in), | optional | :: | integratorName |
Name of integrator used in printing |
|
real(kind=rk), | intent(in), | optional | :: | relaxationWeight |
relaxationWeight |
Setter for nonlinTol value
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(PicardBDEIntegrator), | intent(inout) | :: | this | |||
real(kind=rk), | intent(in) | :: | nonlinTol |
Picard iteration tolerance |
Setter for maxIterations value
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(PicardBDEIntegrator), | intent(inout) | :: | this | |||
integer(kind=ik), | intent(in) | :: | maxIter |
Maximum number of Picard iterations |
Setter for convergenceTestVars array
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(PicardBDEIntegrator), | intent(inout) | :: | this | |||
integer(kind=ik), | intent(in), | dimension(:) | :: | convVars |
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
integer(kind=ik), | public | :: | currentNumSubsteps | = | 1 |
The current number of sub- timesteps |
|
integer(kind=ik), | public | :: | stepMultiplier | = | 2 |
Which number to multiply the current number of substeps when a solve failure is detected |
|
integer(kind=ik), | public | :: | stepDecrament | = | 1 |
By how much to decrament the current number of timesteps when the number of nonlinear iterations drops below minNonlinIters |
|
integer(kind=ik), | public | :: | minNonlinIters | = | 5 |
Number of nonlinear iterations below which the number of substeps gets reduced |
|
integer(kind=ik), | public | :: | maxRestarts | = | 3 |
Maximum number of consecutive solver restart attempts before critical failure is announced |
|
integer(kind=ik), | public | :: | consolidationInterval | = | 50 |
How many integration calls before currentNumSubsteps is again reduced to 1 |
|
integer(kind=ik), | public | :: | hardMaxRestarts | = | 10 |
Maximum number of consecutive solver restart attempts before critical failure is announced regardless of whether consolidation happened or not |
|
integer(kind=ik), | public | :: | restartCount | = | 0 |
Counter for consecutive number of solver restars |
|
integer(kind=ik), | public | :: | stepsSinceLastConsolidation | = | 0 |
Counter for steps since last consolidation to 1 substep |
Implicit Backwards Euler integrator with Picard iterations for handling non-linearities
Type | Visibility | Attributes | Name | Initial | |||
---|---|---|---|---|---|---|---|
logical, | public | :: | userDefined | = | .false. |
True only if user explicitly sets it to true |
|
logical, | public | :: | communicationNeeded |
True if this Integrator requires MPI communication during evolution |
|||
type(CommunicationData), | public | :: | commData |
Communication data object for this Integrator |
|||
logical, | public | :: | nonTrivialUpdate |
True if this integrator should perform non-trivial updates of terms |
|||
logical, | public | :: | nonTrivialModelDataUpdate |
True if this integrator should perform non-trivial updates of model data |
|||
real(kind=rk), | private, | allocatable, dimension(:) | :: | implicitVectorOld |
Buffer for implicit vector from previous Picard iteration |
||
real(kind=rk), | private, | allocatable, dimension(:) | :: | implicitVectorNew |
Buffer for implicit vector from current Picard iteration |
||
integer(kind=ik), | private, | allocatable, dimension(:) | :: | convergenceTestVars |
Variable indices in VariableContainer used to determine convergence of Picard iterations |
||
real(kind=rk), | private | :: | nonlinTol |
Picard iteration relative convergence tolerance |
|||
real(kind=rk), | private | :: | absTol |
Picard iteration absolute convergence tolerance in epsilon units |
|||
integer(kind=ik), | private | :: | maxIterations |
Maximum allowed number of Picard iterations |
|||
type(VariableContainer), | private, | allocatable | :: | buffer |
VariableContainer buffer for passing to Modeller routines |
||
integer(kind=ik), | private | :: | timesCalled |
Tracker for number of times called |
|||
integer(kind=ik), | private | :: | totNumIters |
Tracker for total number of iterations |
|||
logical, | private | :: | use2Norm |
True if the norm to be used is the 2norm instead of local inf-norm |
|||
integer(kind=ik), | private | :: | associatedPETScObjGroup |
PETSc obj group this solver should interact with (defaults to 1) |
|||
logical, | private | :: | internalStepControl |
True if using internal step control - will attempt restarts on failed solves and will ignore timestep controller |
|||
type(InternalControllerOptions), | private | :: | internalControlOpts | ||||
character(len=:), | private, | allocatable | :: | integratorName |
Integrator named used in printing |
||
real(kind=rk), | private | :: | relaxationWeight |
<1 for under-relaxation >1 for over-relaxation |
procedure, public :: isDefined => isDefinedObject | |
procedure, public :: makeDefined => makeDefinedObject | |
procedure, public :: makeUndefined => makeUndefinedObject | |
procedure, public :: setTimestep | |
procedure, public :: getTimestep | |
procedure, public :: setTermGroups | |
procedure, public :: getTermGroups | |
procedure, public :: setModelIndices | |
procedure, public :: getModelIndices | |
procedure, public :: setTimeEvolving | |
procedure, public :: isTimeEvolving | |
procedure, public :: setTimestepController | |
procedure, public :: hasTimestepController | |
procedure, public :: getTimestepFromController | |
procedure, public :: isCommunicationNeeded | |
procedure, public :: setCommunicationNeeded | |
procedure, public :: getCommunicationData | |
procedure, public :: setCommunicationData | |
procedure, public :: getUpdateRules | |
procedure, public :: setUpdateRules | |
procedure, public :: getModelDataUpdateRules | |
procedure, public :: setModelDataUpdateRules | |
procedure, public :: hasNonTrivialUpdate | |
procedure, public :: setNonTrivialUpdate | |
procedure, public :: hasNonTrivialModelDataUpdate | |
procedure, public :: setNonTrivialModelDataUpdate | |
procedure, public :: affect => integrateBDE | |
procedure, public :: init => initBDEIntegrator | |
procedure, public :: setNonlinTol | |
procedure, public :: getNonlinTol | |
procedure, public :: setMaxIterations | |
procedure, public :: getMaxIterations | |
procedure, public :: setConvergenceIndices | |
procedure, public :: getConvergenceIndices |