BOMBPROOF, PISM’s numerical scheme for conservation of energy

Introduction

One of the essential goals for any thermomechanically-coupled numerical ice sheet model is a completely bombproof numerical scheme for the advection-conduction-reaction problem for the conservation of energy within the ice. “Bombproof” means being as stable as possible in as many realistic modeling contexts as possible. PISM’s scheme is observed to be highly robust in practice, but it is also provably stable in a significant range of circumstances. The scheme is special to shallow ice sheets because it makes specific tradeoff choices with respect to vertical velocity. It is generic and low order in how it treats horizontal velocity. In this page we state the scheme, prove its stability properties, and address the basal boundary condition.

The scheme is conditionally-stable. The length of the time step is limited only by the maximum magnitude of the horizontal velocities within the ice, i.e. horizontal CFL. This condition for stability is included in the PISM adaptive time-stepping technique.

Accuracy is necessarily a second goal. Our shallow scheme has truncation error O(Δz2) in many circumstances, though it reverts to lower order when it “detects trouble” in the form of large vertical velocities. Overall the scheme has order O(Δt,Δx,Δy,Δz2) in circumstances where the vertical ice flow velocity is small enough, relative to conductivity, and otherwise reverts to O(Δt,Δx,Δy,Δz1).

The conservation of energy problem for the ice is in terms of an enthalpy field [22]. The current scheme supercedes the cold-ice, temperature-based scheme described in the appendices of [16] and in [10]. Compared to a cold-ice scheme, the enthalpy formulation does a better job of conserving energy, has a more-physical model for basal melt rate and drainage, and can model polythermal ice with any CTS topology [22]. The finite difference implementation of the enthalpy method is robust and avoids the CFL condition on vertical advection which was present in the older, cold-ice scheme.

The bedrock thermal problem is solved by splitting the timestep into an update of the bedrock temperature field, assuming the ice base is as constant temperature, and an update of the ice enthalpy field, by the BOMBPROOF scheme here, assuming the upward heat flux from the bedrock layer is constant during the timestep. For more on the implementation, see the BedThermalUnit class.

The region in which the conservation of energy equation needs to be solved changes over time. This is an essential complicating factor in ice sheet modeling. Also relevant is that the velocity field has a complicated provenance as it comes from different stress balance equations chosen at runtime. These stress balances, especially with transitions in flow type, for instance at grounding lines, are incompletely understood when thermomechanically-coupled. (The ShallowStressBalance instance owned by IceModel could be the SIA, the SSA, a hybrid of these, or other stress balances in future PISM versions.) We will therefore not make, in proving stability, assumptions about the regularity of the velocity field in space or time other than boundedness.

Nor do we want the numerical scheme for advection to need any information about the velocity except its value at the beginning of the time step. Thus the conservation of energy timestep is assumed to be split from the mass continuity time step and its associated stress balance solve. We have not considered implementing a scheme which requires the Jacobian of the velocity field with respect to changes in enthalpy, for example. At very least such a fully-implicit scheme would require blind iteration (e.g. with no guarantee of convergence of the iteration). The scheme we propose involves no such iteration.

Conservation of energy in a shallow ice sheet

In an enthalpy formulation [22] (and references therein), the ice sheet is regarded as a mixture of two phases, solid and liquid, so that both cold and temperate ice with liquid ice matrix can be modeled. The specific enthalpy field of the ice mixture is denoted E(x,y,z,t) and has units J/kg. (Within the PISM documentation the symbol H is used for ice thickness so we use E for enthalpy here and in the PISM source code versus “H” in [22].) The conservation of energy equation is

(82)ρdEdt=q+Q,

where ρ is the mixture density. The mixture density is assumed to be the same as ice density even if there is a nonzero liquid fraction, and the mixture is assumed to be incompressible [22]. The left and right sides of equation (82), and thus the quantity Q, have units Js1m3=Wm3.

Neglecting the dependence of conductivity and heat capacity on temperature [22], the heat flux in cold ice and temperate ice is

(83)q={kiciE,cold ice,K0E,temperate ice,

where ki,ci,K0 are constant [22]. The nonzero flux in the temperate ice case, may be conceptualized as a regularization of the “real” equation, or as a flux of latent heat carried by liquid water. Also, dE/dt stands for the material derivative of the enthalpy field, so the expanded form of (82) is

ρ(Et+UE)=({kiciK0}E)+Q,

where U is the three dimensional velocity, thus advection is included.

The additive quantity Q is the dissipation (strain-rate) heating,

Q=i,j=13Dijτij

where Dij is the strain rate tensor and τij is the deviatoric stress tensor. Reference [10] addresses how this term is computed in PISM, according to the shallow stress balance approximations; see StressBalance::compute_volumetric_strain_heating(). (Q is called Σ in [16], [10] and in many places in the source code.)

Friction from sliding also is a source of heating. It has units of W/m2=J/(m2s), that is, the same units as the heat flux q above. In formulas we write

Fb=τbub,

where τb is the basal shear stress and ub is the basal sliding velocity; the basal shear stress is oppositely-directed to the basal velocity. For example, in the plastic case τb=τcub/|ub| where τc is a positive scalar, the yield stress. See method StressBalance::basal_frictional_heating(). The friction heating is concentrated at z=0, and it enters into the basal boundary condition and melt rate calculation, addressed in section Temperate basal boundary condition, and computing the basal melt rate below.

We use a shallow approximation of equation (82) which lacks horizontal conduction terms [38]. For the initial analysis of the core BOMBPROOF scheme, we specialize to cold ice. Within cold ice, the coefficient in the heat flux is constant, so

q=kici2Ez2.

Therefore the equation we initially analyze is

(84)ρi(Et+UE)=kici2Ez2+Q,

We focus the analysis on the direction in which the enthalpy has largest derivative, namely with respect to the vertical coordinate z. Rewriting equation (84) to emphasize the vertical terms we have

(85)ρi(Et+wEz)=kici2Ez2+Φ

where

Φ=Qρi(uEx+vEy)

We assume that the surface enthalpy Es(t,x,y) (K) and the geothermal flux G(t,x,y) (W/m2) at z=0 are given. (The latter is the output of the energy::BedThermalUnit object, and it may come from an evolving temperature field within the upper crust, the bedrock layer. If a surface temperature is given then it will be converted to enthalpy by the EnthalpyConverter class.) The boundary conditions to problem (85) are, therefore,

(86)E(t,x,y,z=H)=Es(t,x,y),kiciEz|z=0=G.

For a temperate ice base, including any ice base below which there is liquid water, the lower boundary condition is more interesting. It is addressed below in section Temperate basal boundary condition, and computing the basal melt rate.

The core BOMBPROOF scheme

For the discussion of the numerical scheme below, let Eijkn be our approximation to the exact enthalpy E at the grid point with coordinates (xi,yj,zk) at time tn. When i,j are uninteresting we suppress them and write Ekn, and we will use similar notation for numerical approximations to the other quantities. We put the horizontal advection terms in the source term Φ because we treat them explicitly, evaluating at time tn. (Implicit or semi-implicit treatment of horizontal advection would require a coupled system distributed across processors, a difficulty which is currently avoided.)

The scheme we use for horizontal advection is explicit first-order upwinding. There is a CFL condition for the scheme to be stable, in the absence of conduction, based on the magnitude of the horizontal velocity components. To state the upwind scheme itself, let

Up(f|α)={fifi1,α0,fi+1fi,α<0.

The approximate horizontal advection terms, and thus the approximation to the whole term Φ, are

Φijkn=Σijknρi(uijknUp(Ejkn|uijkn)Δx+vijknUp(Eikn|vijkn)Δy).

The CFL stability condition for this part of the scheme is

(87)Δt(|uijknΔx|+|vijknΔy|)1.

The routine max_timestep_cfl_3d() computes the maximum of velocity magnitudes. This produces a time step restriction based on the above CFL condition. Then IceModel::max_timestep() implements adaptive time-stepping based on this and other stability criteria.

In the analysis below we assume an equally-spaced grid z0,,zMz with Δz=zk+1zk. In fact PISM has a remapping scheme in each column, wherein the enthalpy in a column of ice is stored on an unequally-spaced vertical grid, but is mapped to a fine, equally-spaced grid for the conservation of energy computation described here. (Similar structure applies to the age computation. See classes EnthalpyModel and AgeModel.)

The z derivative terms in (85) will be approximated implicitly. Let λ be in the interval 0λ1. Suppressing indices i,j, the approximation to (85) is

(88)ρi(Ekn+1EknΔt+λwknEk+1n+1Ek1n+12Δz+(1λ)wknUp(En+1|wkn)Δz)=kiciEk+1n+12Ekn+1+Ek1n+1Δz2+Φkn.

Equation (88), along with a determination of λ by (92) below, is the scheme BOMBPROOF. It includes two approximations of vertical advection, implicit centered difference (λ=1) and implicit first-order upwinding (λ=0). They are combined using nonnegative coefficients which sum to one, a convex combination. The centered formula has higher accuracy,

wknEk+1n+1Ek1n+12Δz=wEz+O(Δt,Δz2),

while the first order upwind formula has lower accuracy,

wknUp(En+1|wkn)Δz=wEz+O(Δt,Δz).

Thus we prefer to use the centered formula when possible, but we apply (implicit) upwinding when it is needed for its added stability benefits.

We now rewrite (88) for computational purposes as one of a system of equations for the unknowns {Ekn+1}. In this system the coefficients will be scaled so that the diagonal entries of the matrix have limit one as Δt0. Let

ν=ΔtΔz,R=kiΔtρiciΔz2.

Now multiply equation (88) by Δt, divide it by ρi, and rearrange:

(89)(Rνwkn{1λ/2λ/2})Ek1n+1+(1+2R+νwkn(1λ){+11})Ekn+1+(R+νwkn{λ/21λ/2})Ek+1n+1=Ekn+Δtρi1Φkn

Here {ab}=a when wkn0 and {ab}=b when wkn<0.

Equation (89) has coefficients which are scaled to have no units. It is ready to be put in the system managed by enthSystemCtx.

One way of stating the stability of first-order upwinding is to say it satisfies a “maximum principle” [74]. An example of a maximum principle for this kind of finite difference scheme is that if Uk1n,Ukn,Uk+1n are adjacent gridded values of some abstract quantity at time step tn, and if the next value satisfies the scheme

(90)Ukn+1=C1Uk1n+C0Ukn+C+1Uk+1n

for nonnegative coefficients Ci summing to one, C1+C0+C+1=1, then it follows by the triangle inequality that

min{|Uk1n|,|Ukn|,|Uk+1n|}|Ukn+1|max{|Uk1n|,|Ukn|,|Uk+1n|}.

Thus a “wiggle” cannot appear in {Ukn+1} if previous values {Ukn} were smoother. The proof below shows the corresponding “wiggle-free” property for scheme (89).

However, the pure implicit centered difference scheme (λ=1), namely

(91)(Rνwkn/2)Ek1n+1+(1+2R)Ekn+1+(R+νwkn/2)Ek+1n+1=Ekn+Δtρi1Φkn

is less stable than implicit first-order upwinding. It is less stable in the same sense that Crank-Nicolson is a less stable scheme than backwards Euler for the simplest heat equation ut=uxx [74]. In fact, although oscillatory modes cannot grow exponentially under equation (91), those modes can appear when none are present already, even in the homogeneous case Φkn=0.

Stability properties of the BOMBPROOF scheme

We want to be precise about the phrase “unconditionally stable” for BOMBPROOF. To do so we consider somewhat simplified cases which are amenable to analysis, and we prove two stability properties. These stability properties identify the precise advantages of BOMBPROOF.

Theorem (stating the stability properties).

Assume, for the precise but limited assertion of this theorem, that the surface temperature Ts and the geothermal flux G are constant in time. Assume also that the entire source function Φ is identically zero (but see comments below). Fix an equally-spaced vertical grid z0=0<z1<<zN=H, so that the upper grid point coincides with the surface of the ice. With these assumptions, if

(92)λ=min{1,mink=0,,N{2ki|wkn|ρiciΔz}},

reset at each time step n, then scheme (88), (89) is unconditionally-stable in the following two senses:

  1. A maximum principle applies without further assumptions.

  2. Suppose we freeze the coefficients of the problem to have constant values in time and space. (Concretely, we assume that λ is chosen independently of the time step n, and that Δt is the same for each time step. We assume constant vertical velocity wkn=w0. We also consider a spatially-periodic or unbounded version of our problem, with no boundary conditions.) Then a von Neumann analysis of the constant coefficient problem yields a growth factor less than one for all modes on the grid.

Remarks

The phrases maximum principle and von Neumann analysis will be precisely illustrated in the following proof. Both approaches are in [74]. There is additional information on the von Neumann analysis of implicit finite difference methods for advection in [172].

These statements also apply in case ki=0, in which case (92) implies λ=0, and the method reduces to implicit first-order upwinding. (Implicit first-order upwinding has properties 1 and 2 [172].) The case ki=0 is relevant because it applies to the least-transport model of temperate ice in which there is zero enthalpy conduction. (One reasonable model for temperate ice is to assume no transport of the liquid fraction, whether diffusive transport or otherwise, and to ignore conduction along the temperature gradient, because the gradient is only from pressure-melting temperature differences.)

Proof of 1

In the case considered for the maximum principle, with Φkn=0, we can rewrite (89) as

(93)(1+2R+νwkn(1λ){+11})Ekn+1=Ekn+(R+νwkn{1λ/2λ/2})Ek1n+1+(Rνwkn{λ/21λ/2})Ek+1n+1.

We claim that with choice (92) for 0λ1, all coefficients in (93) are nonnegative. At one extreme, in the upwinding case (λ=0), all the coefficients are nonnegative. Otherwise, note that νwkn(1λ){+11} is nonnegative for any valid value of λ and for any value of wkn, noting the meaning of the {+11} symbol. Thus the coefficient on the left is always nonnegative. The coefficient of Ek1n+1 is clearly nonnegative for any valid value of λ if wkn0. The coefficient of Ek+1n+1 is clearly nonnegative for any valid value of λ if wkn0.

Therefore the only concerns are for the coefficient of Ek1n+1 when wkn0 and the coefficient of Ek+1n+1 when wkn0. But if λ is smaller than 2ki/(|wkn|ρiciΔz) then

Rν|wkn|(λ/2)=kiΔtρiciΔz2Δt|wkn|Δzλ2kiΔtρiciΔz2Δt|wkn|Δzki|wkn|ρiciΔz=0.

Thus all the coefficients in (93) are nonnegative. On the other hand, in equation (93), all coefficients on the right side sum to

1+2R+νwkn{1λ1+λ}=1+2R+νwkn(1λ){+11},

which is exactly the coefficient on the left side of (93). It follows that

Ekn+1=akEkn+bkEk1n+1+ckEk+1n+1

where ak,bk,ck are positive and ak+bk+ck=1. Thus a maximum principle applies [74]. END OF PROOF OF 1.

Proof of 2

As a von Neumann analysis is much more restrictive than the analysis above, we will be brief. Let’s assume the velocity is downward, w0<0; the other case is similar. Equation (89) becomes

(94)(Rνw0(λ/2))Ek1n+1+(1+2Rνw0(1λ))Ekn+1+(R+νw0(1λ/2))Ek+1n+1=Ekn.

The heart of the von Neumann analysis is the substitution of a growing or decaying (in time index n) oscillatory mode on the grid of spatial wave number μ:

Ekn=σneiμ(kΔz).

Here kΔz=zk is a grid point. Such a mode is a solution to (94) if and only if

σ[(Rνw0(λ/2))eiμΔz+(1+2Rνw0(1λ))+(R+νw0(λ/2))e+iμΔz+νw0(1λ)e+iμΔz]=1.

This equation reduces by standard manipulations to

σ=11+(4R2νw0(1λ))cos2(μΔz/2)+iνw0(1λ/2)sin(μΔz).

Note 4R2νw0(1λ)0 without restrictions on numerical parameters Δt, Δz, because w0<0 in the case under consideration. Therefore

|σ|2=1[1+(4R2νw0(1λ))cos2(μΔz/2)]2+[νw0(1λ/2)sin(μΔz)]2.

This positive number is less than one, so |σ|<1. It follows that all modes decay exponentially. END OF PROOF OF 2.

Remark about our von Neumann stability analysis

The constant λ is carefully chosen in (92) so that the maximum principle 1 applies. On the other hand, both the implicit first-order upwind and the implicit centered difference formulas have unconditional stability in the von Neumann sense. The proof of case 2 above is thus a formality, merely showing that a convex combination of unconditionally stable (von Neumann sense) schemes is still unconditionally stable in the same sense.

Convergence: a consequence of the maximum principle

If we define the pointwise numerical error ekn=EknE(tn,xi,yj,zk), where E() is the unknown exact solution (exact enthalpy field) [74], then (93) implies an equality of the form

Aekn+1=ekn+Bek1n+1+B+ek+1n+1+Δtτkn

where τkn is the truncation error of the scheme and A,B± are nonnegative coefficients, which need no detail for now other than to note that 1+B+B+=A. Letting e¯n=maxk|ekn| we have, because of the positivity of coefficients,

(95)A|ekn+1|e¯n+(B+B+)e¯n+1+Δtτ¯n

for all k, where τ¯n=maxk|τkn|. Now let k be the index for which |ekn+1|=e¯n+1. For that k we can replace |ekn+1| in equation (95) with e¯n+1. Subtracting the same quantity from each side of the resulting inequality gives

e¯n+1e¯n+Δtτ¯n,

It follows that e¯nCΔt, for some finite C, if e¯0=0 [74]. Thus a maximum principle for BOMBPROOF implies convergence in the standard way [74]. This convergence proof has the same assumptions as case 1 in the theorem, and thus it only suggests convergence in any broad range of glaciologically-interesting cases.

Remark on nonzero source term

Now recall we assumed in Theorem 1 that the entire “source” Φkn was identically zero. Of course this is not realistic. What we understand is provable, however, is that if a numerical scheme for a linear advection/conduction equation

ut+Aux=Buxx

is stable in the general sense of numerical schemes for partial differential equations (e.g. as defined in subsection 5.5 of [74]) then the same scheme is stable in the same general sense when applied to the equation with (linear) lower order terms:

ut+Aux=Buxx+Cu+D.

A precise statement of this general fact is hard to find in the literature, to put it mildly, but theorem 2.2.3 of [172] is one interesting case (B=0 and D=0). But even the form we state with linear term (Cu+D) is not adequate to the job because of the strongly-nonlinear dependence of Φ on the temperature T [16].

Nonetheless the maximum principle is a highly-desirable form of stability because we can exclude “wiggles” from the finite difference approximations of the conductive and advective terms, even if the complete physics, with strain heating in particular, is not yet shown to be non-explosive. Because the complete physics includes the appearance of the famous “spokes” of EISMINT II, for example, a maximum principle cannot apply too literally. Indeed there is an underlying fluid instability [16], one that means the solution of the continuum equations can include growing “wiggles” which are fluid features (though not at the grid-based spatial frequency of the usual numerical wiggles). Recall that, because we use first-order upwinding on the horizontal advection terms, we can expect maximum principle-type stability behavior of the whole three-dimensional scheme.

Temperate basal boundary condition, and computing the basal melt rate

At the bottom of grounded ice, a certain amount of heat comes out of the earth and either enters the ice through conduction or melts the base of the ice. On the one hand, see the documentation for BedThermalUnit for the model of how much comes out of the earth. On the other hand, [22] includes a careful analysis of the subglacial layer equation and the corresponding boundary conditions and basal melt rate calculation, and the reader should consult that reference.

Regarding the floating case

The shelf base temperature Tsb and the melt rate M are supplied by OceanModel. Note that we make the possibly-peculiar physical choice that the shelf base temperature is used as the temperature at the top of the bedrock, which is actually the bottom of the ocean. This choice means that there should be no abrupt changes in top-of-bedrock heat flux as the grounding line moves. This choice also means that the conservation of energy code does not need to know about the bedrock topography or the elevation of sea level. (In the future OceanModel could have a subshelf_bed_temperature() method.)


Previous Up Next