source: issm/trunk-jpl/test/NightlyRun/test3002.py@ 13900

Last change on this file since 13900 was 13900, checked in by jschierm, 12 years ago

NEW: Working (up to ADOLC) test3???.py (plus cosmetic Matlab changes).

File size: 889 bytes
Line 
1from model import *
2from triangle import *
3from setmask import *
4from parameterize import *
5from setflowequation import *
6from EnumDefinitions import *
7from solve import *
8from MatlabFuncs import *
9
10md=triangle(model(),'../Exp/Square.exp',180000.)
11md=setmask(md,'all','')
12md=parameterize(md,'../Par/SquareShelfConstrained.py')
13md.extrude(3,2.)
14md=setflowequation(md,'macayeal','all')
15md.cluster=generic('name',oshostname(),'np',3)
16md.autodiff.isautodiff=True
17md=solve(md,DiagnosticSolutionEnum())
18
19#Fields and tolerances to track changes
20field_names =['Vx','Vy','Vz','Vel','Pressure']
21field_tolerances=[1e-13,1e-13,1e-13,1e-13,1e-13]
22field_values=[\
23 md.results['DiagnosticSolution'][1]['Vx'],\
24 md.results['DiagnosticSolution'][1]['Vy'],\
25 md.results['DiagnosticSolution'][1]['Vz'],\
26 md.results['DiagnosticSolution'][1]['Vel'],\
27 md.results['DiagnosticSolution'][1]['Pressure'],\
28 ]
Note: See TracBrowser for help on using the repository browser.