Ignore:
Timestamp:
06/11/18 13:42:55 (7 years ago)
Author:
schlegel
Message:

CHG: add RACMO versions to GEMB and allow dakota to run without waitonlock

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/modules/SurfaceMassBalancex/Gembx.cpp

    r22747 r22840  
    2424const double LS = 2.8295E6;             // latent heat of sublimation (J kg-1)
    2525const 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)
     26const double CA = 1005.0;                    // heat capacity of air (J kg-1 K-1)
     27const double R = 8.314;                      // gas constant (J mol-1 K-1)
    2828
    2929void Gembx(FemModel* femmodel){  /*{{{*/
     
    18541854        IssmDouble c1=0.0;
    18551855        IssmDouble H=0.0;
     1856        IssmDouble M0=0.0;
     1857        IssmDouble M1=0.0;
     1858        IssmDouble c0arth=0.0;
     1859        IssmDouble c1arth=0.0;
    18561860
    18571861        /*output: */
     
    18851889                switch (denIdx){
    18861890                        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);
    18891893                                break;
     1894
    18901895                        case 2: // Arthern et al. (2010) [semi-emperical]
    18911896                                // common variable
    18921897                                // 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);
    18941899                                c0 = 0.07 * H;
    18951900                                c1 = 0.03 * H;
     
    18991904
    19001905                                // 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);
    19021907                                c0 = 9.2e-9 * H;
    19031908                                c1 = 3.7e-9 * H;
     
    19131918                                c0 = (C/dIce) * (76.138 - 0.28965*Tmean)*8.36*pow(CtoK - T[i],-2.061);
    19141919                                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;
    19151942                                break;
    19161943                }
Note: See TracChangeset for help on using the changeset viewer.