Salome HOME
Update mail address
[modules/smesh.git] / src / SMESH_SWIG / SMESH_GroupFromGeom2.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 #==============================================================================
21 #  Info.
22 #  Bug (from script, bug)   : SMESH_GroupFromGeom.py, PAL6945
23 #  Modified                 : 25/11/2004
24 #  Author                   : Kovaltchuk Alexey
25 #  Project                  : PAL/SALOME
26 #============================================================================== 
27 from SMESH_test1 import *
28 import SMESH
29
30 # Compute the mesh created in SMESH_test1
31
32 smesh.Compute(mesh, box)
33
34 # Create geometry groups on plane:
35 aGeomGroup1 = geompy.CreateGroup(face , geompy.ShapeType["FACE"])
36 geompy.AddObject(aGeomGroup1, 1)
37
38 aGeomGroup2 = geompy.CreateGroup(face , geompy.ShapeType["EDGE"])
39
40 geompy.AddObject(aGeomGroup2, 3)
41 geompy.AddObject(aGeomGroup2, 6)
42 geompy.AddObject(aGeomGroup2, 8)
43 geompy.AddObject(aGeomGroup2, 10)
44
45 geompy.addToStudy(aGeomGroup1, "Group on Faces")
46 geompy.addToStudy(aGeomGroup2, "Group on Edges")
47
48 aSmeshGroup1 = mesh.CreateGroupFromGEOM(SMESH.FACE, "SMESHGroup1", aGeomGroup1)
49 aSmeshGroup2 = mesh.CreateGroupFromGEOM(SMESH.EDGE, "SMESHGroup2", aGeomGroup2)
50
51 print "Create aGroupOnShell - a group linked to a shell"
52 aGroupOnShell = mesh.CreateGroupFromGEOM(SMESH.EDGE, "GroupOnShell", shell)
53 print "aGroupOnShell type =", aGroupOnShell.GetType()
54 print "aGroupOnShell size =", aGroupOnShell.Size()
55 print "aGroupOnShell ids :", aGroupOnShell.GetListOfID()
56
57 print " "
58
59 print "Modify <LocalLength> hypothesis: 100 -> 50"
60 hypLen1.SetLength(50)
61 print "Contents of aGroupOnShell changes:"
62 print "aGroupOnShell size =", aGroupOnShell.Size()
63 print "aGroupOnShell ids :", aGroupOnShell.GetListOfID()
64
65 print " "
66
67 print "Re-compute mesh, contents of aGroupOnShell changes again:"
68 smesh.Compute(mesh, box)
69 print "aGroupOnShell size =", aGroupOnShell.Size()
70 print "aGroupOnShell ids :", aGroupOnShell.GetListOfID()
71
72 salome.sg.updateObjBrowser(1);