Changeset 25962
- Timestamp:
- 01/28/21 11:51:06 (4 years ago)
- Location:
- issm/trunk-jpl/src/m/classes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/dsl.py
r25688 r25962 44 44 if 'SealevelriseAnalysis' not in analyses: 45 45 return md 46 if solution == 'TransientSolution' and md.transient.issl r== 0:46 if solution == 'TransientSolution' and md.transient.isslc == 0: 47 47 return md 48 48 md = checkfield(md, 'fieldname', 'dsl.global_average_thermosteric_sea_level_change', 'NaN', 1, 'Inf', 1) -
issm/trunk-jpl/src/m/classes/giamme.py
r25688 r25962 42 42 if 'SealevelriseAnalysis' not in analyses: 43 43 return md 44 if solution == 'TransientSolution' and not md.transient.issl r:44 if solution == 'TransientSolution' and not md.transient.isslc: 45 45 return md 46 46 md = checkfield(md, 'field', self.Ngia, 'NaN', 1, 'Inf', 1) -
issm/trunk-jpl/src/m/classes/solidearth.py
r25767 r25962 80 80 81 81 def checkconsistency(self, md, solution, analyses): # {{{ 82 if ('SealevelriseAnalysis' not in analyses) or (solution == 'TransientSolution' and not md.transient.issl r):82 if ('SealevelriseAnalysis' not in analyses) or (solution == 'TransientSolution' and not md.transient.isslc): 83 83 return md 84 84 md = checkfield(md, 'fieldname', 'solidearth.initialsealevel', 'NaN', 1, 'Inf', 1, 'size', [md.mesh.numberofvertices])
Note:
See TracChangeset
for help on using the changeset viewer.