|
Last change
on this file since 13975 was 13975, checked in by Mathieu Morlighem, 13 years ago |
|
merged trunk-jpl and trunk for revision 13974
|
|
File size:
712 bytes
|
| Rev | Line | |
|---|
| [13668] | 1 | import numpy
|
|---|
| 2 | from model import *
|
|---|
| 3 | from EnumDefinitions import *
|
|---|
| 4 | from MatlabFuncs import *
|
|---|
| 5 | from triangle import *
|
|---|
| 6 | from setmask import *
|
|---|
| 7 | from parameterize import *
|
|---|
| 8 | from setflowequation import *
|
|---|
| 9 | from solve import *
|
|---|
| 10 |
|
|---|
| 11 | md=triangle(model(),'../Exp/79North.exp',10000.)
|
|---|
| 12 | md=setmask(md,'../Exp/79NorthShelf.exp','')
|
|---|
| 13 | md=parameterize(md,'../Par/79North.py')
|
|---|
| 14 | md=setflowequation(md,'macayeal','all')
|
|---|
| 15 | md.cluster=generic('name',oshostname(),'np',3)
|
|---|
| 16 | md=solve(md,SurfaceSlopeSolutionEnum())
|
|---|
| 17 |
|
|---|
| 18 | #Fields and tolerances to track changes
|
|---|
| 19 | field_names =['SurfaceSlopeX','SurfaceSlopeY']
|
|---|
| 20 | field_tolerances=[1e-13,1e-13]
|
|---|
| 21 | field_values=[\
|
|---|
| [13967] | 22 | md.results.SurfaceSlopeSolution.SurfaceSlopeX,\
|
|---|
| 23 | md.results.SurfaceSlopeSolution.SurfaceSlopeY,\
|
|---|
| [13668] | 24 | ]
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.