Changeset 14640 for issm/trunk-jpl/src/m/classes/flowequation.py
- Timestamp:
- 04/18/13 10:20:16 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/flowequation.py
r14141 r14640 1 #module imports2 1 import numpy 3 2 import copy … … 15 14 """ 16 15 17 #properties 18 def __init__(self): 19 # {{{ Properties 16 def __init__(self): # {{{ 20 17 21 18 self.ismacayealpattyn = 0 … … 33 30 34 31 #}}} 35 def __repr__(self): 36 # {{{ Display 32 def __repr__(self): # {{{ 37 33 string=' flow equation parameters:' 38 34 … … 48 44 return string 49 45 #}}} 50 51 def setdefaultparameters(self): 52 # {{{setdefaultparameters 46 def setdefaultparameters(self): # {{{ 53 47 return self 54 48 #}}} 55 56 49 def checkconsistency(self,md,solution,analyses): # {{{ 57 50 … … 80 73 return md 81 74 # }}} 82 83 75 def marshall(self,fid): # {{{ 84 76 WriteData(fid,'object',self,'fieldname','ismacayealpattyn','format','Boolean') … … 113 105 WriteData(fid,'data',data,'enum',FlowequationElementEquationEnum(),'format','DoubleMat','mattype',2) 114 106 # }}} 115
Note:
See TracChangeset
for help on using the changeset viewer.