Salome HOME
Nommage des éléments de smesh
[modules/smesh.git] / src / Tools / blocFissure / gmu / mailleAretesEtJonction.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 """edges de bord, faces défaut à respecter"""
21
22 import logging
23
24 import SMESH
25
26 from .geomsmesh import geompy
27 from .geomsmesh import smesh
28
29 from .putName import putName
30
31 def mailleAretesEtJonction (internalBoundary, aretesVivesCoupees, lgAretesVives, \
32                             nro_cas=-1):
33   """edges de bord, faces défaut à respecter"""
34   logging.info('start')
35
36   _ = smesh.CreateFilterManager()
37   _, internalBoundary, _NoneGroup = internalBoundary.MakeBoundaryElements( SMESH.BND_1DFROM2D, '', '', 0, [  ])
38   criteres = list()
39   unCritere = smesh.GetCriterion(SMESH.EDGE,SMESH.FT_FreeBorders,SMESH.FT_Undefined,0)
40   criteres.append(unCritere)
41   filtre = smesh.GetFilterFromCriteria(criteres)
42   bordsLibres = internalBoundary.MakeGroupByFilter( 'bords', filtre )
43   putName(bordsLibres, 'bordsLibres', i_pref=nro_cas)
44
45   # --- pour aider l'algo hexa-tetra à ne pas mettre de pyramides à l'exterieur des volumes repliés sur eux-mêmes
46   #     on désigne les faces de peau en quadrangles par le groupe "skinFaces"
47
48   skinFaces = internalBoundary.CreateEmptyGroup( SMESH.FACE, 'skinFaces' )
49   _ = skinFaces.AddFrom( internalBoundary.GetMesh() )
50
51   # --- maillage des éventuelles arêtes vives entre faces reconstruites
52
53   grpAretesVives = None
54   if aretesVivesCoupees:
55
56     aretesVivesC = geompy.MakeCompound(aretesVivesCoupees)
57     meshAretesVives = smesh.Mesh(aretesVivesC)
58     algo1d = meshAretesVives.Segment()
59     hypo1d = algo1d.LocalLength(lgAretesVives,[],1e-07)
60     putName(algo1d.GetSubMesh(), "aretesVives", i_pref=nro_cas)
61     putName(algo1d, "algo1d_aretesVives", i_pref=nro_cas)
62     putName(hypo1d, "hypo1d_aretesVives", i_pref=nro_cas)
63
64     is_done = meshAretesVives.Compute()
65     text = "meshAretesVives.Compute"
66     if is_done:
67       logging.info(text+" OK")
68     else:
69       text = "Erreur au calcul du maillage.\n" + text
70       logging.info(text)
71       raise Exception(text)
72
73     grpAretesVives = meshAretesVives.CreateEmptyGroup( SMESH.EDGE, 'grpAretesVives' )
74     _ = grpAretesVives.AddFrom( meshAretesVives.GetMesh() )
75
76   return (internalBoundary, bordsLibres, grpAretesVives)