TSConvergedReason#
reason a TS
method has converged (integrated to the requested time) or not
Synopsis#
typedef enum {
TS_CONVERGED_ITERATING = 0,
TS_CONVERGED_TIME = 1,
TS_CONVERGED_ITS = 2,
TS_CONVERGED_USER = 3,
TS_CONVERGED_EVENT = 4,
TS_CONVERGED_PSEUDO_FATOL = 5,
TS_CONVERGED_PSEUDO_FRTOL = 6,
TS_DIVERGED_NONLINEAR_SOLVE = -1,
TS_DIVERGED_STEP_REJECTED = -2,
TSFORWARD_DIVERGED_LINEAR_SOLVE = -3,
TSADJOINT_DIVERGED_LINEAR_SOLVE = -4
} TSConvergedReason;
Values#
TS_CONVERGED_ITERATING
- this only occurs ifTSGetConvergedReason()
is called during theTSSolve()
TS_CONVERGED_TIME
- the final time was reachedTS_CONVERGED_ITS
- the maximum number of iterations (time-steps) was reached prior to the final timeTS_CONVERGED_USER
- user requested terminationTS_CONVERGED_EVENT
- user requested termination on event detectionTS_CONVERGED_PSEUDO_FATOL
- stops when function norm decreased by a set amount, used only forTSPSEUDO
TS_CONVERGED_PSEUDO_FRTOL
- stops when function norm decreases below a set amount, used only forTSPSEUDO
TS_DIVERGED_NONLINEAR_SOLVE
- too many nonlinear solve failures have occurredTS_DIVERGED_STEP_REJECTED
- too many steps were rejectedTSFORWARD_DIVERGED_LINEAR_SOLVE
- tangent linear solve failedTSADJOINT_DIVERGED_LINEAR_SOLVE
- transposed linear solve failed
See Also#
TS: Scalable ODE and DAE Solvers, TS
, TSGetConvergedReason()
Level#
beginner
Location#
Index of all TS routines
Table of Contents for all manual pages
Index of all manual pages