1 # -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2013 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 the geometry generated by the Python script
26 # The new Netgen algorithm is used that discretizes baoundaries itself
31 compshell = SMESH_fixation.compshell
32 idcomp = SMESH_fixation.idcomp
33 geompy = SMESH_fixation.geompy
34 salome = SMESH_fixation.salome
36 print "Analysis of the geometry to be meshed :"
37 subShellList = geompy.SubShapeAll(compshell, geompy.ShapeType["SHELL"])
38 subFaceList = geompy.SubShapeAll(compshell, geompy.ShapeType["FACE"])
39 subEdgeList = geompy.SubShapeAll(compshell, geompy.ShapeType["EDGE"])
41 print "number of Shells in compshell : ", len(subShellList)
42 print "number of Faces in compshell : ", len(subFaceList)
43 print "number of Edges in compshell : ", len(subEdgeList)
45 status = geompy.CheckShape(compshell)
46 print " check status ", status
48 ### ---------------------------- SMESH --------------------------------------
49 smesh.SetCurrentStudy(salome.myStudy)
51 print "-------------------------- create Mesh, algorithm, hypothesis"
53 mesh = smesh.Mesh(compshell, "MeshcompShel");
54 netgen = mesh.Tetrahedron(smesh.FULL_NETGEN)
55 netgen.SetMaxSize( 50 )
56 #netgen.SetSecondOrder( 0 )
57 netgen.SetFineness( smesh.Fine )
58 #netgen.SetOptimize( 1 )
60 salome.sg.updateObjBrowser(1)
62 print "-------------------------- compute mesh"
66 print "Information about the MeshcompShel:"
67 print "Number of nodes : ", mesh.GetMesh().NbNodes()
68 print "Number of edges : ", mesh.GetMesh().NbEdges()
69 print "Number of faces : ", mesh.GetMesh().NbFaces()
70 print "Number of triangles : ", mesh.GetMesh().NbTriangles()
71 print "Number of volumes : ", mesh.GetMesh().NbVolumes()
72 print "Number of tetrahedrons : ", mesh.GetMesh().NbTetras()
75 print "problem when computing the mesh"