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

Last change on this file since 13967 was 13967, checked in by jschierm, 12 years ago

CHG: Updated Python test problems for new results format.

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