source: issm/trunk/test/NightlyRun/test3102.py@ 21729

Last change on this file since 21729 was 21729, checked in by Mathieu Morlighem, 8 years ago

merged trunk-jpl and trunk for revision 21727

File size: 879 bytes
Line 
1#Test Name: SquareShelfConstrainedStressSSA3dAdolcMumps
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',180000.)
12md=setmask(md,'all','')
13md=parameterize(md,'../Par/SquareShelfConstrained.py')
14md.extrude(3,2.)
15md=setflowequation(md,'SSA','all')
16md.cluster=generic('name',gethostname(),'np',3)
17md.autodiff.isautodiff=True
18
19md=solve(md,'Stressbalance')
20
21#Fields and tolerances to track changes
22field_names =['Vx','Vy','Vz','Vel','Pressure']
23field_tolerances=[1e-13,1e-13,1e-13,1e-13,1e-13]
24field_values=[\
25 md.results.StressbalanceSolution.Vx,\
26 md.results.StressbalanceSolution.Vy,\
27 md.results.StressbalanceSolution.Vz,\
28 md.results.StressbalanceSolution.Vel,\
29 md.results.StressbalanceSolution.Pressure,\
30 ]
Note: See TracBrowser for help on using the repository browser.