Changeset 28066
- Timestamp:
- 01/24/24 13:42:11 (14 months ago)
- Location:
- issm/trunk-jpl/src/m/classes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/m/classes/SMBgemb.m ¶
r27682 r28066 98 98 dzMin = NaN; % initial min vertical allowable grid spacing (default dzMin/2) [m] 99 99 100 zY = NaN; % stre ch grid cells bellow top_z by a [top_dz * y ^ (cells bellow top_z)]100 zY = NaN; % stretch grid cells bellow top_z by a [top_dz * y ^ (cells bellow top_z)] 101 101 zMax = NaN; %initial max model depth (default is min(thickness,250)) [m] 102 102 zMin = NaN; %initial min model depth (default is min(thickness,130)) [m] … … 186 186 fielddisplay(self,'zMax','initial max model depth (default is min(thickness,250)) [m]'); 187 187 fielddisplay(self,'zMin','initial min model depth (default is min(thickness,130)) [m]'); 188 fielddisplay(self,'zY','stre ch grid cells bellow top_z by a [top_dz * y ^ (cells bellow top_z)]');188 fielddisplay(self,'zY','stretch grid cells bellow top_z by a [top_dz * y ^ (cells bellow top_z)]'); 189 189 fielddisplay(self,'InitDensityScaling',{'initial scaling factor multiplying the density of ice','which describes the density of the snowpack.'}); 190 190 fielddisplay(self,'ThermoDeltaTScaling',{'scaling factor to multiply the thermal diffusion timestep (delta t)'}); -
TabularUnified issm/trunk-jpl/src/m/classes/SMBgemb.py ¶
r27682 r28066 105 105 self.dzMin = np.nan # initial min vertical allowable grid spacing (default dzMin/2) [m] 106 106 107 self.zY = np.nan # stre ch grid cells bellow top_z by a [top_dz * y ^ (cells bellow top_z)]107 self.zY = np.nan # stretch grid cells bellow top_z by a [top_dz * y ^ (cells bellow top_z)] 108 108 self.zMax = np.nan # initial max model depth (default is min(thickness, 250)) [m] 109 109 self.zMin = np.nan # initial min model depth (default is min(thickness, 130)) [m] … … 191 191 s += '{}\n'.format(fielddisplay(self, 'zMax', 'initial max model depth (default is min(thickness, 500)) [m]')) 192 192 s += '{}\n'.format(fielddisplay(self, 'zMin', 'initial min model depth (default is min(thickness, 30)) [m]')) 193 s += '{}\n'.format(fielddisplay(self, 'zY', 'stre ch grid cells bellow top_z by a [top_dz * y ^ (cells bellow top_z)]'))193 s += '{}\n'.format(fielddisplay(self, 'zY', 'stretch grid cells bellow top_z by a [top_dz * y ^ (cells bellow top_z)]')) 194 194 s += '{}\n'.format(fielddisplay(self, 'InitDensityScaling', ['initial scaling factor multiplying the density of ice', 'which describes the density of the snowpack.'])) 195 195 s += '{}\n'.format(fielddisplay(self, 'ThermoDeltaTScaling', 'scaling factor to multiply the thermal diffusion timestep (delta t)'))
Note:
See TracChangeset
for help on using the changeset viewer.