1 # -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
4 # Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
7 # This library is free software; you can redistribute it and/or
8 # modify it under the terms of the GNU Lesser General Public
9 # License as published by the Free Software Foundation; either
10 # version 2.1 of the License.
12 # This library is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 # Lesser General Public License for more details.
17 # You should have received a copy of the GNU Lesser General Public
18 # License along with this library; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
24 # Tetrahedrization of a simple box. Hypothesis and algorithms for
25 # the mesh generation are global
34 box = geompy.MakeBox(0., 0., 0., 100., 200., 300.)
36 idbox = geompy.addToStudy(box, "box")
38 print "Analysis of the geometry box :"
39 subShellList = geompy.SubShapeAll(box, geompy.ShapeType["SHELL"])
40 subFaceList = geompy.SubShapeAll(box, geompy.ShapeType["FACE"])
41 subEdgeList = geompy.SubShapeAll(box, geompy.ShapeType["EDGE"])
43 print "number of Shells in box : ", len(subShellList)
44 print "number of Faces in box : ", len(subFaceList)
45 print "number of Edges in box : ", len(subEdgeList)
48 ### ---------------------------- SMESH --------------------------------------
49 smesh.SetCurrentStudy(salome.myStudy)
51 # ---- init a Mesh with the boxe
53 mesh = smesh.Mesh(box, "MeshBox")
55 # ---- set Hypothesis and Algorithm
57 print "-------------------------- NumberOfSegments"
60 regular1D = mesh.Segment()
61 hypNbSeg = regular1D.NumberOfSegments(numberOfSegments)
62 print hypNbSeg.GetName()
63 print hypNbSeg.GetId()
64 print hypNbSeg.GetNumberOfSegments()
65 smesh.SetName(hypNbSeg, "NumberOfSegments_" + str(numberOfSegments))
67 print "-------------------------- MaxElementArea"
71 mefisto2D = mesh.Triangle()
72 hypArea = mefisto2D.MaxElementArea(maxElementArea)
73 print hypArea.GetName()
75 print hypArea.GetMaxElementArea()
76 smesh.SetName(hypArea, "MaxElementArea_" + str(maxElementArea))
78 print "-------------------------- MaxElementVolume"
80 maxElementVolume = 500
82 netgen3D = mesh.Tetrahedron(smesh.NETGEN)
83 hypVolume = netgen3D.MaxElementVolume(maxElementVolume)
84 print hypVolume.GetName()
85 print hypVolume.GetId()
86 print hypVolume.GetMaxElementVolume()
87 smesh.SetName(hypVolume, "MaxElementVolume_" + str(maxElementVolume))
89 salome.sg.updateObjBrowser(1)
91 print "-------------------------- compute the mesh of the boxe"
95 log = mesh.GetLog(0) # no erase trace
98 print "Information about the MeshBox:"
99 print "Number of nodes : ", mesh.NbNodes()
100 print "Number of edges : ", mesh.NbEdges()
101 print "Number of faces : ", mesh.NbFaces()
102 print "Number of triangles : ", mesh.NbTriangles()
103 print "Number of volumes : ", mesh.NbVolumes()
104 print "Number of tetrahedrons: ", mesh.NbTetras()
106 print "probleme when computing the mesh"