2014-01-09 14:20:44 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2020-04-15 17:49:00 +03:00
|
|
|
# Copyright (C) 2014-2020 EDF R&D
|
2019-02-14 14:55:47 +03:00
|
|
|
#
|
|
|
|
# This library is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU Lesser General Public
|
|
|
|
# License as published by the Free Software Foundation; either
|
|
|
|
# version 2.1 of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This library is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
# Lesser General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU Lesser General Public
|
|
|
|
# License along with this library; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
#
|
|
|
|
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
|
|
|
#
|
2014-01-09 14:20:44 +00:00
|
|
|
|
2017-03-20 13:27:30 +01:00
|
|
|
from .cubeAngle import cubeAngle
|
2014-01-09 14:20:44 +00:00
|
|
|
|
|
|
|
class cubeAngle2(cubeAngle):
|
2021-01-21 16:09:37 +01:00
|
|
|
"""problème de fissure plane coupant 2 faces (angle), débouches normaux, objet plan
|
|
|
|
|
2014-01-09 14:20:44 +00:00
|
|
|
detection d'un probleme de tolerance sur les edges de jonction pipe et face fissure externe
|
|
|
|
"""
|
|
|
|
|
|
|
|
nomProbleme = "cubeAngle2"
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
def setParamShapeFissure(self):
|
|
|
|
"""
|
2014-09-08 14:58:52 +02:00
|
|
|
paramètres de la fissure pour méthode construitFissureGenerale
|
2014-01-09 14:20:44 +00:00
|
|
|
lgInfluence : distance autour de la shape de fissure a remailler (A ajuster selon le maillage)
|
|
|
|
rayonPipe : le rayon du pile maillé en hexa autour du fond de fissure
|
|
|
|
"""
|
|
|
|
self.shapeFissureParams = dict(lgInfluence = 20,
|
|
|
|
rayonPipe = 5)
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
def setParamMaillageFissure(self):
|
|
|
|
self.maillageFissureParams = dict(nomRep = '.',
|
|
|
|
nomFicSain = self.nomCas,
|
|
|
|
nomFicFissure = 'fissure_' + self.nomCas,
|
|
|
|
nbsegRad = 5,
|
|
|
|
nbsegCercle = 32,
|
|
|
|
areteFaceFissure = 5)
|
|
|
|
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
def setReferencesMaillageFissure(self):
|
2021-01-20 17:17:56 +01:00
|
|
|
self.referencesMaillageFissure = dict( \
|
|
|
|
Entity_Quad_Quadrangle = 2350, \
|
|
|
|
Entity_Quad_Hexa = 5315, \
|
|
|
|
Entity_Node = 38196, \
|
|
|
|
Entity_Quad_Edge = 345, \
|
|
|
|
Entity_Quad_Triangle = 1214, \
|
|
|
|
Entity_Quad_Tetra = 7772, \
|
|
|
|
Entity_Quad_Pyramid = 620, \
|
2021-01-20 19:15:58 +01:00
|
|
|
Entity_Quad_Penta = 512 \
|
2021-01-20 17:17:56 +01:00
|
|
|
)
|
2014-01-09 14:20:44 +00:00
|
|
|
|