Changeset 28066


Ignore:
Timestamp:
01/24/24 13:42:11 (14 months ago)
Author:
schlegel
Message:

CHG: minor comments for GEMB

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  
    9898                dzMin = NaN; % initial min vertical allowable grid spacing (default dzMin/2) [m]
    9999
    100                 zY    = NaN; % strech 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)]
    101101                zMax = NaN; %initial max model depth (default is min(thickness,250)) [m]
    102102                zMin = NaN; %initial min model depth (default is min(thickness,130)) [m]
     
    186186                        fielddisplay(self,'zMax','initial max model depth (default is min(thickness,250)) [m]');
    187187                        fielddisplay(self,'zMin','initial min model depth (default is min(thickness,130)) [m]');
    188                         fielddisplay(self,'zY','strech 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)]');
    189189                        fielddisplay(self,'InitDensityScaling',{'initial scaling factor multiplying the density of ice','which describes the density of the snowpack.'});
    190190                        fielddisplay(self,'ThermoDeltaTScaling',{'scaling factor to multiply the thermal diffusion timestep (delta t)'});
  • TabularUnified issm/trunk-jpl/src/m/classes/SMBgemb.py

    r27682 r28066  
    105105        self.dzMin                  = np.nan    # initial min vertical allowable grid spacing (default dzMin/2) [m]
    106106
    107         self.zY                     = np.nan    # strech 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)]
    108108        self.zMax                   = np.nan    # initial max model depth (default is min(thickness, 250)) [m]
    109109        self.zMin                   = np.nan    # initial min model depth (default is min(thickness, 130)) [m]
     
    191191        s += '{}\n'.format(fielddisplay(self, 'zMax', 'initial max model depth (default is min(thickness, 500)) [m]'))
    192192        s += '{}\n'.format(fielddisplay(self, 'zMin', 'initial min model depth (default is min(thickness, 30)) [m]'))
    193         s += '{}\n'.format(fielddisplay(self, 'zY', 'strech 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)]'))
    194194        s += '{}\n'.format(fielddisplay(self, 'InitDensityScaling', ['initial scaling factor multiplying the density of ice', 'which describes the density of the snowpack.']))
    195195        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.