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
where
We assume that the difference between the basal temperature and adjacent ocean temperature
where
The conductive flux into the ice column is ([165], equation 7):
where
Now, the heat flux balance implies
For the salt flux balance, we have
where
where
The basal salt flux
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:
where
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
Given
The parameterization
Treating ice thickness, sea water salinity, and sea water potential temperature as “known”
and choosing an approximation of the temperature gradient at the base
and simplify it to produce a quadratic equation for the salinity at the shelf base,
The coefficients
Melt at the base:
See equation 13 in [165].
Freeze on at the base: we assume that
No melt and no freeze on:
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
To find the basal melt rate, we solve the salt flux balance equation for
See Basal melt rate and temperature from thermodynamics in boundary layer for the user’s documentation of this model.
Previous | Up | Next |