Salome HOME
simplification
[modules/smesh.git] / src / Tools / blocFissure / gmu / construitMaillagePipe_c.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2014-2021  EDF R&D
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 """Les groupes des faces débouchantes"""
21
22 import SMESH
23
24 def construitMaillagePipe_c(idisk, \
25                             idisklim, nbsegCercle, \
26                             meshPipe, mptdsk, nbsegRad):
27   """Les groupes des faces débouchantes"""
28   #logging.info('start')
29
30   faces = list()
31   for n_seg in range(nbsegRad):
32     for n_cercle in range(nbsegCercle):
33       n_cercle_1 = n_cercle+1
34       if n_cercle ==  nbsegCercle-1:
35         n_cercle_1 = 0
36       if n_seg == 0:
37         id_face = meshPipe.AddFace([mptdsk[n_cercle][0], mptdsk[n_cercle][1], mptdsk[n_cercle_1][1]]) # triangle
38       else:
39         id_face = meshPipe.AddFace([mptdsk[n_cercle][n_seg], mptdsk[n_cercle][n_seg+1], mptdsk[n_cercle_1][n_seg+1], mptdsk[n_cercle_1][n_seg]]) # quadrangle
40       faces.append(id_face)
41
42   if idisk == idisklim[0]:
43     groupe = meshPipe.CreateEmptyGroup(SMESH.FACE, "faceCircPipe0")
44   else:
45     groupe = meshPipe.CreateEmptyGroup(SMESH.FACE, "faceCircPipe1")
46
47   groupe.Add(faces)
48
49   return