Changeset 23036


Ignore:
Timestamp:
07/31/18 17:31:47 (7 years ago)
Author:
caronlam
Message:

fixing consitency checks in slr.py

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/classes/slr.py

    r23034 r23036  
    171171                #check that  if geodetic is requested, we are a mesh3dsurface model (planet), or if we are not,
    172172                #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!')
    181175                return md
    182176        # }}}
Note: See TracChangeset for help on using the changeset viewer.