Snow processes

For each cell, a dynamic snow storage is simulated at a daily time step, adopted from the model presented by Kokkonen et al. (2006). The model keeps track of a snow storage, which is fed by precipitation and generates runoff from snowmelt. Refreezing of snowmelt and rainfall within the snowpack are simulated as well.

Snow and rainfall

Depending on a temperature threshold, precipitation is defined as falling in either solid or liquid form. Daily snow accumulation, which is defined as solid precipitation, is calculated as:

Equation 13

Ps,t={Petif  Tavg,tTcrit0if  Tavg,t>TcritP_{s,t} = \begin{cases} Pe_{t} &\text{if } \space T_{avg,t} \le T_{crit} \\ 0 &\text{if } \space T_{avg,t}>T_{crit} \end{cases}

with Ps,t(mm)P_{s,t} (mm) the snowfall on day tt, Pet(mm)Pe_{t} (mm)the effective precipitation on day tt, Tavg,t(°C)T_{avg,t} (\degree C) the mean air temperature on day tt, and Tcrit(°C)T_{crit} (\degree C) a calibrated temperature threshold for precipitation to fall as snow. The precipitation that falls as rain is defined as liquid precipitation, and is calculated as:

Equation 14

Pl,t={Petif Tavg,t>Tcrit0if Tavg,tTcritP_{l,t} = \begin{cases} Pe_{t} &\text{if } T_{avg,t}>T_{crit} \\ 0 &\text{if } T_{avg,t} \le T_{crit} \end{cases}

with Pl,t(mm)P_{l,t} (mm) being the amount of rainfall on day tt.

Snowmelt, refreezing, and storage

To simulate snowmelt, the well-established and widely used degree-day melt modeling approach is used (Hock 2003). The application of degree-day models is widespread in cryospheric models and is based on an empirical relationship between melt and air temperature. Degree-day models are easier to set up compared to energy-balance models, and only require air temperature, which is mostly available and relatively easy to interpolate (Hock 2005). Using a degree-day modeling approach, the daily potential snowmelt is calculated as follows:

Equation 15

Apot,t={Tavg,tDDFsif Tavg,t>00if Tavg,t0A_{pot,t} = \begin{cases} T_{avg,t}*DDF_{s} &\text{if } T_{avg,t} >0\\ 0 &\text{if } T_{avg,t} \le 0 \end{cases}

with Apot,t(mm)A_{pot,t} (mm) the potential snowmelt on day tt, andDDFs(mm°C1d1)DDF_s (mm \degree C^{-1}d^{-1}) a calibrated degree-day factor for snow. The actual snowmelt is limited by the snow storage at the end of the previous day, and is calculated as:

Equation 16

Aact,t=min(Apot,t,SSt1)A_{act,t} = min(A_{pot,t},SS_{t-1})

with Aact,t(mm)A_{act,t} (mm) the actual snowmelt on day tt, and SSt1(mm)SS_{t-1} (mm) the snow storage on day t1t-1. The snow storage from dayt1t-1is then updated to the current day tt , using the actual snowmelt (Aact,t)(A_{act,t}) and the solid precipitation (Ps,t)(P_{s,t}). Part of the actual snowmelt freezes within the snowpack and thus does not run off immediately. When temperature is below the melting point, meltwater that has frozen in the snowpack during t1t-1 is added to the snow storage as:

Equation 17

SSt={SSt1+Ps,t+SSWt1if Tavg,t<0SSt1+Ps,tAact,tif Tavg,t0SS_t = \begin{cases} SS_{t-1}+P_{s,t}+SSW_{t-1} &\text{if } T_{avg,t}<0 \\ SS_{t-1}+P_{s,t}-A_{act,t} &\text{if } T_{avg,t} \ge 0 \end{cases}

with SStSS_{t} the snow storage on day tt, SSt1SS_{t-1} the snow storage on day t1t-1,Ps,tP_{s,t} the solid precipitation on day tt, Aact,tA_{act,t} the actual snowmelt on day tt, and SSWt1SSW_{t-1} the amount of frozen meltwater on day t1t-1. The units for all terms are mm.

The capacity of the snowpack to freeze snowmelt is characterized by introducing a calibrated water storage capacity(SSC(mmmm1))(SSC (mm \cdot mm^{-1})), which is the total water equivalent of snowmelt (mm) that can freeze per mm water equivalent of snow in the snow storage. The maximum of meltwater that can freeze(SSWmax(mm))(SSW_{max}(mm)) is thus limited by the thickness of the snow storage:

Equation 18

SSWmax,t=SSCSStSSW_{max,t}=SSC*SS_t

Then the amount of meltwater stored in the snowpack, and that can freeze in the next time step, is calculated as:

Equation 19

SSWt={0if Tavg,t<0min(SSWmax,t,SSWt1+Pl,t+Aact,t),if Tavg,t0SSW_{t} = \begin{cases} 0 &\text{if } T_{avg,t} < 0\\ min(SSW_{max,t},SSW_{t-1}+P_{l,t}+A_{act,t}), &\text{if } T_{avg,t} \ge 0 \end{cases}

with SSWtSSW_t the amount of meltwater in the snowpack on day tt, SSWmax,tSSW_{max,t} the maximum of meltwater that can freeze on day t1t-1, SSWt1SSW_{t-1} the amount of frozen meltwater on day t1t-1, Pl,tP_{l,t} the amount of rainfall on day tt, and Aact,tA_{act,t} the actual snowmelt on day tt. The units of all terms are in mm.

The total snow storage (SST (mm)) consists of the snow storage and the meltwater that can freeze within it, according to:

Equation 20

SSTt=(SSt+SSWt)(1GlacF)SST_t =(SS_t +SSW_t)*(1-GlacF)

with (1 – GlacF) (–) the grid-cell fraction not covered with glaciers. In SPHY it is therefore assumed that snow accumulation and snowmelt can only occur on the grid-cell fraction determined as land surface. Snow falling on glaciers is incorporated in the glacier module.

Snow runoff

Runoff from snow (SRo (mm)) is generated when the air temperature is above melting point and no more meltwater can be frozen within the snowpack, according to:

Equation 21

SRot={Aact,t+Pl,tΔSSWif Tavg,t>00if Tavg,t0SRo_t = \begin{cases} A_{act,t}+P_{l,t} - \Delta SSW&\text{if } T_{avg,t} > 0\\ 0 &\text{if } T_{avg,t}\le 0 \end{cases}

with ΔSSW(mm)\Delta SSW (mm) the change in meltwater stored in the snowpack according to:

Equation 22

ΔSSW=SSWtSSWt1\Delta SSW=SSW_t-SSW_{t-1}

Last updated