Changeset 23036
- Timestamp:
- 07/31/18 17:31:47 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/slr.py
r23034 r23036 171 171 #check that if geodetic is requested, we are a mesh3dsurface model (planet), or if we are not, 172 172 #a coupler to a planet model is provided. 173 if self.geodetic: 174 if md.transient.iscoupler: 175 #we are good; 176 else: 177 if domaintype(md.mesh)=='mesh3dsurface': 178 #we are good 179 else: 180 error('model is requesting geodetic computations without being a mesh3dsurface, or being coupled to one!'); 173 if self.geodetic and not md.transient.iscoupler and domaintype(md.mesh)!='mesh3dsurface': 174 error('model is requesting geodetic computations without being a mesh3dsurface, or being coupled to one!') 181 175 return md 182 176 # }}}
Note:
See TracChangeset
for help on using the changeset viewer.