Three-equation ocean model (implementation details)

This model is based on [167] and [151].

We use equations for the heat and salt flux balance at the base of the shelf to compute the temperature at the base of the shelf and the sub-shelf melt rate.

Following [167], let QT be the total heat flux crossing the interface between the shelf base and the ocean, QTB be the amount of heat lost by the ocean due to melting of glacial ice, and QTI be the conductive flux into the ice column.

QT is parameterized by (see [167], equation 10):

QT=ρWcpWγT(TBTW),

where ρW is the sea water density, cpW is the heat capacity of sea water, and γT is a turbulent heat exchange coefficient.

We assume that the difference between the basal temperature and adjacent ocean temperature TBTW is well approximated by ΘBΘW, where Θ is the corresponding potential temperature.

QTB is (see [167], equation 11):

QTB=ρILht,

where ρI is the ice density, L is the latent heat of fusion, and h/t is the ice thickening rate (equal to minus the melt rate).

The conductive flux into the ice column is ([165], equation 7):

QTI=ρIcpIκTgrad,

where ρI is the ice density, cpI is the heat capacity of ice, κ is the ice thermal diffusivity, and Tgrad is the vertical temperature gradient at the base of a column of ice.

Now, the heat flux balance implies

QT=QTB+QTI.

For the salt flux balance, we have

QS=QSB+QSI,

where QS is the total salt flux across the interface, QSB is the basal salt flux (negative for melting), QSI=0 is the salt flux due to molecular diffusion of salt through ice.

QS is parameterized by ([165], equation 13)

QS=ρWγS(SBSW),

where γS is a turbulent salt exchange coefficient, SB is salinity at the shelf base, and SW is the salinity of adjacent ocean.

The basal salt flux QSB is ([165], equation 10)

QSB=ρISBht.

To avoid converting shelf base temperature to shelf base potential temperature and back, we use two linearizations of the freezing point equation for sea water for in-situ and for potential temperature, respectively:

TB(S,h)=a0S+a1+a2h,ΘB(S,h)=b0S+b1+b2h,

where S is salinity and h is ice shelf thickness.

Note

The linearized equation for the freezing point of seawater as a function of salinity and pressure (ice thickness) is only valid for salinity ranges from 4 to 40 psu (see [151]).

The linearization coefficients for the basal temperature TB(S,h) are taken from [165], going back to [173].

Given TB(S,h) and a function ΘTB(T) one can define ΘB(S,h)=ΘTB(TB(S,h)).

The parameterization ΘB(S,h) used here was produced by linearizing ΘB(S,h) near the melting point. (The definition of ΘTB(T), converting in situ temperature into potential temperature, was adopted from FESOM [174]).

Treating ice thickness, sea water salinity, and sea water potential temperature as “known” and choosing an approximation of the temperature gradient at the base Tgrad (see below) we can write down a system of equations

QT=QTB+QTI,QS=QSB+QSI,TB(S,h)=a0S+a1+a2h,ΘB(S,h)=b0S+b1+b2h

and simplify it to produce a quadratic equation for the salinity at the shelf base, SB:

A(SB)2+BSB+C=0.

The coefficients A, B, and C depend on the basal temperature gradient approximation for the sub-shelf melt, sub-shelf freeze-on, and diffusion-only cases.

  • Melt at the base:

    Tgrad=ΔTh/tκ.

    See equation 13 in [165].

  • Freeze on at the base: we assume that

    Tgrad=0.
  • No melt and no freeze on:

    Tgrad=ΔTh.

    See [151], equation 21.

One remaining problem is that we cannot compute the basal melt rate without making an assumption about whether there is basal melt or not, and cannot pick one of the three cases without computing the basal melt rate first.

Our implementation tries to compute basal salinity that is consistent with the corresponding basal melt rate. See the code for details.

Once SB is found by solving this quadratic equation, we can compute the basal temperature using the parameterization for TB(S,h).

To find the basal melt rate, we solve the salt flux balance equation for ht, obtaining

wb=ht=γSρW(SWSB)ρISB.

See Basal melt rate and temperature from thermodynamics in boundary layer for the user’s documentation of this model.


Previous Up Next