Changeset 22840


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

Location:
issm/trunk-jpl/src
Files:
5 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                }
  • issm/trunk-jpl/src/m/classes/SMBgemb.m

    r22482 r22840  
    6565                denIdx = NaN; %densification model to use (default is 2):
    6666                                        % 1 = emperical model of Herron and Langway (1980)
    67                                         % 2 = semi-emerical model of Anthern et al. (2010)
     67                                        % 2 = semi-emperical model of Anthern et al. (2010)
    6868                                        % 3 = DO NOT USE: physical model from Appendix B of Anthern et al. (2010)
    6969                                        % 4 = DO NOT USE: emperical model of Li and Zwally (2004)
    7070                                        % 5 = DO NOT USE: modified emperical model (4) by Helsen et al. (2008)
     71                                        % 6 = Antarctica semi-emperical model of Ligtenberg et al. (2011)
     72                                        % 7 = Greenland semi-emperical model of Kuipers Munneke et al. (2015)
    7173
    7274                zTop  = NaN; % depth over which grid length is constant at the top of the snopack (default 10) [m]
     
    217219                        md = checkfield(md,'fieldname','smb.aIdx','NaN',1,'Inf',1,'values',[0,1,2,3,4]);
    218220                        md = checkfield(md,'fieldname','smb.swIdx','NaN',1,'Inf',1,'values',[0,1]);
    219                         md = checkfield(md,'fieldname','smb.denIdx','NaN',1,'Inf',1,'values',[1,2,3,4,5]);
     221                        md = checkfield(md,'fieldname','smb.denIdx','NaN',1,'Inf',1,'values',[1,2,3,4,5,6,7]);
    220222
    221223                        md = checkfield(md,'fieldname','smb.zTop','NaN',1,'Inf',1,'>=',0);
     
    323325                        fielddisplay(self,'denIdx',{'densification model to use (default is 2):',...
    324326                                                                        '1 = emperical model of Herron and Langway (1980)',...
    325                                                                         '2 = semi-emerical model of Anthern et al. (2010)',...
     327                                                                        '2 = semi-emperical model of Anthern et al. (2010)',...
    326328                                                                        '3 = DO NOT USE: physical model from Appendix B of Anthern et al. (2010)',...
    327329                                                                        '4 = DO NOT USE: emperical model of Li and Zwally (2004)',...
    328                                                                         '5 = DO NOT USE: modified emperical model (4) by Helsen et al. (2008)'});
     330                                                                        '5 = DO NOT USE: modified emperical model (4) by Helsen et al. (2008)',...
     331                                                                        '6 = Antarctica semi-emperical model of Ligtenberg et al. (2011)',...
     332                                                                        '7 = Greenland semi-emperical model of Kuipers Munneke et al. (2015)'});
    329333                        fielddisplay(self,'requested_outputs','additional outputs requested');
    330334                                                                       
  • issm/trunk-jpl/src/m/classes/SMBgemb.py

    r22482 r22840  
    7272                denIdx = float('NaN')   #densification model to use (default is 2):
    7373                                        # 1 = emperical model of Herron and Langway (1980)
    74                                         # 2 = semi-emerical model of Anthern et al. (2010)
     74                                        # 2 = semi-emperical model of Anthern et al. (2010)
    7575                                        # 3 = DO NOT USE: physical model from Appix B of Anthern et al. (2010)
    7676                                        # 4 = DO NOT USE: emperical model of Li and Zwally (2004)
    7777                                        # 5 = DO NOT USE: modified emperical model (4) by Helsen et al. (2008)
     78                                        # 6 = Antarctica semi-emperical model of Ligtenberg et al. (2011)
     79                                        # 7 = Greenland semi-emperical model of Kuipers Munneke et al. (2015)
    7880
    7981                zTop  = float('NaN')    # depth over which grid length is constant at the top of the snopack (default 10) [m]
     
    188190                string = "%s\n%s"%(string,fielddisplay(self,'denIdx',['densification model to use (default is 2):',
    189191                                                '1 = emperical model of Herron and Langway (1980)',
    190                                                 '2 = semi-emerical model of Anthern et al. (2010)',
     192                                                '2 = semi-emperical model of Anthern et al. (2010)',
    191193                                                '3 = DO NOT USE: physical model from Appix B of Anthern et al. (2010)',
    192194                                                '4 = DO NOT USE: emperical model of Li and Zwally (2004)',
    193                                                 '5 = DO NOT USE: modified emperical model (4) by Helsen et al. (2008)']))
     195                                                '5 = DO NOT USE: modified emperical model (4) by Helsen et al. (2008)',
     196                                                '6 = Antarctica semi-emperical model of Ligtenberg et al. (2011)',
     197                                                '7 = Greenland semi-emperical model of Kuipers Munneke et al. (2015)']))
    194198                string = "%s\n%s"%(string,fielddisplay(self,'requested_outputs','additional outputs requested'))
    195199                return string
     
    294298                md = checkfield(md,'fieldname','smb.aIdx','NaN',1,'Inf',1,'values',[0,1,2,3,4])
    295299                md = checkfield(md,'fieldname','smb.swIdx','NaN',1,'Inf',1,'values',[0,1])
    296                 md = checkfield(md,'fieldname','smb.denIdx','NaN',1,'Inf',1,'values',[1,2,3,4,5])
     300                md = checkfield(md,'fieldname','smb.denIdx','NaN',1,'Inf',1,'values',[1,2,3,4,5,6,7])
    297301
    298302                md = checkfield(md,'fieldname','smb.zTop','NaN',1,'Inf',1,'> = ',0)
  • issm/trunk-jpl/src/m/classes/qmu.m

    r22069 r22840  
    7676                        end
    7777
    78                         if ~strcmpi(md.cluster.name,'none'),
    79                                 if md.settings.waitonlock==0,
    80                                         md = checkmessage(md,['waitonlock should be activated when running qmu in parallel mode!']);
    81                                 end
    82                         end
    8378                end % }}}
    8479                function disp(self) % {{{
  • issm/trunk-jpl/src/m/classes/qmu.py

    r21303 r22840  
    127127                                md.checkmessage("for qmu analysis, partitioning vector cannot go over npart, number of partition areas")
    128128
    129                 if md.cluster.name!='none':
    130                         if not md.settings.waitonlock:
    131                                 md.checkmessage("waitonlock should be activated when running qmu in parallel mode!")
    132 
    133129                return md
    134130        # }}}
Note: See TracChangeset for help on using the changeset viewer.