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
|
|
|
|
import math
|
|
|
|
|
2017-03-20 13:27:30 +01:00
|
|
|
from .geomsmesh import geompy
|
|
|
|
from .geomsmesh import smesh
|
2021-01-26 18:34:02 +01:00
|
|
|
|
2021-04-02 17:59:18 +02:00
|
|
|
from .putName import putName
|
|
|
|
|
2021-01-26 18:34:02 +01:00
|
|
|
def calculePointsAxiauxPipe(edgesFondFiss, edgesIdByOrientation, facesDefaut,
|
2014-09-14 21:38:46 +02:00
|
|
|
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
|
|
|
|
2014-09-14 21:38:46 +02:00
|
|
|
- détections des points a respecter : jonction des edges/faces constituant
|
|
|
|
la face de fissure externe au pipe
|
|
|
|
- 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-02 17:59:18 +02:00
|
|
|
logging.info("Pour le cas n°%d", nro_cas)
|
2014-09-14 21:38:46 +02:00
|
|
|
|
2021-01-26 18:34:02 +01:00
|
|
|
# --- option de maillage selon le rayon de courbure du fond de fissure
|
2014-09-14 21:38:46 +02:00
|
|
|
lenEdgeFondExt = 0
|
|
|
|
for edff in edgesFondFiss:
|
|
|
|
lenEdgeFondExt += geompy.BasicProperties(edff)[0]
|
2021-01-26 18:34:02 +01:00
|
|
|
|
|
|
|
disfond = list()
|
2014-09-14 21:38:46 +02:00
|
|
|
for filling in facesDefaut:
|
|
|
|
disfond.append(geompy.MinDistance(centreFondFiss, filling))
|
|
|
|
disfond.sort()
|
|
|
|
rcourb = disfond[0]
|
2021-01-26 18:34:02 +01:00
|
|
|
texte = "rcourb: {}, lenEdgeFondExt: {}, lenSegPipe: {}".format(rcourb, lenEdgeFondExt, lenSegPipe)
|
|
|
|
logging.info(texte)
|
2014-09-14 21:38:46 +02:00
|
|
|
nbSegQuart = 5 # on veut 5 segments min sur un quart de cercle
|
|
|
|
alpha = math.pi/(4*nbSegQuart)
|
|
|
|
deflexion = rcourb*(1.0 -math.cos(alpha))
|
|
|
|
lgmin = lenSegPipe*0.25
|
2021-01-26 18:34:02 +01:00
|
|
|
lgmax = lenSegPipe*1.5
|
|
|
|
texte = "==> deflexion: {}, lgmin: {}, lgmax: {}".format(deflexion, lgmin, lgmax)
|
|
|
|
logging.info(texte)
|
2014-09-14 21:38:46 +02:00
|
|
|
|
|
|
|
meshFondExt = smesh.Mesh(wireFondFiss)
|
2021-04-06 17:50:03 +02:00
|
|
|
putName(meshFondExt, "wireFondFiss", i_pref=nro_cas)
|
2014-09-14 21:38:46 +02:00
|
|
|
algo1d = meshFondExt.Segment()
|
2021-04-02 17:59:18 +02:00
|
|
|
hypo1d = algo1d.Adaptive(lgmin, lgmax, deflexion) # a ajuster selon la profondeur de la fissure
|
|
|
|
putName(algo1d.GetSubMesh(), "wireFondFiss", i_pref=nro_cas)
|
|
|
|
putName(algo1d, "algo1d_wireFondFiss", i_pref=nro_cas)
|
|
|
|
putName(hypo1d, "hypo1d_wireFondFiss", i_pref=nro_cas)
|
2021-01-27 11:51:06 +01:00
|
|
|
|
2021-01-26 18:34:02 +01:00
|
|
|
is_done = meshFondExt.Compute()
|
|
|
|
text = "calculePointsAxiauxPipe meshFondExt.Compute"
|
|
|
|
if is_done:
|
|
|
|
logging.info(text)
|
|
|
|
else:
|
|
|
|
text = "Erreur au calcul du maillage.\n" + text
|
|
|
|
logging.info(text)
|
|
|
|
raise Exception(text)
|
|
|
|
|
|
|
|
ptGSdic = dict() # dictionnaire [paramètre sur la courbe] --> point géométrique
|
2014-09-14 21:38:46 +02:00
|
|
|
allNodeIds = meshFondExt.GetNodesId()
|
|
|
|
for nodeId in allNodeIds:
|
|
|
|
xyz = meshFondExt.GetNodeXYZ(nodeId)
|
|
|
|
#logging.debug("nodeId %s, coords %s", nodeId, str(xyz))
|
2021-04-01 16:19:17 +02:00
|
|
|
point = geompy.MakeVertex(xyz[0], xyz[1], xyz[2])
|
|
|
|
parametre, _, EdgeInWireIndex = geompy.MakeProjectionOnWire(point, wireFondFiss) # parametre compris entre 0 et 1
|
2014-09-14 21:38:46 +02:00
|
|
|
edgeOrder = edgesIdByOrientation[EdgeInWireIndex]
|
2021-04-01 16:19:17 +02:00
|
|
|
ptGSdic[(edgeOrder, EdgeInWireIndex, parametre)] = point
|
|
|
|
#logging.debug("nodeId %s, parametre %s", nodeId, str(parametre))
|
2021-01-26 18:34:02 +01:00
|
|
|
usort = sorted(ptGSdic)
|
2014-09-14 21:38:46 +02:00
|
|
|
logging.debug("nombre de points obtenus par deflexion %s",len(usort))
|
2021-01-26 18:34:02 +01:00
|
|
|
|
|
|
|
centres = list()
|
|
|
|
origins = list()
|
|
|
|
normals = list()
|
2014-09-14 21:38:46 +02:00
|
|
|
for edu in usort:
|
|
|
|
vertcx = ptGSdic[edu]
|
2021-04-06 17:50:03 +02:00
|
|
|
norm = geompy.MakeTangentOnCurve(edgesFondFiss[edu[1]], edu[2])
|
2021-04-01 16:19:17 +02:00
|
|
|
plan = geompy.MakePlane(vertcx, norm, 3.*rayonPipe)
|
2021-01-26 18:34:02 +01:00
|
|
|
part = geompy.MakePartition([plan], [wirePipeFiss], list(), list(), geompy.ShapeType["VERTEX"], 0, list(), 0)
|
2014-09-14 21:38:46 +02:00
|
|
|
liste = geompy.ExtractShapes(part, geompy.ShapeType["VERTEX"], True)
|
2021-04-06 17:50:03 +02:00
|
|
|
if ( len(liste) == 5 ): # 4 coins du plan plus intersection recherchée
|
2014-09-14 21:38:46 +02:00
|
|
|
for point in liste:
|
|
|
|
if geompy.MinDistance(point, vertcx) < 1.1*rayonPipe: # les quatre coins sont plus loin
|
|
|
|
vertpx = point
|
|
|
|
break
|
|
|
|
centres.append(vertcx)
|
|
|
|
origins.append(vertpx)
|
|
|
|
normals.append(norm)
|
|
|
|
# name = "vertcx%d"%i
|
|
|
|
# geompy.addToStudyInFather(wireFondFiss, vertcx, name)
|
|
|
|
# name = "vertpx%d"%i
|
|
|
|
# geompy.addToStudyInFather(wireFondFiss, vertpx, name)
|
|
|
|
# name = "plan%d"%i
|
|
|
|
# geompy.addToStudyInFather(wireFondFiss, plan, name)
|
|
|
|
|
|
|
|
# --- maillage du pipe étendu, sans tenir compte de l'intersection avec la face de peau
|
2021-01-26 18:34:02 +01:00
|
|
|
|
2014-09-14 21:38:46 +02:00
|
|
|
logging.debug("nbsegCercle %s", nbsegCercle)
|
2021-01-26 18:34:02 +01:00
|
|
|
|
2014-09-14 21:38:46 +02:00
|
|
|
# -----------------------------------------------------------------------
|
|
|
|
# --- points géométriques
|
2021-01-26 18:34:02 +01:00
|
|
|
|
|
|
|
gptsdisks = list() # vertices géométrie de tous les disques
|
2021-04-01 16:19:17 +02:00
|
|
|
raydisks = [list() for _ in range(nbsegCercle)]
|
|
|
|
for indice, centres_i in enumerate(centres): # boucle sur les disques
|
2021-01-26 18:34:02 +01:00
|
|
|
gptdsk = list() # vertices géométrie d'un disque
|
|
|
|
vertcx = centres_i
|
2021-04-01 16:19:17 +02:00
|
|
|
vertpx = origins[indice]
|
|
|
|
normal = normals[indice]
|
2014-09-14 21:38:46 +02:00
|
|
|
vec1 = geompy.MakeVector(vertcx, vertpx)
|
2021-01-26 18:34:02 +01:00
|
|
|
|
2014-09-14 21:38:46 +02:00
|
|
|
points = [vertcx] # les points du rayon de référence
|
2021-04-01 16:19:17 +02:00
|
|
|
dist_0 = rayonPipe/float(nbsegRad)
|
2021-04-06 17:50:03 +02:00
|
|
|
for j_aux in range(nbsegRad):
|
|
|
|
point = geompy.MakeTranslationVectorDistance(vertcx, vec1, float(j_aux+1)*dist_0)
|
2021-04-01 16:19:17 +02:00
|
|
|
points.append(point)
|
2014-09-14 21:38:46 +02:00
|
|
|
gptdsk.append(points)
|
2021-04-01 16:19:17 +02:00
|
|
|
point = geompy.MakeTranslationVectorDistance(vertcx, vec1, 1.5*rayonPipe)
|
|
|
|
rayon = geompy.MakeLineTwoPnt(vertcx, point)
|
2014-09-14 21:38:46 +02:00
|
|
|
raydisks[0].append(rayon)
|
2021-01-26 18:34:02 +01:00
|
|
|
|
2021-04-01 16:19:17 +02:00
|
|
|
angle_0 = 2.*math.pi/float(nbsegCercle)
|
2021-04-06 17:50:03 +02:00
|
|
|
for k_aux in range(nbsegCercle-1):
|
|
|
|
angle = float(k_aux+1)*angle_0
|
2014-09-14 21:38:46 +02:00
|
|
|
pts = [vertcx] # les points d'un rayon obtenu par rotation
|
2021-04-06 17:50:03 +02:00
|
|
|
for j_aux in range(nbsegRad):
|
|
|
|
point = geompy.MakeRotation(points[j_aux+1], normal, angle)
|
2021-04-01 16:19:17 +02:00
|
|
|
pts.append(point)
|
2014-09-14 21:38:46 +02:00
|
|
|
gptdsk.append(pts)
|
|
|
|
ray = geompy.MakeRotation(rayon, normal, angle)
|
2021-04-06 17:50:03 +02:00
|
|
|
raydisks[k_aux+1].append(ray)
|
2021-01-26 18:34:02 +01:00
|
|
|
|
2014-09-14 21:38:46 +02:00
|
|
|
gptsdisks.append(gptdsk)
|
2021-01-26 18:34:02 +01:00
|
|
|
|
2014-09-14 21:38:46 +02:00
|
|
|
return (centres, gptsdisks, raydisks)
|