Salome HOME
Merge branch 'V9_9_BR'
[modules/smesh.git] / src / SMESH_SWIG / SMESH_box_tetra.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2022  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, or (at your option) any later version.
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 salome.salome_init()
29 import GEOM
30 from salome.geom import geomBuilder
31 geompy = geomBuilder.New()
32
33 import SMESH, SALOMEDS
34 from salome.smesh import smeshBuilder
35 smesh =  smeshBuilder.New()
36
37 # ---- define a box
38
39 box = geompy.MakeBox(0., 0., 0., 100., 200., 300.)
40
41 idbox = geompy.addToStudy(box, "box")
42
43 print("Analysis of the geometry box :")
44 subShellList = geompy.SubShapeAll(box, geompy.ShapeType["SHELL"])
45 subFaceList  = geompy.SubShapeAll(box, geompy.ShapeType["FACE"])
46 subEdgeList  = geompy.SubShapeAll(box, geompy.ShapeType["EDGE"])
47
48 print("number of Shells in box : ", len(subShellList))
49 print("number of Faces  in box : ", len(subFaceList))
50 print("number of Edges  in box : ", len(subEdgeList))
51
52
53 ### ---------------------------- SMESH --------------------------------------
54
55 # ---- init a Mesh with the box
56
57 mesh = smesh.Mesh(box, "MeshBox")
58
59 # ---- set Hypothesis and Algorithm
60
61 print("-------------------------- NumberOfSegments")
62 numberOfSegments = 10
63
64 regular1D = mesh.Segment()
65 hypNbSeg = regular1D.NumberOfSegments(numberOfSegments)
66 print(hypNbSeg.GetName())
67 print(hypNbSeg.GetId())
68 print(hypNbSeg.GetNumberOfSegments())
69 smesh.SetName(hypNbSeg, "NumberOfSegments_" + str(numberOfSegments))
70
71 print("-------------------------- MaxElementArea")
72
73 maxElementArea = 500
74
75 mefisto2D = mesh.Triangle()
76 hypArea = mefisto2D.MaxElementArea(maxElementArea)
77 print(hypArea.GetName())
78 print(hypArea.GetId())
79 print(hypArea.GetMaxElementArea())
80 smesh.SetName(hypArea, "MaxElementArea_" + str(maxElementArea))
81
82 print("-------------------------- MaxElementVolume")
83
84 maxElementVolume = 500
85
86 netgen3D = mesh.Tetrahedron(smeshBuilder.NETGEN)
87 hypVolume = netgen3D.MaxElementVolume(maxElementVolume)
88 print(hypVolume.GetName())
89 print(hypVolume.GetId())
90 print(hypVolume.GetMaxElementVolume())
91 smesh.SetName(hypVolume, "MaxElementVolume_" + str(maxElementVolume))
92
93 print("-------------------------- compute the mesh of the box")
94 ret = mesh.Compute()
95 print(ret)
96 if ret != 0:
97     log = mesh.GetLog(0) # no erase trace
98     # for linelog in log:
99     #     print(linelog)
100     print("Information about the MeshBox:")
101     print("Number of nodes       : ", mesh.NbNodes())
102     print("Number of edges       : ", mesh.NbEdges())
103     print("Number of faces       : ", mesh.NbFaces())
104     print("Number of triangles   : ", mesh.NbTriangles())
105     print("Number of volumes     : ", mesh.NbVolumes())
106     print("Number of tetrahedrons: ", mesh.NbTetras())
107 else:
108     print("probleme when computing the mesh")
109
110 salome.sg.updateObjBrowser()