1 # -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE
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.
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.
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
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
24 from salome.geom import geomBuilder
25 geompy = geomBuilder.New(salome.myStudy)
27 import SMESH, SALOMEDS
28 from salome.smesh import smeshBuilder
29 smesh = smeshBuilder.New(salome.myStudy)
33 Face_1 = geompy.MakeFaceHW(100, 100, 1)
34 geompy.addToStudy( Face_1, "Face_1" )
36 smesh.SetCurrentStudy(salome.myStudy)
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()
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 ]
53 aRedGroup = Mesh_1.GetMesh().CreateGroup( SMESH.FACE, "Red" )
54 aRedGroup.Add( aListOfElems );
55 aRedGroup.SetColor( SALOMEDS.Color( 1, 0, 0 ) )
57 aListOfElems = [ 55, 56, 57, 58, 59,
62 105, 106, 107, 108, 109,
63 115, 116, 117, 118, 119,
64 125, 126, 127, 128, 129 ]
66 aGreenGroup = Mesh_1.GetMesh().CreateGroup( SMESH.FACE, "Green" )
67 aGreenGroup.Add( aListOfElems );
68 aGreenGroup.SetColor( SALOMEDS.Color( 0, 1, 0 ) )
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 ]
77 aBlueGroup = Mesh_1.GetMesh().CreateGroup( SMESH.FACE, "Blue" )
78 aBlueGroup.Add( aListOfElems );
79 aBlueGroup.SetColor( SALOMEDS.Color( 0, 0, 1 ) )
82 aUnGrp = Mesh_1.UnionListOfGroups([aRedGroup, aGreenGroup, aBlueGroup], "UnionGrp" )
84 # IntersectListOfGroups()
85 aIntGrp=Mesh_1.IntersectListOfGroups([aRedGroup, aGreenGroup, aBlueGroup], "IntGrp" )
88 aCutGrp=Mesh_1.CutListOfGroups([aRedGroup],[aGreenGroup,aBlueGroup],"CutGrp")
90 salome.sg.updateObjBrowser( 1 )