Salome HOME
e02f74718eb5beb48b368e41de22624ffb0f47e0
[modules/smesh.git] / src / SMESH_SWIG / SMESH_box_tetra.py
1 #  -*- coding: iso-8859-1 -*-
2 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
3 #
4 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
5 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 #
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.
11 #
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.
16 #
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
20 #
21 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22 #
23 # Tetrahedrization of a simple box. Hypothesis and algorithms for
24 # the mesh generation are global
25 #
26 import salome
27 import geompy
28 import smesh
29
30
31 # ---- define a boxe
32
33 box = geompy.MakeBox(0., 0., 0., 100., 200., 300.)
34
35 idbox = geompy.addToStudy(box, "box")
36
37 print "Analysis of the geometry box :"
38 subShellList = geompy.SubShapeAll(box, geompy.ShapeType["SHELL"])
39 subFaceList  = geompy.SubShapeAll(box, geompy.ShapeType["FACE"])
40 subEdgeList  = geompy.SubShapeAll(box, geompy.ShapeType["EDGE"])
41
42 print "number of Shells in box : ", len(subShellList)
43 print "number of Faces  in box : ", len(subFaceList)
44 print "number of Edges  in box : ", len(subEdgeList)
45
46
47 ### ---------------------------- SMESH --------------------------------------
48 smesh.SetCurrentStudy(salome.myStudy)
49
50 # ---- init a Mesh with the boxe
51
52 mesh = smesh.Mesh(box, "MeshBox")
53
54 # ---- set Hypothesis and Algorithm
55
56 print "-------------------------- NumberOfSegments"
57 numberOfSegments = 10
58
59 regular1D = mesh.Segment()
60 hypNbSeg = regular1D.NumberOfSegments(numberOfSegments)
61 print hypNbSeg.GetName()
62 print hypNbSeg.GetId()
63 print hypNbSeg.GetNumberOfSegments()
64 smesh.SetName(hypNbSeg, "NumberOfSegments_" + str(numberOfSegments))
65
66 print "-------------------------- MaxElementArea"
67
68 maxElementArea = 500
69
70 mefisto2D = mesh.Triangle()
71 hypArea = mefisto2D.MaxElementArea(maxElementArea)
72 print hypArea.GetName()
73 print hypArea.GetId()
74 print hypArea.GetMaxElementArea()
75 smesh.SetName(hypArea, "MaxElementArea_" + str(maxElementArea))
76
77 print "-------------------------- MaxElementVolume"
78
79 maxElementVolume = 500
80
81 netgen3D = mesh.Tetrahedron(smesh.NETGEN)
82 hypVolume = netgen3D.MaxElementVolume(maxElementVolume)
83 print hypVolume.GetName()
84 print hypVolume.GetId()
85 print hypVolume.GetMaxElementVolume()
86 smesh.SetName(hypVolume, "MaxElementVolume_" + str(maxElementVolume))
87
88 salome.sg.updateObjBrowser(1)
89
90 print "-------------------------- compute the mesh of the boxe"
91 ret = mesh.Compute()
92 print ret
93 if ret != 0:
94     log = mesh.GetLog(0) # no erase trace
95     for linelog in log:
96         print linelog
97     print "Information about the MeshBox:"
98     print "Number of nodes       : ", mesh.NbNodes()
99     print "Number of edges       : ", mesh.NbEdges()
100     print "Number of faces       : ", mesh.NbFaces()
101     print "Number of triangles   : ", mesh.NbTriangles()
102     print "Number of volumes     : ", mesh.NbVolumes()
103     print "Number of tetrahedrons: ", mesh.NbTetras()
104 else:
105     print "probleme when computing the mesh"