Ice Sheet System Model  4.18
Code documentation
Functions
StressIntensityIntegralWeight.cpp File Reference
#include <math.h>
#include "../Numerics/types.h"

Go to the source code of this file.

Functions

IssmDouble StressIntensityIntegralWeight (IssmDouble depth, IssmDouble water_depth, IssmDouble thickness)
 

Function Documentation

◆ StressIntensityIntegralWeight()

IssmDouble StressIntensityIntegralWeight ( IssmDouble  depth,
IssmDouble  water_depth,
IssmDouble  thickness 
)

Definition at line 9 of file StressIntensityIntegralWeight.cpp.

9  {
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