1 # Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
3 # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
20 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 # Quadrangulation of the geometry generated by the Python script
24 # The new Netgen algorithm is used that discretizes baoundaries itself
33 # ---------------------------- GEOM --------------------------------------
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 )
41 p4 = geompy.MakeVertex( 170.0, 100.0, 0.0 )
42 seg1 = geompy.MakeVector( p3, p4 )
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 )
48 p7 = geompy.MakeVertex( 120.0, 30.0, 0.0 )
49 arc3 = geompy.MakeArc( p6, p7, p1 )
51 # ---- define a closed wire with arcs and segment
58 wire1 = geompy.MakeWire( List1 )
59 Id_wire1 = geompy.addToStudy( wire1, "wire1" )
61 # ---- define a planar face with wire
62 WantPlanarFace = 1 #True
63 face1 = geompy.MakeFace( wire1, WantPlanarFace )
64 Id_face1 = geompy.addToStudy( face1, "face1" )
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 )
71 prism1 = geompy.MakePrismVecH( face1, vz, 100.0 )
72 Id_prism1 = geompy.addToStudy( prism1, "prism1")
74 # ---- create two cylinders
76 pc1 = geompy.MakeVertex( 90.0, 50.0, -40.0 )
77 pc2 = geompy.MakeVertex( 170.0, 70.0, -40.0 )
80 cyl1 = geompy.MakeCylinder( pc1, vz, radius, height )
81 cyl2 = geompy.MakeCylinder( pc2, vz, radius, height )
83 Id_Cyl1 = geompy.addToStudy( cyl1, "cyl1" )
84 Id_Cyl2 = geompy.addToStudy( cyl2, "cyl2" )
87 shape = geompy.MakeBoolean( prism1, cyl1, 2 )
89 # ---- fuse with cyl2 to obtain the final mechanic piece :)
90 mechanic = geompy.MakeBoolean( shape, cyl2, 3 )
91 Id_mechanic = geompy.addToStudy( mechanic, "mechanic" )
93 # ---- Analysis of the geometry
95 print "Analysis of the geometry mechanic :"
97 subShellList = geompy.SubShapeAll(mechanic,geompy.ShapeType["SHELL"])
98 subFaceList = geompy.SubShapeAll(mechanic,geompy.ShapeType["FACE"])
99 subEdgeList = geompy.SubShapeAll(mechanic,geompy.ShapeType["EDGE"])
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)
105 ### ---------------------------- SMESH --------------------------------------
107 print "-------------------------- create Mesh, algorithm, hypothesis"
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 )
117 salome.sg.updateObjBrowser(1)
119 print "-------------------------- compute mesh"
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()
133 print "problem when computing the mesh"