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