Last change
on this file since 15565 was 15565, checked in by Mathieu Morlighem, 12 years ago |
CHG: hutter-> SIA macayeal->SSA pattyn->HO stokes->FS
|
File size:
660 bytes
|
Rev | Line | |
---|
[13280] | 1 | from model import *
|
---|
| 2 | from triangle import *
|
---|
| 3 | from setmask import *
|
---|
| 4 | from parameterize import *
|
---|
| 5 | from setflowequation import *
|
---|
| 6 | from EnumDefinitions import *
|
---|
| 7 | from solve import *
|
---|
| 8 | from MatlabFuncs import *
|
---|
| 9 |
|
---|
| 10 | md=triangle(model(),'../Exp/Square.exp',150000)
|
---|
| 11 | md=setmask(md,'all','')
|
---|
| 12 | md=parameterize(md,'../Par/SquareShelfConstrained.py')
|
---|
[15565] | 13 | md=setflowequation(md,'SSA','all')
|
---|
[13280] | 14 | md.cluster=generic('name',oshostname(),'np',3)
|
---|
| 15 | md=solve(md,BedSlopeSolutionEnum())
|
---|
| 16 |
|
---|
| 17 | #Fields and tolerances to track changes
|
---|
| 18 | field_names =['BedSlopeX','BedSlopeY']
|
---|
| 19 | field_tolerances=[1e-13,1e-13]
|
---|
| 20 | field_values=[\
|
---|
[13967] | 21 | md.results.BedSlopeSolution.BedSlopeX,\
|
---|
| 22 | md.results.BedSlopeSolution.BedSlopeY,\
|
---|
[13280] | 23 | ]
|
---|
Note:
See
TracBrowser
for help on using the repository browser.