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

Last change on this file since 21049 was 21049, checked in by agscott1, 9 years ago

CHG: Replaced Enums with Strings in matlab and python. Updated corresponding cpp code.

File size: 700 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,'BedSlopeSolution')
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.