source: issm/trunk/test/NightlyRun/test607.py@ 21729

Last change on this file since 21729 was 21729, checked in by Mathieu Morlighem, 8 years ago

merged trunk-jpl and trunk for revision 21727

File size: 696 bytes
Line 
1#Test Name: 79NorthBedSlop3d
2import numpy as np
3from model import *
4from socket import gethostname
5
6from triangle import *
7from setmask import *
8from parameterize import *
9from setflowequation import *
10from solve import *
11
12md=triangle(model(),'../Exp/79North.exp',10000.)
13md=setmask(md,'../Exp/79NorthShelf.exp','')
14md=parameterize(md,'../Par/79North.py')
15md.extrude(2,1.)
16md=setflowequation(md,'SSA','all')
17md.cluster=generic('name',gethostname(),'np',3)
18md=solve(md,'BedSlope')
19
20#Fields and tolerances to track changes
21field_names =['BedSlopeX','BedSlopeY']
22field_tolerances=[1e-13,1e-13]
23field_values=[\
24 md.results.BedSlopeSolution.BedSlopeX,\
25 md.results.BedSlopeSolution.BedSlopeY,\
26 ]
Note: See TracBrowser for help on using the repository browser.