Salome HOME
Merge from V6_3_BR 06/06/2011
[modules/smesh.git] / src / SMESH_SWIG / SMESH_box_tetra.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2011  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
24 # Tetrahedrization of a simple box. Hypothesis and algorithms for
25 # the mesh generation are global
26 #
27 import salome
28 import geompy
29 import smesh
30
31
32 # ---- define a boxe
33
34 box = geompy.MakeBox(0., 0., 0., 100., 200., 300.)
35
36 idbox = geompy.addToStudy(box, "box")
37
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"])
42
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)
46
47
48 ### ---------------------------- SMESH --------------------------------------
49 smesh.SetCurrentStudy(salome.myStudy)
50
51 # ---- init a Mesh with the boxe
52
53 mesh = smesh.Mesh(box, "MeshBox")
54
55 # ---- set Hypothesis and Algorithm
56
57 print "-------------------------- NumberOfSegments"
58 numberOfSegments = 10
59
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))
66
67 print "-------------------------- MaxElementArea"
68
69 maxElementArea = 500
70
71 mefisto2D = mesh.Triangle()
72 hypArea = mefisto2D.MaxElementArea(maxElementArea)
73 print hypArea.GetName()
74 print hypArea.GetId()
75 print hypArea.GetMaxElementArea()
76 smesh.SetName(hypArea, "MaxElementArea_" + str(maxElementArea))
77
78 print "-------------------------- MaxElementVolume"
79
80 maxElementVolume = 500
81
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))
88
89 salome.sg.updateObjBrowser(1)
90
91 print "-------------------------- compute the mesh of the boxe"
92 ret = mesh.Compute()
93 print ret
94 if ret != 0:
95     log = mesh.GetLog(0) # no erase trace
96     for linelog in log:
97         print linelog
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()
105 else:
106     print "probleme when computing the mesh"