source: issm/trunk-jpl/test/NightlyRun/test285.py@ 15735

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

CHG: relaxing some tolerances

File size: 864 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 *
9from ContourToMesh import *
10
11md=triangle(model(),'../Exp/Square.exp',150000.);
12md=setmask(md,'all','');
13md=parameterize(md,'../Par/SquareShelf.py');
14md.extrude(3,2.)
15md=setflowequation(md,'HO','all');
16md.flowequation.fe_HO=1;
17md.cluster=generic('name',oshostname(),'np',3);
18md=solve(md,DiagnosticSolutionEnum());
19
20#Fields and tolerances to track changes
21field_names =['Vx', 'Vy', 'Vz', 'Vel','Pressure'];
22field_tolerances=[1e-08,1e-08,1e-08,1e-08,1e-13];
23field_values=[\
24 md.results.DiagnosticSolution.Vx,\
25 md.results.DiagnosticSolution.Vy,\
26 md.results.DiagnosticSolution.Vz,\
27 md.results.DiagnosticSolution.Vel,\
28 md.results.DiagnosticSolution.Pressure,\
29 ];
Note: See TracBrowser for help on using the repository browser.