Changeset 22842
- Timestamp:
- 06/13/18 02:12:13 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/friction.py
r21739 r22842 17 17 self.p = float('NaN') 18 18 self.q = float('NaN') 19 20 19 self.coupling = 0 20 self.effective_pressure = float('NaN') 21 21 #set defaults 22 22 self.setdefaultparameters() … … 43 43 raise ValueError('coupling not supported yet') 44 44 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') 46 46 return self 47 47 #}}} … … 61 61 if self.coupling==1: 62 62 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')65 63 elif self.coupling > 2: 66 64 raise ValueError('md.friction.coupling larger than 2, not supported yet') … … 75 73 if self.coupling==1: 76 74 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')79 75 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') 81 77 # }}}
Note:
See TracChangeset
for help on using the changeset viewer.