Changeset 25961
- Timestamp:
- 01/28/21 11:09:40 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/transient.py
r25688 r25961 22 22 self.ismovingfront = 0 23 23 self.ishydrology = 0 24 self.issl r= 024 self.isslc = 0 25 25 self.iscoupler = 0 26 26 self.amr_frequency = 0 … … 43 43 s += '{}\n'.format(fielddisplay(self, 'ismovingfront', 'indicates whether a moving front capability is used in the transient')) 44 44 s += '{}\n'.format(fielddisplay(self, 'ishydrology', 'indicates whether an hydrology model is used')) 45 s += '{}\n'.format(fielddisplay(self, 'issl r', 'indicates if a sea level rise solution is used in the transient'))45 s += '{}\n'.format(fielddisplay(self, 'isslc', 'indicates if a sea level change solution is used in the transient')) 46 46 s += '{}\n'.format(fielddisplay(self, 'isoceancoupling', 'indicates whether coupling with an ocean model is used in the transient')) 47 47 s += '{}\n'.format(fielddisplay(self, 'iscoupler', 'indicates whether different models are being run with need for coupling')) … … 69 69 self.ismovingfront = 0 70 70 self.ishydrology = 0 71 self.issl r= 071 self.isslc = 0 72 72 self.isoceancoupling = 0 73 73 self.iscoupler = 0 … … 91 91 self.ismovingfront = 0 92 92 self.ishydrology = 0 93 self.issl r= 093 self.isslc = 0 94 94 self.isoceancoupling = 0 95 95 self.iscoupler = 0 … … 116 116 md = checkfield(md, 'fieldname', 'transient.ishydrology', 'numel', [1], 'values', [0, 1]) 117 117 md = checkfield(md, 'fieldname', 'transient.ismovingfront', 'numel', [1], 'values', [0, 1]) 118 md = checkfield(md, 'fieldname', 'transient.issl r', 'numel', [1], 'values', [0, 1])118 md = checkfield(md, 'fieldname', 'transient.isslc', 'numel', [1], 'values', [0, 1]) 119 119 md = checkfield(md, 'fieldname', 'transient.isoceancoupling', 'numel', [1], 'values', [0, 1]) 120 120 md = checkfield(md, 'fieldname', 'transient.iscoupler', 'numel', [1], 'values', [0, 1]) … … 139 139 WriteData(fid, prefix, 'object', self, 'fieldname', 'ishydrology', 'format', 'Boolean') 140 140 WriteData(fid, prefix, 'object', self, 'fieldname', 'ismovingfront', 'format', 'Boolean') 141 WriteData(fid, prefix, 'object', self, 'fieldname', 'issl r', 'format', 'Boolean')141 WriteData(fid, prefix, 'object', self, 'fieldname', 'isslc', 'format', 'Boolean') 142 142 WriteData(fid, prefix, 'object', self, 'fieldname', 'isoceancoupling', 'format', 'Boolean') 143 143 WriteData(fid, prefix, 'object', self, 'fieldname', 'iscoupler', 'format', 'Boolean')
Note:
See TracChangeset
for help on using the changeset viewer.