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