Salome HOME
Merge branch 'master' into gni/evolution
[modules/smesh.git] / src / Tools / blocFissure / CasTests / ellipse_2.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
21 """problème de fissure non plane, débouchante non normale"""
22
23 import os
24 import logging
25
26 from blocFissure import gmu
27 from blocFissure.gmu.geomsmesh import geompy, smesh
28 from blocFissure.gmu.genereMeshCalculZoneDefaut import genereMeshCalculZoneDefaut
29
30 import GEOM
31 import SALOMEDS
32 import SMESH
33
34 from .ellipse_1 import ellipse_1
35
36 class ellipse_2(ellipse_1):
37   """problème de fissure non plane, débouchante non normale"""
38
39   nomProbleme = "ellipse2"
40
41   # ---------------------------------------------------------------------------
42   def genereShapeFissure( self, geometriesSaines, geomParams, shapeFissureParams, \
43                                 mailleur="MeshGems"):
44     """Importe la géométrie de la fissure"""
45     texte = "genereShapeFissure pour '{}'".format(self.nomCas)
46     logging.info(texte)
47
48     lgInfluence = shapeFissureParams['lgInfluence']
49
50     shellFiss = geompy.ImportBREP(os.path.join(gmu.pathBloc, "materielCasTests", "ellipse1_pb.brep"))
51     fondFiss = geompy.CreateGroup(shellFiss, geompy.ShapeType["EDGE"])
52     geompy.UnionIDs(fondFiss, [3])
53     geompy.addToStudy( shellFiss, 'shellFiss' )
54     geompy.addToStudyInFather( shellFiss, fondFiss, 'fondFiss' )
55
56     mailleur = self.mailleur2d3d()
57     coordsNoeudsFissure = genereMeshCalculZoneDefaut(shellFiss, 5 ,25, mailleur)
58
59     centre = None
60
61     return [shellFiss, centre, lgInfluence, coordsNoeudsFissure, fondFiss]
62
63   # ---------------------------------------------------------------------------
64   def setReferencesMaillageFissure(self):
65     self.referencesMaillageFissure = dict( \
66                                           Entity_Quad_Quadrangle = 1748, \
67                                           Entity_Quad_Hexa = 3795, \
68                                           Entity_Node = 22219, \
69                                           Entity_Quad_Edge = 258, \
70                                           Entity_Quad_Triangle = 434, \
71                                           Entity_Quad_Tetra = 2574, \
72                                           Entity_Quad_Pyramid = 199, \
73                                           Entity_Quad_Penta = 120 \
74                                          )