1 | #Test Name: SquareShelfConstrainedStressSSA3dAdolc
|
---|
2 | from model import *
|
---|
3 | from triangle import *
|
---|
4 | from setmask import *
|
---|
5 | from parameterize import *
|
---|
6 | from setflowequation import *
|
---|
7 | from solve import *
|
---|
8 | from MatlabFuncs import *
|
---|
9 |
|
---|
10 | md=triangle(model(),'../Exp/Square.exp',180000.)
|
---|
11 | md=setmask(md,'all','')
|
---|
12 | md=parameterize(md,'../Par/SquareShelfConstrained.py')
|
---|
13 | md.extrude(3,2.)
|
---|
14 | md=setflowequation(md,'SSA','all')
|
---|
15 | md.cluster=generic('name',oshostname(),'np',1)
|
---|
16 | md.autodiff.isautodiff=True
|
---|
17 | md=solve(md,'Stressbalance')
|
---|
18 |
|
---|
19 | #Fields and tolerances to track changes
|
---|
20 | field_names =['Vx','Vy','Vz','Vel','Pressure']
|
---|
21 | field_tolerances=[1e-13,1e-13,1e-13,1e-13,1e-13]
|
---|
22 | field_values=[\
|
---|
23 | md.results.StressbalanceSolution.Vx,\
|
---|
24 | md.results.StressbalanceSolution.Vy,\
|
---|
25 | md.results.StressbalanceSolution.Vz,\
|
---|
26 | md.results.StressbalanceSolution.Vel,\
|
---|
27 | md.results.StressbalanceSolution.Pressure,\
|
---|
28 | ]
|
---|