Using the APT method with auto tuned damping coefficients
This solver is still work-in-progress/experimental. In the current state, only 2D Stokes is supported. Variational Stokes and 3D version coming up soon.
Instead of using the Accelerated Pseudo-Transient where the damping coefficients are constant throughout the PT iterations (as in Räss et al, 2022), we can use a self-tuning version of the APT method based on the approached described in Duretz et al, 2025.
Usage
To use this solver, only two changes are needed with respect to the scripts using the APT solver described in previous examples:
- The
PTStokesCoeffsobject containing the arrays needed for the standard APT solver is not needed anymore, and needs to be replaced by theDYRELobject that contains all the new arrays that are needed for the self-tuned APT method. This means we need to change this line
pt_stokes = PTStokesCoeffs(li, di; ϵ_abs = 1.0e-6, ϵ_rel = 1.0e-6, CFL = 0.95 / √2)by this one
dyrel = DYREL(backend, stokes, rheology, phase_ratios, di, dt; ϵ=1e-6)Note that the `DYREL` arrays need effective viscosity of the model, so it needs to be instantiatef _after_ having a effective viscosity guess.
- The last change requires changing the solver function call to the following:
solve_DYREL!(
stokes,
ρg,
dyrel,
flow_bcs,
phase_ratios,
rheology,
args,
di,
dt,
igg;
kwargs = (;
iterMax = 50.0e3,
nout = 10,
rel_drop = 0.1,
λ_relaxation_PH = 1,
λ_relaxation_DR = 1,
verbose_PH = false,
verbose_DR = false,
viscosity_relaxation = 1,
linear_viscosity = true,
viscosity_cutoff = (-Inf, Inf),
)
);where the solver keyword arguments are:
iterMaxmaximum number of total iterations. noutdamping coefficients are re-computed every noutiterations.rel_dropthe tolerance for the inner dynamic relaxation loop is where is the inner Powell-Hesteness iteration counter. λ_relaxation_PHrelaxation coefficient for the plastic multiplier ( ) during the inner Powell-Hesteness loop. λ_relaxation_PH=1means no relaxation.λ_relaxation_DRrelaxation coefficient for the plastic multiplier ( ) during the innes Dynamic Relaxation loop. λ_relaxation_DR=1means no relaxation.verbose_PH# print solver metrics during inner Powell-Hesteness loop. verbose_DR# print solver metrics during innes Dynamic Relaxation loop. viscosity_relaxationrelaxation coefficient for the viscosity. viscosity_relaxation=1means no relaxation.linear_viscosityif the rheology is linear (viscosity will not be updated during the solver iterations). viscosity_cutoffviscosity is clamped so that .
Examples
Examples of a set of miniapps using this solver can be found in this folder.