TSPSEUDO#
Solve steady state ODE and DAE problems with pseudo time stepping [CKK02] [KK98] This method solves equations of the form
for steady state using the iteration
where
This is linearly-implicit Euler with the residual always evaluated “at steady state”. See note below.
In addition to the modified solve, a dedicated adaptive timestepping scheme is implemented, mimicking the switched evolution relaxation in [CKK02]. It determines the next timestep via
where \(r\) is an additional growth factor (set by -ts_pseudo_increment
).
An alternative formulation is also available that uses the initial timestep and function norm.
This is chosen by setting -ts_pseudo_increment_dt_from_initial_dt
.
For either method, an upper limit on the timestep can be set by -ts_pseudo_max_dt
.
Options Database Keys#
-ts_pseudo_increment
- ratio of increase dt-ts_pseudo_increment_dt_from_initial_dt
- Increase dt as a ratio from original dt-ts_pseudo_max_dt - Maximum dt for adaptive timestepping algorithm
-ts_pseudo_monitor - Monitor convergence of the function norm
-ts_pseudo_fatol
- stop iterating when the function norm is less thanatol
-ts_pseudo_frtol
- stop iterating when the function norm divided by the initial function norm is less thanrtol
Notes#
The residual computed by this method includes the transient term (Xdot is computed instead of always being zero), but since the prediction from the last step is always the solution from the last step, on the first Newton iteration we have
Therefore, the linear system solved by the first Newton iteration is equivalent to the one
described above and in the papers. If the user chooses to perform multiple Newton iterations, the
algorithm is no longer the one described in the referenced papers.
By default, the SNESType
is set to SNESKSPONLY
to match the algorithm from the referenced papers.
Setting the SNESType
via -snes_type
will override this default setting.
References#
Todd S. Coffey, C. T. Kelley, and David E. Keyes. Pseudo-transient continuation and differential-algebraic equations. Technical Report, ODU, 2002. Submitted to the special issue of the SIAM Journal of Scientific Computing dedicated to papers from the 2002 Copper Mountain Conference on Iterative Methods. URL: http://www.math.odu.edu/\~{ }keyes.
Carl T. Kelley and David E. Keyes. Convergence analysis of pseudo-transient continuation. SIAM J. Numerical Analysis, 35:508–523, 1998.
See Also#
TS: Scalable ODE and DAE Solvers, TSCreate()
, TS
, TSSetType()
Level#
beginner
Location#
Examples#
src/ts/tutorials/ex42.c
src/ts/tutorials/ex24.c
src/ts/tutorials/ex1.c
Index of all TS routines
Table of Contents for all manual pages
Index of all manual pages