Salome HOME
Porting to Python 2.6 - add coding page specification for Python scripts
[modules/smesh.git] / src / SMESH_SWIG / SMESH_box_tetra.py
1 #! /usr/bin/python
2 #  -*- coding: iso-8859-1 -*-
3 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
4 #
5 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
6 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
7 #
8 #  This library is free software; you can redistribute it and/or
9 #  modify it under the terms of the GNU Lesser General Public
10 #  License as published by the Free Software Foundation; either
11 #  version 2.1 of the License.
12 #
13 #  This library is distributed in the hope that it will be useful,
14 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 #  Lesser General Public License for more details.
17 #
18 #  You should have received a copy of the GNU Lesser General Public
19 #  License along with this library; if not, write to the Free Software
20 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 #
22 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
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
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"