Changeset 16162 for issm/trunk-jpl/src/m/classes/model/model.py
- Timestamp:
- 09/17/13 18:44:22 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/classes/model/model.py
r15987 r16162 10 10 from basalforcings import basalforcings 11 11 from matice import matice 12 from damage import damage 12 13 from friction import friction 13 14 from flowequation import flowequation … … 58 59 self.basalforcings = basalforcings() 59 60 self.materials = matice() 61 self.damage = damage() 60 62 self.friction = friction() 61 63 self.flowequation = flowequation() … … 99 101 'basalforcings',\ 100 102 'materials',\ 103 'damage',\ 101 104 'friction',\ 102 105 'flowequation',\ … … 136 139 string="%s\n%s" % (string,"%19s: %-22s -- %s" % ("basalforcings","[%s,%s]" % ("1x1",obj.basalforcings.__class__.__name__),"bed forcings")) 137 140 string="%s\n%s" % (string,"%19s: %-22s -- %s" % ("materials","[%s,%s]" % ("1x1",obj.materials.__class__.__name__),"material properties")) 141 string="%s\n%s" % (string,"%19s: %-22s -- %s" % ("damage","[%s,%s]" % ("1x1",obj.damage.__class__.__name__),"damage propagation laws")) 138 142 string="%s\n%s" % (string,"%19s: %-22s -- %s" % ("friction","[%s,%s]" % ("1x1",obj.friction.__class__.__name__),"basal friction/drag properties")) 139 143 string="%s\n%s" % (string,"%19s: %-22s -- %s" % ("flowequation","[%s,%s]" % ("1x1",obj.flowequation.__class__.__name__),"flow equations")) … … 627 631 md.materials.rheology_n=project3d(md,'vector',md.materials.rheology_n,'type','element') 628 632 633 #damage 634 md.damage.D=project3d(md,'vector',md.damage.D,'type','node') 629 635 #parameters 630 636 md.geometry.surface=project3d(md,'vector',md.geometry.surface,'type','node')
Note:
See TracChangeset
for help on using the changeset viewer.