Changeset 27682


Ignore:
Timestamp:
04/05/23 12:57:00 (2 years ago)
Author:
schlegel
Message:

CHG: update GEMB descriptions for some inputs

Location:
issm/trunk-jpl/src/m/classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/SMBgemb.m

    r27448 r27682  
    122122                %or else apply direct input value from aValue, allowing albedo to be altered.
    123123                %Default value is rho water (1023 kg m-3).
    124                 teThresh = NaN; %Apply eIdx method to all areas with grain radii below this value,
     124                teThresh = NaN; %Apply eIdx method to all areas with grain radii above this value (mm),
    125125                %or else apply direct input value from teValue, allowing emissivity to be altered.
    126126                %Default value is a effective grain radius of 10 mm.
     
    200200                        fielddisplay(self,'dulwrfValue','Specified bias to be applied to the outward long wave radiation every element (W/m-2, +upward)');
    201201                        fielddisplay(self,'teValue','Outward longwave radiation thermal emissivity forcing at every element (default in code is 1)');
    202                         fielddisplay(self,'teThresh',{'Apply eIdx method to all areas with effective grain radius below this value,','or else apply direct input value from teValue, allowing emissivity to be altered.'});
     202                        fielddisplay(self,'teThresh',{'Apply eIdx method to all areas with effective grain radius above this value (mm),','or else apply direct input value from teValue, allowing emissivity to be altered.'});
    203203                        fielddisplay(self,'eIdx',{'method for calculating emissivity (default is 1)',...
    204204                                '0: direct input from teValue parameter, no use of teThresh',...
     
    233233                                                fielddisplay(self,'cotValue','Cloud Optical Thickness');
    234234                                                fielddisplay(self,'ccsnowValue','concentration of light absorbing carbon for snow [ppm1]');
    235                                                 fielddisplay(self,'cciceValue','concentration of light absorbing carbon for snow [ppm1]');
     235                                                fielddisplay(self,'cciceValue','concentration of light absorbing carbon for ice [ppm1]');
    236236                                        end
    237237                                case 3
  • issm/trunk-jpl/src/m/classes/SMBgemb.py

    r27458 r27682  
    129129        # or else apply direct input value from aValue, allowing albedo to be altered.
    130130        # Default value is rho water (1023 kg m-3).
    131         teThresh                    = np.nan    #Apply eIdx method to all areas with grain radii below this value,
     131        teThresh                    = np.nan    #Apply eIdx method to all areas with grain radii above this value (mm),
    132132        #or else apply direct input value from teValue, allowing emissivity to be altered.
    133133        #Default value is a effective grain radius of 10 mm.
     
    205205        s += '{}\n'.format(fielddisplay(self, 'dulwrfValue', 'Specified bias to be applied to the outward long wave radiation every element (W/m-2, +upward)'))
    206206        s += '{}\n'.format(fielddisplay(self, 'teValue', 'Outward longwave radiation thermal emissivity forcing at every element (default in code is 1)'))
    207         s += '{}\n'.format(fielddisplay(self, 'teThresh', ['Apply eIdx method to all areas with effective grain radius below this value,', 'or else apply direct input value from teValue, allowing emissivity to be altered.']))
     207        s += '{}\n'.format(fielddisplay(self, 'teThresh', ['Apply eIdx method to all areas with effective grain radius above this value (mm),', 'or else apply direct input value from teValue, allowing emissivity to be altered.']))
    208208        s += '{}\n'.format(fielddisplay(self, 'eIdx', ['method for calculating emissivity (default is 1)',
    209209            '0: direct input from teValue parameter, no use of teThresh',
     
    236236                s += '{}\n'.format(fielddisplay(self,'cotValue','Cloud Optical Thickness'))
    237237                s += '{}\n'.format(fielddisplay(self,'ccsnowValue','concentration of light absorbing carbon for snow [ppm1]'))
    238                 s += '{}\n'.format(fielddisplay(self,'cciceValue','concentration of light absorbing carbon for snow [ppm1]'))
     238                s += '{}\n'.format(fielddisplay(self,'cciceValue','concentration of light absorbing carbon for ice [ppm1]'))
    239239        elif self.aIdx == 3:
    240240            s += '{}\n'.format(fielddisplay(self, 'cldFrac', 'average cloud amount'))
Note: See TracChangeset for help on using the changeset viewer.