source: issm/trunk/test/NightlyRun/test402.py

Last change on this file was 24313, checked in by Mathieu Morlighem, 5 years ago

merged trunk-jpl and trunk for revision 24310

File size: 929 bytes
Line 
1#Test Name: SquareSheetShelfStressSSA3d
2from model import *
3from socket import gethostname
4
5from triangle import *
6from setmask import *
7from parameterize import *
8from setflowequation import *
9from solve import *
10
11md = triangle(model(), '../Exp/Square.exp', 150000.)
12md = setmask(md, '../Exp/SquareShelf.exp', '')
13md = parameterize(md, '../Par/SquareSheetShelf.py')
14md.extrude(4, 1.)
15md = setflowequation(md, 'SSA', 'all')
16md.cluster = generic('name', gethostname(), 'np', 3)
17md = solve(md, 'Stressbalance')
18
19#Fields and tolerances to track changes
20field_names = ['Vx', 'Vy', 'Vz', 'Vel', 'Pressure']
21field_tolerances = [1e-13, 1e-13, 1e-13, 1e-13, 1e-13]
22field_values = [md.results.StressbalanceSolution.Vx,
23 md.results.StressbalanceSolution.Vy,
24 md.results.StressbalanceSolution.Vz,
25 md.results.StressbalanceSolution.Vel,
26 md.results.StressbalanceSolution.Pressure]
Note: See TracBrowser for help on using the repository browser.