source: issm/trunk-jpl/test/NightlyRun/test114.py@ 21056

Last change on this file since 21056 was 21056, checked in by Mathieu Morlighem, 9 years ago

CHG: do not request solution in solution string

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