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

Last change on this file was 23793, checked in by bdef, 6 years ago

pep8 compliance of NTs

File size: 702 bytes
Line 
1#Test Name: SquareShelfConstrainedBedSlop2d
2from model import *
3from socket import gethostname
4from triangle import *
5from setmask import *
6from parameterize import *
7from setflowequation import *
8from solve import *
9
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', gethostname(), '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 = [md.results.BedSlopeSolution.BedSlopeX,
22 md.results.BedSlopeSolution.BedSlopeY]
Note: See TracBrowser for help on using the repository browser.