2014-09-14 21:38:46 +02: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-09-14 21:38:46 +02:00
|
|
|
|
|
|
|
import logging
|
|
|
|
|
2017-03-20 13:27:30 +01:00
|
|
|
from .geomsmesh import geompy
|
|
|
|
from .geomsmesh import smesh
|
2014-09-21 21:49:53 +02:00
|
|
|
import SMESH
|
2014-09-14 21:38:46 +02:00
|
|
|
|
2017-03-20 13:27:30 +01:00
|
|
|
from .putName import putName
|
2021-01-26 18:34:02 +01:00
|
|
|
|
2016-05-12 15:19:52 +02:00
|
|
|
def mailleAretesEtJonction(internalBoundary, aretesVivesCoupees, lgAretesVives):
|
2014-09-14 21:38:46 +02:00
|
|
|
"""
|
|
|
|
edges de bord, faces défaut à respecter
|
|
|
|
"""
|
|
|
|
logging.info('start')
|
|
|
|
|
|
|
|
aFilterManager = smesh.CreateFilterManager()
|
|
|
|
nbAdded, internalBoundary, _NoneGroup = internalBoundary.MakeBoundaryElements( SMESH.BND_1DFROM2D, '', '', 0, [ ])
|
|
|
|
criteres = []
|
|
|
|
unCritere = smesh.GetCriterion(SMESH.EDGE,SMESH.FT_FreeBorders,SMESH.FT_Undefined,0)
|
|
|
|
criteres.append(unCritere)
|
|
|
|
filtre = smesh.GetFilterFromCriteria(criteres)
|
|
|
|
bordsLibres = internalBoundary.MakeGroupByFilter( 'bords', filtre )
|
|
|
|
smesh.SetName(bordsLibres, 'bordsLibres')
|
|
|
|
|
|
|
|
# --- pour aider l'algo hexa-tetra à ne pas mettre de pyramides à l'exterieur des volumes repliés sur eux-mêmes
|
|
|
|
# on désigne les faces de peau en quadrangles par le groupe "skinFaces"
|
|
|
|
|
|
|
|
skinFaces = internalBoundary.CreateEmptyGroup( SMESH.FACE, 'skinFaces' )
|
|
|
|
nbAdd = skinFaces.AddFrom( internalBoundary.GetMesh() )
|
|
|
|
|
|
|
|
# --- maillage des éventuelles arêtes vives entre faces reconstruites
|
2021-01-26 18:34:02 +01:00
|
|
|
|
2014-09-21 21:49:53 +02:00
|
|
|
grpAretesVives = None
|
2014-09-14 21:38:46 +02:00
|
|
|
if len(aretesVivesCoupees) > 0:
|
|
|
|
aretesVivesC = geompy.MakeCompound(aretesVivesCoupees)
|
|
|
|
meshAretesVives = smesh.Mesh(aretesVivesC)
|
|
|
|
algo1d = meshAretesVives.Segment()
|
2016-05-12 15:19:52 +02:00
|
|
|
hypo1d = algo1d.LocalLength(lgAretesVives,[],1e-07)
|
2014-09-14 21:38:46 +02:00
|
|
|
putName(algo1d.GetSubMesh(), "aretesVives")
|
|
|
|
putName(algo1d, "algo1d_aretesVives")
|
|
|
|
putName(hypo1d, "hypo1d_aretesVives")
|
2021-01-26 18:34:02 +01:00
|
|
|
is_done = meshAretesVives.Compute()
|
|
|
|
text = "meshAretesVives.Compute"
|
|
|
|
if is_done:
|
|
|
|
logging.info(text+" OK")
|
|
|
|
else:
|
|
|
|
text = "Erreur au calcul du maillage.\n" + text
|
|
|
|
logging.info(text)
|
|
|
|
raise Exception(text)
|
2014-09-14 21:38:46 +02:00
|
|
|
grpAretesVives = meshAretesVives.CreateEmptyGroup( SMESH.EDGE, 'grpAretesVives' )
|
|
|
|
nbAdd = grpAretesVives.AddFrom( meshAretesVives.GetMesh() )
|
|
|
|
|
2021-01-26 18:34:02 +01:00
|
|
|
return (internalBoundary, bordsLibres, grpAretesVives)
|