Ice Sheet System Model  4.18
Code documentation
LliboutryDuval.cpp
Go to the documentation of this file.
1 /* \file LliboutryDuval.cpp
2  * \brief figure out B of ice for a certain temperature and water fraction or enthalpy
3  */
4 
5 #include <math.h>
6 #include "../Numerics/types.h"
7 #include "../Exceptions/exceptions.h"
8 
9 /* get ice stiffness B from enthalpy, pressure and flow law exponent*/
10 IssmDouble LliboutryDuval(IssmDouble enthalpy, IssmDouble pressure, IssmDouble n, IssmDouble betaCC, IssmDouble referencetemperature, IssmDouble heatcapacity, IssmDouble latentheat){
11  /*Use Lliboutry & Duval's 1985 parameterization for the rheology:
12  * see also: Grewe/Blatter 2009, Aschwanden et al. 2012
13  *
14  * ISSM uses enthalpy/temperature values that are not corrected for pressure.
15  *
16  * A(H,p) = A0 exp(-Q/RT(H,p)), if H < H_s(p)
17  * = A0 exp(-Q/RTpmp) (1+181.25w(H,p)), if H_s(p) \le H < H_l(p)
18  *
19  * T(H,p) = Tref + H/c_i, if H < H_s(p)
20  * = Tpmp , if H_s(p) \le H \le H_l(p)
21  *
22  * w(H,p) = 0, if H < H_s(p)
23  * = (H - H_s(p))/L
24  *
25  * H_s(p) = c_i (Tpmp - Tref)
26  *
27  * Tpmp = T - betaCC p;
28  *
29  * A0 constant of proportionality
30  * = 3.61 * 10^-13 if T*<263.15K
31  * = 1.73 * 10^3 if T*>263.15K
32  * Q Activation energy for creep
33  * = 6.0 * 10^4 if T*<263.15K
34  * = 13.9 * 10^4 if T*>263.15K
35  * R Universal gas constant
36  * = 8.314
37  *
38  * Convert A to B : B = A^(-1/n) */
39  /*check feasibility*/
40  _assert_(pressure+1.e-4>=0); // deal with pressure instability at ice surface
41  _assert_(n>0);
42  _assert_(betaCC>=0);
43  _assert_(referencetemperature>=0);
44  _assert_(heatcapacity>0);
45  _assert_(latentheat>0);
46 
47  /*Some physical constants*/
48  IssmDouble R=8.314;
49 
50  /*Intermediaries*/
51  IssmDouble A,B,Tstar,Tpmp,H_sp,waterfraction;
52 
53  Tpmp=273.15-betaCC*pressure; //pressure melting point temperature
54  H_sp=heatcapacity*(Tpmp-referencetemperature); //pressure melting point enthalpy
55  if (enthalpy<H_sp){ //compute homologous temperature and water fraction
56  Tstar=referencetemperature+enthalpy/heatcapacity+betaCC*pressure;
57  waterfraction=0.;
58  }
59  else{
60  Tstar=273.15;
61  waterfraction=(enthalpy-H_sp)/latentheat;
62  if (waterfraction>0.01) waterfraction=0.01; // limit softness of ice
63  }
64 
65  /*Get A*/
66  if(Tstar<=263.15){A=3.61e-13*exp(-6.e+4/(R*Tstar));}
67  else{A=1.73e3*exp(-13.9e+4/(R*Tstar));}
68  A*=(1.+181.25*waterfraction);
69 
70  /*Convert to B*/
71  B=pow(A,-1./n);
72  return B;
73 }
_assert_
#define _assert_(ignore)
Definition: exceptions.h:37
IssmDouble
double IssmDouble
Definition: types.h:37
LliboutryDuval
IssmDouble LliboutryDuval(IssmDouble enthalpy, IssmDouble pressure, IssmDouble n, IssmDouble betaCC, IssmDouble referencetemperature, IssmDouble heatcapacity, IssmDouble latentheat)
Definition: LliboutryDuval.cpp:10
R
const double R
Definition: Gembx.cpp:30