Ice Sheet System Model  4.18
Code documentation
StressIntensityIntegralWeight.cpp
Go to the documentation of this file.
1 /* \file StressIntensityIntegralWeight.cpp
2  * \Weight to integrate the stress along the ice flow direction to compute the stress intensity factor : Linear Fracture Mechanics (see "Combining damage and fracture mechanics to model calving",Krug 2014 in the appendix)
3  */
4 
5 #include <math.h>
6 
7 #include "../Numerics/types.h"
8 
10 
11  /*output: */
12  IssmDouble beta;
13 
14  /*intermediaries: */
15  IssmDouble M1,M2,M3,x,y,d;
16  const double pi = 3.141592653589793;
17  x = water_depth/thickness;
18  y = depth;
19  d = water_depth;
20 
21  M1 = 0.0719768-1.513476*x-61.1001*pow(x,2)+1554.95*pow(x,3)-14583.8*pow(x,4)+71590.7*pow(x,5)-205384*pow(x,6)+356469*pow(x,7)-368270*pow(x,8)+208233*pow(x,9)-49544*pow(x,10);
22  //printf("M1 : %g",M1);
23  M2 = 0.246984+6.47583*x+176.456*pow(x,2)-4058.76*pow(x,3)+37303.8*pow(x,4)-181755*pow(x,5)+520551*pow(x,6)-904370*pow(x,7)+936863*pow(x,8)-531940*pow(x,9)+127291*pow(x,10);
24  //printf("M2 : %g",M2);
25  M3 = 0.529659-22.3235*x+532.074*pow(x,2)-5479.53*pow(x,3)+28592.2*pow(x,4)-81388.6*pow(x,5)+128746*pow(x,6)-106246*pow(x,7)+35780.7*pow(x,8);
26  //printf("M3 : %g",M3);
27 
28  beta = 2/sqrt(2*pi*(d-y))*(1+M1*sqrt(1-y/d)+M2*(1-y/d)+M3*pow((1-y/d),1.5));
29 
30  return beta;
31 }
IssmDouble
double IssmDouble
Definition: types.h:37
StressIntensityIntegralWeight
IssmDouble StressIntensityIntegralWeight(IssmDouble depth, IssmDouble water_depth, IssmDouble thickness)
Definition: StressIntensityIntegralWeight.cpp:9