Salome HOME
Merge from BR_V5_DEV 16Feb09
[modules/smesh.git] / src / SMESH_SWIG / SMESH_mechanic_netgen.py
1 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
6 #  This library is free software; you can redistribute it and/or
7 #  modify it under the terms of the GNU Lesser General Public
8 #  License as published by the Free Software Foundation; either
9 #  version 2.1 of the License.
10 #
11 #  This library is distributed in the hope that it will be useful,
12 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 #  Lesser General Public License for more details.
15 #
16 #  You should have received a copy of the GNU Lesser General Public
17 #  License along with this library; if not, write to the Free Software
18 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22 # Quadrangulation of the geometry generated by the Python script
23 # SMESH_mechanic.py
24 # The new Netgen algorithm is used that discretizes baoundaries itself
25 #
26 import salome
27 import geompy
28
29 geom  = geompy.geom
30
31 import smesh
32
33 # ---------------------------- GEOM --------------------------------------
34
35 # ---- define contigous arcs and segment to define a closed wire
36 p1   = geompy.MakeVertex( 100.0,   0.0,  0.0 )
37 p2   = geompy.MakeVertex(  50.0,  50.0,  0.0 )
38 p3   = geompy.MakeVertex( 100.0, 100.0,  0.0 )
39 arc1 = geompy.MakeArc( p1, p2, p3 )
40
41 p4   = geompy.MakeVertex( 170.0, 100.0, 0.0 )
42 seg1 = geompy.MakeVector( p3, p4 )
43
44 p5   = geompy.MakeVertex( 200.0, 70.0, 0.0 )
45 p6   = geompy.MakeVertex( 170.0, 40.0, 0.0 )
46 arc2 = geompy.MakeArc( p4, p5, p6 )
47
48 p7   = geompy.MakeVertex( 120.0, 30.0, 0.0 )
49 arc3 = geompy.MakeArc( p6, p7, p1 )
50
51 # ---- define a closed wire with arcs and segment
52 List1 = []
53 List1.append( arc1 )
54 List1.append( seg1 )
55 List1.append( arc2 )
56 List1.append( arc3 )
57
58 wire1 = geompy.MakeWire( List1 )
59 Id_wire1 = geompy.addToStudy( wire1, "wire1" )
60
61 # ---- define a planar face with wire
62 WantPlanarFace = 1 #True
63 face1 = geompy.MakeFace( wire1, WantPlanarFace )
64 Id_face1 = geompy.addToStudy( face1, "face1" )
65
66 # ---- create a shape by extrusion
67 pO = geompy.MakeVertex( 0.0, 0.0,   0.0 )
68 pz = geompy.MakeVertex( 0.0, 0.0, 100.0 )
69 vz = geompy.MakeVector( pO, pz )
70
71 prism1 = geompy.MakePrismVecH( face1, vz, 100.0 )
72 Id_prism1 = geompy.addToStudy( prism1, "prism1")
73
74 # ---- create two cylinders
75
76 pc1 = geompy.MakeVertex(  90.0, 50.0, -40.0 )
77 pc2 = geompy.MakeVertex( 170.0, 70.0, -40.0 )
78 radius = 20.0
79 height = 180.0
80 cyl1  = geompy.MakeCylinder( pc1, vz, radius, height )
81 cyl2  = geompy.MakeCylinder( pc2, vz, radius, height )
82
83 Id_Cyl1 = geompy.addToStudy( cyl1, "cyl1" )
84 Id_Cyl2 = geompy.addToStudy( cyl2, "cyl2" )
85
86 # ---- cut with cyl1
87 shape  = geompy.MakeBoolean( prism1, cyl1, 2 )
88
89 # ---- fuse with cyl2 to obtain the final mechanic piece :)
90 mechanic =  geompy.MakeBoolean( shape, cyl2, 3 )
91 Id_mechanic = geompy.addToStudy( mechanic, "mechanic" )
92
93 # ---- Analysis of the geometry
94
95 print "Analysis of the geometry mechanic :"
96
97 subShellList = geompy.SubShapeAll(mechanic,geompy.ShapeType["SHELL"])
98 subFaceList  = geompy.SubShapeAll(mechanic,geompy.ShapeType["FACE"])
99 subEdgeList  = geompy.SubShapeAll(mechanic,geompy.ShapeType["EDGE"])
100
101 print "number of Shells in mechanic : ",len(subShellList)
102 print "number of Faces in mechanic : ",len(subFaceList)
103 print "number of Edges in mechanic : ",len(subEdgeList)
104
105 ### ---------------------------- SMESH --------------------------------------
106
107 print "-------------------------- create Mesh, algorithm, hypothesis"
108
109 mesh = smesh.Mesh(mechanic, "Mesh_mechanic");
110 netgen = mesh.Triangle(smesh.NETGEN)
111 netgen.SetMaxSize( 50 )
112 #netgen.SetSecondOrder( 0 )
113 netgen.SetFineness( smesh.Fine )
114 netgen.SetQuadAllowed( 1 )
115 #netgen.SetOptimize( 1 )
116
117 salome.sg.updateObjBrowser(1)
118
119 print "-------------------------- compute mesh"
120 ret = mesh.Compute()
121 print ret
122 if ret != 0:
123     print "Information about the MeshcompShel:"
124     print "Number of nodes        : ", mesh.NbNodes()
125     print "Number of edges        : ", mesh.NbEdges()
126     print "Number of faces        : ", mesh.NbFaces()
127     print "Number of triangles    : ", mesh.NbTriangles()
128     print "Number of quadrangles  : ", mesh.NbQuadrangles()
129     print "Number of volumes      : ", mesh.NbVolumes()
130     print "Number of tetrahedrons : ", mesh.NbTetras()
131     
132 else:
133     print "problem when computing the mesh"