Salome HOME
Join modifications from BR_Dev_For_4_0 tag V4_1_1.
[modules/smesh.git] / src / SMESH_SWIG / SMESH_freebord.py
1 #  Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 #
4 #  This library is free software; you can redistribute it and/or
5 #  modify it under the terms of the GNU Lesser General Public
6 #  License as published by the Free Software Foundation; either
7 #  version 2.1 of the License.
8 #
9 #  This library is distributed in the hope that it will be useful,
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 #  Lesser General Public License for more details.
13 #
14 #  You should have received a copy of the GNU Lesser General Public
15 #  License along with this library; if not, write to the Free Software
16 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20 import salome
21 import geompy
22 import smesh
23
24
25 # Create box without one plane
26
27 box = geompy.MakeBox(0., 0., 0., 10., 20., 30.)
28 subShapeList = geompy.SubShapeAll(box, geompy.ShapeType["FACE"])
29
30 FaceList  = []
31 for i in range( 5 ):
32   FaceList.append( subShapeList[ i ] )
33
34 aComp = geompy.MakeCompound( FaceList )
35 aBox = geompy.Sew( aComp, 1. )
36 idbox = geompy.addToStudy( aBox, "box" )
37
38 aBox  = salome.IDToObject( idbox )
39
40 # Create mesh
41
42 mesh = smesh.Mesh(aBox, "Mesh_freebord")
43
44 algoReg = mesh.Segment()
45 hypNbSeg = algoReg.NumberOfSegments(5)
46
47 algoMef = mesh.Triangle()
48 hypArea = algoMef.MaxElementArea(20)
49
50
51 mesh.Compute()
52
53
54 # Criterion : Free edges. Create group.
55
56 aCriterion = smesh.GetCriterion(smesh.EDGE, smesh.FT_FreeEdges)
57
58 aGroup = mesh.MakeGroupByCriterion("Free edges", aCriterion)
59
60 anIds = aGroup.GetIDs()
61
62 # print result
63 print "Criterion: Free edges Nb = ", len( anIds )
64 for i in range( len( anIds ) ):
65   print anIds[ i ]
66
67 salome.sg.updateObjBrowser(1)