Changeset 27682
- Timestamp:
- 04/05/23 12:57:00 (2 years ago)
- Location:
- issm/trunk-jpl/src/m/classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/SMBgemb.m
r27448 r27682 122 122 %or else apply direct input value from aValue, allowing albedo to be altered. 123 123 %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), 125 125 %or else apply direct input value from teValue, allowing emissivity to be altered. 126 126 %Default value is a effective grain radius of 10 mm. … … 200 200 fielddisplay(self,'dulwrfValue','Specified bias to be applied to the outward long wave radiation every element (W/m-2, +upward)'); 201 201 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.'}); 203 203 fielddisplay(self,'eIdx',{'method for calculating emissivity (default is 1)',... 204 204 '0: direct input from teValue parameter, no use of teThresh',... … … 233 233 fielddisplay(self,'cotValue','Cloud Optical Thickness'); 234 234 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]'); 236 236 end 237 237 case 3 -
issm/trunk-jpl/src/m/classes/SMBgemb.py
r27458 r27682 129 129 # or else apply direct input value from aValue, allowing albedo to be altered. 130 130 # 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), 132 132 #or else apply direct input value from teValue, allowing emissivity to be altered. 133 133 #Default value is a effective grain radius of 10 mm. … … 205 205 s += '{}\n'.format(fielddisplay(self, 'dulwrfValue', 'Specified bias to be applied to the outward long wave radiation every element (W/m-2, +upward)')) 206 206 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.'])) 208 208 s += '{}\n'.format(fielddisplay(self, 'eIdx', ['method for calculating emissivity (default is 1)', 209 209 '0: direct input from teValue parameter, no use of teThresh', … … 236 236 s += '{}\n'.format(fielddisplay(self,'cotValue','Cloud Optical Thickness')) 237 237 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]')) 239 239 elif self.aIdx == 3: 240 240 s += '{}\n'.format(fielddisplay(self, 'cldFrac', 'average cloud amount'))
Note:
See TracChangeset
for help on using the changeset viewer.