Salome HOME
Update of CheckDone
[modules/smesh.git] / src / Tools / blocFissure / gmu / trouveEdgesFissPeau.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 """Pour les faces de peau sans extremité débouchante de fissure, il faut recenser les edges de fissure sur la face de peau"""
21
22 import logging
23
24 from .geomsmesh import geompy
25 from .geomsmesh import geomPublishInFather
26
27 from . import initLog
28
29 def trouveEdgesFissPeau(facesInside, facesOnside, edgesPipeIn, edgesFondIn, partitionPeauFissFond, edgesFissExtPeau):
30   """Pour les faces de peau sans extremité débouchante de fissure, il faut recenser les edges de fissure sur la face de peau"""
31   logging.info('start')
32
33   i_aux = 0
34   for face in facesInside:
35
36     edgesPeauFis = list()
37     edgesPipeFis = list()
38     edgesPipeFnd = list()
39     try:
40       edgesPeauFis = geompy.GetSharedShapesMulti([geompy.MakeCompound(facesOnside), face], geompy.ShapeType["EDGE"])
41       edgesPipeFis = geompy.GetSharedShapesMulti([geompy.MakeCompound(edgesPipeIn), face], geompy.ShapeType["EDGE"])
42       edgesPipeFnd = geompy.GetSharedShapesMulti([geompy.MakeCompound(edgesFondIn), face], geompy.ShapeType["EDGE"])
43     except:
44       pass
45
46     if ( edgesPeauFis and edgesPipeFis and ( not edgesPipeFnd ) ):
47       edgesFissExtPeau.append(edgesPeauFis[0])
48       name="edgesFissExtPeau{}".format(i_aux)
49       geomPublishInFather(initLog.debug,partitionPeauFissFond, edgesPeauFis[0], name)
50       i_aux += 1
51
52   return edgesFissExtPeau