Changeset 26744 for issm/trunk/src/m/classes/masstransport.py
- Timestamp:
- 12/22/21 10:39:44 (3 years ago)
- Location:
- issm/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 25837-25866,25868-25993,25995-26330,26332-26733,26736-26739,26741
- Property svn:mergeinfo changed
-
issm/trunk/src
- Property svn:mergeinfo changed
-
issm/trunk/src/m/classes/masstransport.py
r25836 r26744 35 35 s += '{}\n'.format(fielddisplay(self, 'min_thickness', 'minimum ice thickness allowed [m]')) 36 36 s += '{}\n'.format(fielddisplay(self, 'hydrostatic_adjustment', 'adjustment of ice shelves surface and bed elevations: ''Incremental'' or ''Absolute'' ')) 37 s += '{}\n'.format(fielddisplay(self, 'stabilization', '0: no , 1: artificial_diffusivity, 2: streamline upwinding, 3: discontinuous Galerkin, 4: Flux Correction Transport'))37 s += '{}\n'.format(fielddisplay(self, 'stabilization', '0: no stabilization, 1: artificial diffusion, 2: streamline upwinding, 3: discontinuous Galerkin, 4: flux corrected transport, 5: streamline upwind Petrov-Galerkin (SUPG)')) 38 38 s += '{}\n'.format(fielddisplay(self, 'requested_outputs', 'additional outputs requested')) 39 39 return s … … 71 71 md = checkfield(md, 'fieldname', 'masstransport.isfreesurface', 'values', [0, 1]) 72 72 md = checkfield(md, 'fieldname', 'masstransport.hydrostatic_adjustment', 'values', ['Absolute', 'Incremental']) 73 md = checkfield(md, 'fieldname', 'masstransport.stabilization', 'values', [0, 1, 2, 3, 4 ])73 md = checkfield(md, 'fieldname', 'masstransport.stabilization', 'values', [0, 1, 2, 3, 4, 5]) 74 74 md = checkfield(md, 'fieldname', 'masstransport.min_thickness', '>', 0) 75 75 md = checkfield(md, 'fieldname', 'masstransport.requested_outputs', 'stringrow', 1)
Note:
See TracChangeset
for help on using the changeset viewer.