DIVA — Depth-Integrated Viscosity Approximation

DIVA is the first-class momentum balance solved in Yelmo. It is a 2D (depth-integrated) problem for the horizontal velocity, augmented with a 1D vertical closure that recovers the full 3D velocity field. The formulation follows Goldberg (2011), Arthern et al. (2015), Lipscomb et al. (2019), and Robinson et al. (2022), whose notation we use here.

DIVA is valid uniformly from slow grounded ice (where vertical shear dominates, the SIA limit) to fast streaming ice and floating shelves (where membrane stresses dominate, the SSA limit). It does so by retaining the depth-integrated membrane stress balance of SSA while reintroducing vertical shear through a closure on that is consistent with the Glen flow law.

The implementation is in src/physics/velocity_diva.f90.

Continuum equations

Depth-integrated stress balance

The unknown is the depth-averaged horizontal velocity . The momentum balance is the depth integral of the horizontal Stokes equations, with the assumption that the longitudinal stresses do not vary in the vertical ( contributes only to the strain-rate invariant, not as an independent unknown):

with the depth-averaged effective viscosity

(The product is stored in the code as visc_eff_int.) The horizontal strain rates are

The driving stress on the right-hand side is the depth-integrated gravitational force,

evaluated on ac-faces by calc_driving_stress in velocity_general.f90. A grounding-line variant (calc_driving_stress_gl) replaces with a flotation-corrected thickness so that no spurious driving stress is generated at the flotation contact. At calving fronts the lateral boundary contributes a depth-integrated water-pressure imbalance that enters as a Neumann condition.

Effective viscosity from Glen's flow law

The effective viscosity follows Glen's law,

(routine calc_viscosity_glen in deformation.f90). The effective strain rate in DIVA uses the horizontal strain rates plus a contribution from the (closure-defined) vertical shear, regularised by to avoid singular viscosity in stagnant ice:

The two terms are what make DIVA different from SSA: they reintroduce the vertical-shear contribution to the deformation rate, and hence soften the ice in places where vertical shear is large (slow, grounded interior).

Vertical-shear closure

Because the depth-integrated equation does not solve for the full vertical velocity profile, and are obtained from a closure that is consistent with the Stokes balance under DIVA's assumptions. With the basal shear stress acting at and vanishing shear stress at the surface ,

(Robinson et al. 2022 Eq. 21; routine calc_vertical_shear_3D). Define the F-integrals

(Robinson et al. 2022 Eq. 15; routine calc_F_integral). These are precisely the integrals needed to relate the depth-averaged velocity to the basal velocity:

Basal stress closure and effective drag

With a basal friction law of the form (see Parameters for the supported choices of ), the relation inverts to express directly in terms of the depth-averaged velocity:

(Robinson et al. 2022 Eq. 19; routine calc_beta_eff). In the no-slip limit () this reduces to (Robinson et al. 2022 Eq. 20), which is the form used when the user requests no_slip = .TRUE.. The effective drag — not the raw — is what appears in the depth-integrated momentum equation above.

Picard iteration

The viscosity and the effective drag both depend on the solution, so the momentum equation is nonlinear. Yelmo solves it by Picard iteration:

  1. Compute from the current (and the current 3D viscosity ).
  2. Relax in log-space against the previous iterate (Sandip et al. 2023): picard_relax_visc.
  3. Compute , the F-integrals , and .
  4. Assemble and solve the linear system for (see Numerical solution).
  5. Relax against the previous iterate (picard_relax_vel) and test an L2-relative convergence criterion.

When the iteration converges, the basal stress and basal velocity are diagnosed, and the 3D horizontal velocity field is reconstructed by integrating the vertical-shear closure from the bed upward:

(routine calc_vel_horizontal_3D).

Limits

  • SSA limit: as , the F-integrals enter only through (no vertical-shear enhancement of , no basal/depth-averaged offset). The depth-integrated stress balance reduces to the SSA equation — see SSA.
  • SIA limit: as membrane gradients become negligible relative to vertical-shear gradients, the balance collapses to , and the closure on reproduces the SIA velocity profile — see SIA.