[19105] | 1 | #Test Name: SquareShelfStressFS
|
---|
[21729] | 2 |
|
---|
[13491] | 3 | from model import *
|
---|
[21729] | 4 | from socket import gethostname
|
---|
| 5 | import numpy as np
|
---|
[13491] | 6 | from triangle import *
|
---|
| 7 | from setmask import *
|
---|
| 8 | from parameterize import *
|
---|
| 9 | from setflowequation import *
|
---|
| 10 | from solve import *
|
---|
[17806] | 11 | from generic import generic
|
---|
[13491] | 12 |
|
---|
| 13 | md=triangle(model(),'../Exp/Square.exp',180000)
|
---|
| 14 | md=setmask(md,'all','')
|
---|
| 15 | md=parameterize(md,'../Par/SquareShelf.py')
|
---|
[13672] | 16 | md.extrude(3,2.)
|
---|
[16137] | 17 | md=setflowequation(md,'FS','all')
|
---|
[21729] | 18 | md.cluster=generic('name',gethostname(),'np',3)
|
---|
| 19 | md.stressbalance.shelf_dampening=1
|
---|
| 20 | md.timestepping.time_step=0
|
---|
[21341] | 21 | md1=solve(md,'Stressbalance')
|
---|
[21729] | 22 | md.stressbalance.shelf_dampening=0
|
---|
[21341] | 23 | md=solve(md,'Stressbalance')
|
---|
[13491] | 24 |
|
---|
| 25 |
|
---|
| 26 | # Fields and tolerances to track changes
|
---|
| 27 |
|
---|
| 28 | field_names =['Vx','Vy','Vz','Vel','Pressure']
|
---|
[22758] | 29 | field_tolerances=[1e-08,1e-08,4e-06,1e-08,1e-08]
|
---|
[13491] | 30 | field_values=[\
|
---|
[16137] | 31 | md.results.StressbalanceSolution.Vx,\
|
---|
| 32 | md.results.StressbalanceSolution.Vy,\
|
---|
| 33 | md.results.StressbalanceSolution.Vz,\
|
---|
| 34 | md.results.StressbalanceSolution.Vel,\
|
---|
| 35 | md.results.StressbalanceSolution.Pressure,\
|
---|
[13491] | 36 | ]
|
---|