Salome HOME
Copyright update 2022
[modules/smesh.git] / src / Tools / blocFissure / CasTests / eprouvetteDroite_2.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2014-2022  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 """problème de fissure plane coupant 3 faces (éprouvette), débouches non normaux, objet plan"""
21
22 import os
23 import logging
24
25 from blocFissure import gmu
26 from blocFissure.gmu.geomsmesh import geompy
27 from blocFissure.gmu.genereMeshCalculZoneDefaut import genereMeshCalculZoneDefaut
28
29 from .eprouvetteDroite import eprouvetteDroite
30
31 class eprouvetteDroite_2(eprouvetteDroite):
32   """problème de fissure plane coupant 3 faces (éprouvette), débouches non normaux, objet plan"""
33
34   nomProbleme = "eprouvetteDroite_2"
35
36   # ---------------------------------------------------------------------------
37   def genereShapeFissure( self, geometriesSaines, geomParams, shapeFissureParams, \
38                                 mailleur="MeshGems"):
39     logging.info("genereShapeFissure %s", self.nomCas)
40
41     lgInfluence = shapeFissureParams['lgInfluence']
42
43     shellFiss = geompy.ImportBREP(os.path.join(gmu.pathBloc, "materielCasTests", "EprouvetteDroiteFiss_2.brep"))
44     fondFiss = geompy.CreateGroup(shellFiss, geompy.ShapeType["EDGE"])
45     geompy.UnionIDs(fondFiss, [10])
46     geompy.addToStudy( shellFiss, 'shellFiss' )
47     geompy.addToStudyInFather( shellFiss, fondFiss, 'fondFiss' )
48
49     mailleur = self.mailleur2d3d()
50     coordsNoeudsFissure = genereMeshCalculZoneDefaut(shellFiss, 5 ,10, mailleur, self.numeroCas)
51
52     centre = None
53     return [shellFiss, centre, lgInfluence, coordsNoeudsFissure, fondFiss]
54
55   # ---------------------------------------------------------------------------
56   def setReferencesMaillageFissure(self):
57     self.referencesMaillageFissure = dict( \
58                                           Entity_Quad_Quadrangle = 3724, \
59                                           Entity_Quad_Hexa = 9504, \
60                                           Entity_Node = 54049, \
61                                           Entity_Quad_Edge = 478, \
62                                           Entity_Quad_Triangle = 724, \
63                                           Entity_Quad_Tetra = 6766, \
64                                           Entity_Quad_Pyramid = 396, \
65                                           Entity_Quad_Penta = 96 \
66                                          )