Last change
on this file since 24313 was 24313, checked in by Mathieu Morlighem, 5 years ago |
merged trunk-jpl and trunk for revision 24310
|
File size:
722 bytes
|
Rev | Line | |
---|
[19105] | 1 | #Test Name: 79NorthSurfSlop2d
|
---|
[13668] | 2 | from model import *
|
---|
[21729] | 3 | from socket import gethostname
|
---|
| 4 |
|
---|
[13668] | 5 | from triangle import *
|
---|
| 6 | from setmask import *
|
---|
| 7 | from parameterize import *
|
---|
| 8 | from setflowequation import *
|
---|
| 9 | from solve import *
|
---|
| 10 |
|
---|
[24313] | 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, 'SSA', 'all')
|
---|
| 15 | md.cluster = generic('name', gethostname(), 'np', 3)
|
---|
| 16 | md = solve(md, 'SurfaceSlope')
|
---|
[13668] | 17 |
|
---|
| 18 | #Fields and tolerances to track changes
|
---|
[24313] | 19 | field_names = ['SurfaceSlopeX', 'SurfaceSlopeY']
|
---|
| 20 | field_tolerances = [1e-13, 1e-13]
|
---|
| 21 | field_values = [md.results.SurfaceSlopeSolution.SurfaceSlopeX,
|
---|
| 22 | md.results.SurfaceSlopeSolution.SurfaceSlopeY]
|
---|
Note:
See
TracBrowser
for help on using the repository browser.