Salome HOME
Copyright update 2020
[modules/smesh.git] / src / SMESH_SWIG / ex30_groupsOp.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2020  CEA/DEN, EDF R&D, OPEN CASCADE
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, or (at your option) any later version.
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 import salome
22 salome.salome_init()
23 import GEOM
24 from salome.geom import geomBuilder
25 geompy = geomBuilder.New()
26
27 import SMESH, SALOMEDS
28 from salome.smesh import smeshBuilder
29 smesh =  smeshBuilder.New()
30 import math
31
32 global Face_1
33 Face_1 = geompy.MakeFaceHW(100, 100, 1)
34 geompy.addToStudy( Face_1, "Face_1" )
35
36 smesh.UpdateStudy()
37 from salome.StdMeshers import StdMeshersBuilder
38 pattern = smesh.GetPattern()
39 Mesh_1 = smesh.Mesh(Face_1)
40 Regular_1D = Mesh_1.Segment()
41 Nb_Segments_1 = Regular_1D.NumberOfSegments(10)
42 Nb_Segments_1.SetDistrType( 0 )
43 Quadrangle_2D = Mesh_1.Quadrangle()
44 isDone = Mesh_1.Compute()
45
46 # groups creation
47
48 aListOfElems = [ 52, 53, 54, 55, 56, 57,
49                  62, 63, 64, 65, 66, 67,
50                  72, 73, 74, 75, 76, 77,
51                  82, 83, 84, 85, 86, 87 ]
52                  
53 aRedGroup = Mesh_1.GetMesh().CreateGroup( SMESH.FACE, "Red" )
54 aRedGroup.Add( aListOfElems );
55 aRedGroup.SetColor( SALOMEDS.Color( 1, 0, 0 ) )
56
57 aListOfElems = [ 55, 56, 57, 58, 59,
58                  65, 66, 67, 68, 69,
59                  75, 76, 77, 78, 79,
60                  85, 86, 87, 88, 89,
61                  95, 96, 97, 98, 99,
62                  105, 106, 107, 108, 109,
63                  115, 116, 117, 118, 119,
64                  125, 126, 127, 128, 129 ]
65                  
66 aGreenGroup = Mesh_1.GetMesh().CreateGroup( SMESH.FACE, "Green" )
67 aGreenGroup.Add( aListOfElems );
68 aGreenGroup.SetColor( SALOMEDS.Color( 0, 1, 0 ) )
69
70 aListOfElems = [ 63, 64, 65, 66, 67, 68, 
71                  73, 74, 75, 76, 77, 78,
72                  83, 84, 85, 86, 87, 88, 
73                  93, 94, 95, 96, 97, 98, 
74                  103, 104, 105, 106, 107, 108, 
75                  113, 114, 115, 116, 117, 118 ]
76                  
77 aBlueGroup = Mesh_1.GetMesh().CreateGroup( SMESH.FACE, "Blue" )
78 aBlueGroup.Add( aListOfElems );
79 aBlueGroup.SetColor( SALOMEDS.Color( 0, 0, 1 ) )
80
81 # UnionListOfGroups()
82 aUnGrp = Mesh_1.UnionListOfGroups([aRedGroup, aGreenGroup, aBlueGroup], "UnionGrp" )
83
84 # IntersectListOfGroups()
85 aIntGrp=Mesh_1.IntersectListOfGroups([aRedGroup, aGreenGroup, aBlueGroup], "IntGrp" )
86
87 # CutListOfGroups()
88 aCutGrp=Mesh_1.CutListOfGroups([aRedGroup],[aGreenGroup,aBlueGroup],"CutGrp")
89
90 salome.sg.updateObjBrowser()
91