source: issm/trunk/test/NightlyRun/test204.py@ 16137

Last change on this file since 16137 was 16137, checked in by Mathieu Morlighem, 12 years ago

merged trunk-jpl and trunk for revision 16135

File size: 839 bytes
Line 
1from MatlabFuncs import *
2from model import *
3from EnumDefinitions import *
4from numpy import *
5from triangle import *
6from setmask import *
7from parameterize import *
8from setflowequation import *
9from solve import *
10
11md=triangle(model(),'../Exp/Square.exp',180000)
12md=setmask(md,'all','')
13md=parameterize(md,'../Par/SquareShelf.py')
14md.extrude(3,2.)
15md=setflowequation(md,'FS','all')
16md.cluster=generic('name',oshostname(),'np',3)
17md=solve(md,StressbalanceSolutionEnum())
18
19
20# Fields and tolerances to track changes
21
22field_names =['Vx','Vy','Vz','Vel','Pressure']
23field_tolerances=[1e-08,1e-08,1e-07,1e-08,1e-08]
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.