source: issm/branches/trunk-larour-NatGeoScience2016/test/NightlyRun/test291.py@ 21243

Last change on this file since 21243 was 21060, checked in by Mathieu Morlighem, 9 years ago

CHG: no more enums in python

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