Salome HOME
Avoid installing redundant files
[modules/smesh.git] / src / Tools / blocFissure / gmu / creeZoneDefautDansObjetSain.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 """TODO: a compléter"""
21
22 import os
23
24 import logging
25 import SMESH
26 import SALOMEDS
27
28 from .geomsmesh import smesh
29
30 from .creeZoneDefautMaillage import creeZoneDefautMaillage
31 from .peauInterne import peauInterne
32 from .quadranglesToShapeNoCorner import quadranglesToShapeNoCorner
33 from .creeZoneDefautFilling import creeZoneDefautFilling
34 from .creeZoneDefautGeom import creeZoneDefautGeom
35 from .getCentreFondFiss import getCentreFondFiss
36
37 def creeZoneDefautDansObjetSain(geometriesSaines, maillagesSains, shapesFissure, \
38                                 shapeFissureParams, maillageFissureParams, \
39                                 nro_cas=-1):
40   """
41   #TODO: a compléter
42   """
43   logging.info('start')
44
45   geometrieSaine      = geometriesSaines[0]
46   maillageSain        = maillagesSains[0]
47   isHexa              = maillagesSains[1]
48   shapeDefaut         = shapesFissure[0]
49   tailleDefaut        = shapesFissure[2]
50   coordsNoeudsFissure = shapesFissure[3]
51
52   isElliptique = False
53   if 'elliptique' in shapeFissureParams:
54     isElliptique      = shapeFissureParams['elliptique']
55   if isElliptique:
56     if 'demiGrandAxe' in shapeFissureParams:
57       demiGrandAxe    = shapeFissureParams['demiGrandAxe']
58     else:
59       demiGrandAxe    = shapeFissureParams['longueur']
60     lgExtrusion = 2.0*demiGrandAxe
61   else:
62     lgExtrusion = 50.
63
64   nomRep              = maillageFissureParams['nomRep']
65   nomFicSain          = maillageFissureParams['nomFicSain']
66
67   fichierMaillageSain = os.path.join (nomRep , '{}.med'.format(nomFicSain))
68
69   # --- centre de fond de fissure et tangente
70
71   edgeFondExt, centreFondFiss, tgtCentre = getCentreFondFiss(shapesFissure)
72
73   # --- zone de défaut
74   nomZones = "zoneDefaut"
75
76   [origShapes, verticesShapes, dmoyen] = \
77     creeZoneDefautMaillage(maillagesSains, shapeDefaut, tailleDefaut, nomZones, coordsNoeudsFissure)
78
79   maillageSain.ExportMED(fichierMaillageSain)
80   logging.debug("fichier maillage sain %s", fichierMaillageSain)
81   [maillageSain, internalBoundary, zoneDefaut, zoneDefaut_skin, zoneDefaut_internalFaces, zoneDefaut_internalEdges] = \
82     peauInterne(fichierMaillageSain, shapeDefaut, nomZones, \
83                 nro_cas)
84
85   facesDefaut = list()
86   centresDefaut = list()
87   normalsDefaut = list()
88   extrusionsDefaut = list()
89   isPlane = False
90   if isHexa and not isPlane:
91     meshQuad =  smesh.CopyMesh( zoneDefaut_skin, 'meshQuad', 0, 0)
92
93     fillings, _, bordsPartages, fillconts, idFilToCont = quadranglesToShapeNoCorner(meshQuad, shapeFissureParams, centreFondFiss)
94
95     for filling in fillings:
96       [faceDefaut, centreDefaut, normalDefaut, extrusionDefaut] = \
97         creeZoneDefautFilling(filling, shapeDefaut, lgExtrusion)
98       facesDefaut.append(faceDefaut)
99       centresDefaut.append(centreDefaut)
100       normalsDefaut.append(normalDefaut)
101       extrusionsDefaut.append(extrusionDefaut)
102   else:
103     [facesDefaut, centreDefaut, normalDefaut, extrusionDefaut] = \
104       creeZoneDefautGeom( geometrieSaine, shapeDefaut, origShapes, verticesShapes, lgExtrusion)
105     bordsPartages = list()
106     for _ in facesDefaut:
107       bordsPartages.append([None,None]) # TODO : traitement des arêtes vives ?
108     fillconts = facesDefaut
109     idFilToCont = list(range(len(facesDefaut)))
110
111   return [facesDefaut, centresDefaut, normalsDefaut, extrusionsDefaut, \
112           dmoyen, bordsPartages, fillconts, idFilToCont, \
113           maillageSain, internalBoundary, \
114           zoneDefaut, zoneDefaut_skin, zoneDefaut_internalFaces, zoneDefaut_internalEdges, \
115           edgeFondExt, centreFondFiss, tgtCentre]