Using Schoof’s parameterized bed roughness technique in PISM¶
An explanation¶
If the bed elevation topg
is smoothed by preprocessing then we observe a reduction in
the peak values of the SIA diffusivities. From such smoothing there is (generically) also
a reduction in the peak magnitudes of horizontal velocities from both the SIA and SSA
models. The major consequence of these reductions, through the adaptive time-stepping
mechanism, is that PISM can take longer time steps and thus that it can complete model
runs in shorter time.
Large peak diffusivities coming from bed roughness are located (generically) at margin locations where the ice is on, or has flowed onto, fjord-like bed topography. At coarser resolutions (e.g. 20km and up), it appears that the effect of increasing bed roughness is not as severe as at finer resolutions (e.g. 10km, 5km and finer). Of course it is true that the shallow models we use, namely the SIA and SSA models, are missing significant stress gradients at the same margin locations which have large bed slopes.
Here we are emphasizing the performance “hit” which the whole model experiences if some small part of the ice sheet is on a rough bed. That part therefore is not well-modeled anyway, compared to the majority of the ice sheet. (Switching to full Stokes or Blatter higher order models without major spatial adaptivity would probably imply a gain in the balanced stress components and a loss of the ability to model the ice sheet at high resolution. There is a tradeoff between completeness of the continuum model and usable resolution needed to resolve the features of the real ice sheet.)
There exists a theory which addresses exactly this situation for the SIA model, and explains rigorously that one should use a smoothed bed in that model, but with an associated reduction in diffusivity. This theory explains how to improve the SIA model to handle bed roughness more correctly, because it parameterizes the effects of “higher-order” stresses which act on the ice as it flows over bed topography. Specifically it shows the way to a double performance boost for PISM:
smoothed beds give longer time steps directly, and
the parameterized effect of the local bed roughness is to further reduce the diffusivity, giving even longer time-steps.
Theory¶
The theory is in Christian Schoof’s (2003) The effect of basal topography on ice sheet
dynamics [66]. His mathematical technique is to expand the
Stokes equations in two levels of horizontal scales, one for the entire ice sheet (denoted
Specifically, there is an “inner” horizontal variable
In order to describe the Schoof scheme using PISM notation, we start by recalling the mass continuity equation which is fundamental to any shallow ice theory:
Within PISM this equation is handled by GeometryEvolution. Recall that
where
where
Consider now the “original” bed topography
where the slashed integral symbol is defined as
Consider also the “local bed topography”
As a function of the local coordinates
The result of Schoof’s scaling arguments ([66], equation (49)) is to
modify the diffusivity by multiplying by a factor
where
Here the ice thickness and ice surface elevation are related to the smoothed bed topography, so that in PISM notation
This can be treated as the definition of the ice thickness
The formula for
The very important fact that
Practical application, and Taylor approximation¶
The above formulas already reflect the recommendations Schoof gives on how to apply his
formulas ([66], subsection 4.2). The rest of this page is devoted to
how the class stressbalance::BedSmoother
implements a practical version of this
theory, based on these recommendations plus some additional approximation.
The averages appearing in his scaling arguments are over an infinite domain, e.g.
For practical modeling use, Schoof specifically recommends averaging over some finite
length scale which should be “considerably greater than the grid spacing, but much smaller
than the size of the ice sheet.” Furthermore he recommends that, because of the typical
aspect ratio of ice sheets, “Bed topography on much larger length scales than 10 km should
then be resolved explicitly through the smoothed bed height stress_balance
.sia
.bed_smoother
.range
to change this value).
It is, of course, possible to have bed roughness of significant magnitude at essentially any wavelength. We make no claim that PISM results are good models of ice flow over arbitrary geometry; clearly the current models cannot come close to the non-shallow solution (Stokes) in such cases. Rather, the goal right now is to improve on the existing shallow models, the diffusive SIA specifically, while maintaining or increasing high-resolution performance and comprehensive model quality, which necessarily includes many other modeled physical processes like ice thermal state, basal lubrication, and so on. The desirable properties of the Schoof scheme are accepted not because the resulting model is perfect, but because we gain both a physical modeling improvement and a computational performance improvement from its use.
How do we actually compute expression (58) quickly? Schoof has this suggestion,
which we follow: “To find
We need a “locally-defined interpolating function”. As with any approximation scheme, higher accuracy is achieved by doing “more work”, which here is an increase in memory used for storing spatially-dependent coefficients. Pade rational approximations, for example, were considered but are excluded because of the appearance of uncontrolled poles in the domain of approximation. The 4th degree Taylor polynomial is chosen here because it shares the same convexity as the rational function it approximates; this is proven below.
Use of Taylor polynomial
The fourth-order Taylor polynomial of the function
so
where
Now,
So our strategy should be clear, to approximate
where
for
Note that the coefficients
The parameters stressbalance::BedSmoother
implements these details.
Convexity of ¶
The approximation (59) given above relates to the Jensen’s inequality argument
used by Schoof in Appendix A of [66]. For the nonsliding case, his
argument shows that because
Thus it is desirable for the approximation
and this function turns out to be positive for all
Previous | Up | Next |