Salome HOME
dcb0e2569c38640710ffd3644a369a3f51fd31f6
[modules/smesh.git] / src / SMESH_SWIG / SMESH_flight_skin.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 # Triangulation of the skin of the geometry from a Brep representing a plane
25 # Hypothesis and algorithms for the mesh generation are global
26 #
27 import os
28 import salome
29 import geompy
30 import smesh
31
32
33 # ---------------------------- GEOM --------------------------------------
34
35 # import a BRep
36 #before running this script, please be sure about
37 #the path the file fileName
38
39 filePath = os.environ["DATA_DIR"]
40 filePath = filePath + "/Shapes/Brep/"
41
42 filename = "flight_solid.brep"
43 filename = filePath + filename
44
45 shape = geompy.Import(filename, "BREP")
46 idShape = geompy.addToStudy(shape, "flight")
47
48 print "Analysis of the geometry flight :"
49 subShellList = geompy.SubShapeAll(shape, geompy.ShapeType["SHELL"])
50 subFaceList  = geompy.SubShapeAll(shape, geompy.ShapeType["FACE"])
51 subEdgeList  = geompy.SubShapeAll(shape, geompy.ShapeType["EDGE"])
52
53 print "number of Shells in flight : ", len(subShellList)
54 print "number of Faces  in flight : ", len(subFaceList)
55 print "number of Edges  in flight : ", len(subEdgeList)
56
57
58 ### ---------------------------- SMESH --------------------------------------
59
60 # ---- init a Mesh with the shell
61 shape_mesh = salome.IDToObject( idShape )
62
63 mesh = smesh.Mesh(shape_mesh, "MeshFlight")
64
65
66 # ---- set Hypothesis and Algorithm
67
68 print "-------------------------- LocalLength"
69
70 lengthOfSegments = 0.3
71
72 regular1D = mesh.Segment()
73 hypLength = regular1D.LocalLength(lengthOfSegments)
74 print hypLength.GetName()
75 print hypLength.GetId()
76 print hypLength.GetLength()
77 smesh.SetName(hypLength, "LocalLength_" + str(lengthOfSegments))
78
79 print "-------------------------- LengthFromEdges"
80
81 mefisto2D = mesh.Triangle()
82 hypLengthFromEdge = mefisto2D.LengthFromEdges()
83 print hypLengthFromEdge.GetName()
84 print hypLengthFromEdge.GetId()
85 smesh.SetName(hypLengthFromEdge,"LengthFromEdge")
86
87
88 salome.sg.updateObjBrowser(1)
89
90
91 print "-------------------------- compute the skin flight"
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 Mesh_mechanic_tetra:"
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 else:
105     print "probleme when computing the mesh"