- Timestamp:
- 06/11/18 13:42:55 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/modules/SurfaceMassBalancex/Gembx.cpp
r22747 r22840 24 24 const double LS = 2.8295E6; // latent heat of sublimation (J kg-1) 25 25 const double SB = 5.67E-8; // Stefan-Boltzmann constant (W m-2 K-4) 26 const double CA = 1005.0; // heat capacity of air (J kg-1 k-1)27 const double R = 8.314; // gas constant ( mol-1 K-1)26 const double CA = 1005.0; // heat capacity of air (J kg-1 K-1) 27 const double R = 8.314; // gas constant (J mol-1 K-1) 28 28 29 29 void Gembx(FemModel* femmodel){ /*{{{*/ … … 1854 1854 IssmDouble c1=0.0; 1855 1855 IssmDouble H=0.0; 1856 IssmDouble M0=0.0; 1857 IssmDouble M1=0.0; 1858 IssmDouble c0arth=0.0; 1859 IssmDouble c1arth=0.0; 1856 1860 1857 1861 /*output: */ … … 1885 1889 switch (denIdx){ 1886 1890 case 1: // Herron and Langway (1980) 1887 c0 = (11.0 * exp(-10160.0 / (T[i] * 8.314))) * C/1000.0;1888 c1 = (575.0 * exp(-21400.0 / (T[i]* 8.314))) * pow(C/1000.0,.5);1891 c0 = (11.0 * exp(-10160.0 / (T[i] * R))) * C/1000.0; 1892 c1 = (575.0 * exp(-21400.0 / (T[i]* R))) * pow(C/1000.0,.5); 1889 1893 break; 1894 1890 1895 case 2: // Arthern et al. (2010) [semi-emperical] 1891 1896 // common variable 1892 1897 // NOTE: Ec=60000, Eg=42400 (i.e. should be in J not kJ) 1893 H = exp((-60000.0/(T[i] * 8.314)) + (42400.0/(Tmean * 8.314))) * (C * 9.81);1898 H = exp((-60000.0/(T[i] * R)) + (42400.0/(Tmean * R))) * (C * 9.81); 1894 1899 c0 = 0.07 * H; 1895 1900 c1 = 0.03 * H; … … 1899 1904 1900 1905 // common variable 1901 H = exp((-60 .0/(T[i] * 8.314))) * obp[i] / pow(re[i]/1000.0,2.0);1906 H = exp((-60000.0/(T[i] * R))) * obp[i] / pow(re[i]/1000.0,2.0); 1902 1907 c0 = 9.2e-9 * H; 1903 1908 c1 = 3.7e-9 * H; … … 1913 1918 c0 = (C/dIce) * (76.138 - 0.28965*Tmean)*8.36*pow(CtoK - T[i],-2.061); 1914 1919 c1 = c0; 1920 break; 1921 1922 case 6: // Ligtenberg and others (2011) [semi-emperical], Antarctica 1923 // common variable 1924 H = exp((-60000.0/(Tmean * R)) + (42400.0/(Tmean * R))) * (C * 9.81); 1925 c0arth = 0.07 * H; 1926 c1arth = 0.03 * H; 1927 M0 = fmax(1.435 - (0.151 * log(C)),0.25); 1928 M1 = fmax(2.366 - (0.293 * log(C)),0.25); 1929 c0 = M0*c0arth; 1930 c1 = M1*c1arth; 1931 break; 1932 1933 case 7: // Kuipers Munneke and others (2015) [semi-emperical], Greenland 1934 // common variable 1935 H = exp((-60000.0/(T[i] * R)) + (42400.0/(T[i] * R))) * (C * 9.81); 1936 c0arth = 0.07 * H; 1937 c1arth = 0.03 * H; 1938 M0 = fmax(1.042 - (0.0916 * log(C)),0.25); 1939 M1 = fmax(1.734 - (0.2039 * log(C)),0.25); 1940 c0 = M0*c0arth; 1941 c1 = M1*c1arth; 1915 1942 break; 1916 1943 }
Note:
See TracChangeset
for help on using the changeset viewer.