2014-09-14 21:38:46 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
2021-03-23 17:44:27 +03:00
|
|
|
# Copyright (C) 2014-2021 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
|
|
|
|
#
|
2021-04-01 16:19:17 +02:00
|
|
|
"""Préparation maillage du pipe"""
|
2014-09-14 21:38:46 +02:00
|
|
|
|
|
|
|
import logging
|
|
|
|
|
2021-04-15 15:40:06 +02:00
|
|
|
from .calculePointsAxiauxPipe_a import calculePointsAxiauxPipe_a
|
|
|
|
from .calculePointsAxiauxPipe_b import calculePointsAxiauxPipe_b
|
|
|
|
from .calculePointsAxiauxPipe_c import calculePointsAxiauxPipe_c
|
2021-01-26 18:34:02 +01:00
|
|
|
|
2021-04-15 15:40:06 +02:00
|
|
|
def calculePointsAxiauxPipe(edgesFondFiss, edgesIdByOrientation, facesDefaut, \
|
|
|
|
centreFondFiss, wireFondFiss, wirePipeFiss, \
|
2021-04-02 17:59:18 +02:00
|
|
|
lenSegPipe, rayonPipe, nbsegCercle, nbsegRad, \
|
2021-04-06 17:43:34 +02:00
|
|
|
nro_cas=None):
|
2021-04-01 16:19:17 +02:00
|
|
|
"""Préparation maillage du pipe :
|
2021-01-26 18:34:02 +01:00
|
|
|
|
2021-04-15 15:40:06 +02:00
|
|
|
- détections des points a respecter : jonction des edges/faces constituant la face de fissure externe au pipe
|
2014-09-14 21:38:46 +02:00
|
|
|
- points sur les edges de fond de fissure et edges pipe/face fissure,
|
2021-01-26 18:34:02 +01:00
|
|
|
- vecteurs tangents au fond de fissure (normal au disque maillé)
|
2014-09-14 21:38:46 +02:00
|
|
|
"""
|
2021-01-26 18:34:02 +01:00
|
|
|
|
2014-09-14 21:38:46 +02:00
|
|
|
logging.info('start')
|
2021-04-08 10:53:24 +02:00
|
|
|
logging.info("Pour le cas n°%s", nro_cas)
|
2014-09-14 21:38:46 +02:00
|
|
|
|
2021-04-15 15:40:06 +02:00
|
|
|
# --- Maillage selon le rayon de courbure du fond de fissure
|
2021-01-26 18:34:02 +01:00
|
|
|
|
2021-04-15 15:40:06 +02:00
|
|
|
meshFondFiss = calculePointsAxiauxPipe_a(facesDefaut, centreFondFiss, wireFondFiss, \
|
|
|
|
lenSegPipe, \
|
|
|
|
nro_cas)
|
2014-09-14 21:38:46 +02:00
|
|
|
# --- points géométriques
|
2021-01-26 18:34:02 +01:00
|
|
|
|
2021-04-15 15:40:06 +02:00
|
|
|
centres, origins, normals = calculePointsAxiauxPipe_b(meshFondFiss, \
|
|
|
|
edgesFondFiss, edgesIdByOrientation, \
|
|
|
|
wireFondFiss, wirePipeFiss, \
|
|
|
|
rayonPipe)
|
2021-01-26 18:34:02 +01:00
|
|
|
|
2021-04-15 15:40:06 +02:00
|
|
|
gptsdisks, raydisks = calculePointsAxiauxPipe_c(centres, origins, normals, \
|
|
|
|
rayonPipe, nbsegCercle, nbsegRad)
|
2021-01-26 18:34:02 +01:00
|
|
|
|
2014-09-14 21:38:46 +02:00
|
|
|
return (centres, gptsdisks, raydisks)
|