Using the APT method with auto tuned damping coefficients
This solver is still work-in-progress/experimental. The documented DYREL path currently supports 2D Stokes. The separate 2D variational-Stokes solver is documented in [2D variational Stokes](variational_stokes.md); 3D DYREL remains outside the documented scope.
Instead of using the Accelerated Pseudo-Transient method, 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 approach 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 the effective viscosity of the model, so `DYREL` must be instantiated _after_ an effective-viscosity guess is available.
- 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),
free_surface = false,
)
);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 inner Dynamic Relaxation loop. λ_relaxation_DR=1means no relaxation.verbose_PHprint solver metrics during the inner Powell–Hestenes loop. verbose_DRprint solver metrics during the inner 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 . free_surfaceinclude the 2D density-gradient free-surface stabilization in both the momentum residual and the self-tuned vertical pseudo-transient coefficients. The default is false.
When free_surface=true, DYREL adds the local diagonal Dy and to the corresponding Gershgorin row bound whenever the pseudo-transient coefficients are refreshed. The same term is used by the Powell–Hestenes and dynamic-relaxation residual kernels.
Examples
Examples of a set of miniapps using this solver can be found in this folder.