[19105] | 1 | #Test Name: SquareSheetShelfStressSSA3d
|
---|
[13677] | 2 | from model import *
|
---|
[21729] | 3 | from socket import gethostname
|
---|
| 4 |
|
---|
[13677] | 5 | from triangle import *
|
---|
| 6 | from setmask import *
|
---|
| 7 | from parameterize import *
|
---|
| 8 | from setflowequation import *
|
---|
| 9 | from solve import *
|
---|
| 10 |
|
---|
[24313] | 11 | md = triangle(model(), '../Exp/Square.exp', 150000.)
|
---|
| 12 | md = setmask(md, '../Exp/SquareShelf.exp', '')
|
---|
| 13 | md = parameterize(md, '../Par/SquareSheetShelf.py')
|
---|
| 14 | md.extrude(4, 1.)
|
---|
| 15 | md = setflowequation(md, 'SSA', 'all')
|
---|
| 16 | md.cluster = generic('name', gethostname(), 'np', 3)
|
---|
| 17 | md = solve(md, 'Stressbalance')
|
---|
[13677] | 18 |
|
---|
| 19 | #Fields and tolerances to track changes
|
---|
[24313] | 20 | field_names = ['Vx', 'Vy', 'Vz', 'Vel', 'Pressure']
|
---|
| 21 | field_tolerances = [1e-13, 1e-13, 1e-13, 1e-13, 1e-13]
|
---|
| 22 | field_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]
|
---|