Changeset 22842


Ignore:
Timestamp:
06/13/18 02:12:13 (7 years ago)
Author:
bdef
Message:

NEW: removing not implemented error in coupling after result check

File:
1 edited

Legend:

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

    r21739 r22842  
    1717                self.p           = float('NaN')
    1818                self.q           = float('NaN')
    19                 self.coupling    = 0
    20                 self.effective_pressure = float('NaN')
     19                self.coupling    = 0
     20                self.effective_pressure = float('NaN')
    2121                #set defaults
    2222                self.setdefaultparameters()
     
    4343                        raise ValueError('coupling not supported yet')
    4444                elif self.coupling > 2:
    45                         raise ValueError('md.friction.coupling larger than 2, not supported yet')       
     45                        raise ValueError('md.friction.coupling larger than 2, not supported yet')
    4646                return self
    4747        #}}}
     
    6161                if self.coupling==1:
    6262                        md = checkfield(md,'fieldname','friction.effective_pressure','NaN',1,'Inf',1,'timeseries',1)
    63                 elif self.coupling==2:
    64                         raise ValueError('coupling not supported yet')
    6563                elif self.coupling > 2:
    6664                        raise ValueError('md.friction.coupling larger than 2, not supported yet')
     
    7573                if self.coupling==1:
    7674                        WriteData(fid,prefix,'class','friction','object',self,'fieldname','effective_pressure','format','DoubleMat','mattype',1,'timeserieslength',md.mesh.numberofvertices+1,'yts',md.constants.yts)
    77                 elif self.coupling==2:
    78                         raise ValueError('coupling not supported yet')
    7975                elif self.coupling > 2:
    80                         raise ValueError('md.friction.coupling larger than 2, not supported yet')                       
     76                        raise ValueError('md.friction.coupling larger than 2, not supported yet')
    8177        # }}}
Note: See TracChangeset for help on using the changeset viewer.