Salome HOME
Update copyrights
[modules/smesh.git] / src / Tools / blocFissure / gmu / mailleFacesFissure.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2014-2019  CEA/DEN, 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
21 import logging
22
23 from .geomsmesh import geompy
24 from .geomsmesh import smesh
25 from salome.smesh import smeshBuilder
26 import SMESH
27
28 from .putName import putName
29   
30 def mailleFacesFissure(faceFissureExterne, edgesPipeFissureExterneC, edgesPeauFissureExterneC,
31                         meshPipeGroups, areteFaceFissure, rayonPipe, nbsegRad):
32   """
33   maillage faces de fissure
34   """
35   logging.info('start')
36
37   meshFaceFiss = smesh.Mesh(faceFissureExterne)
38   algo2d = meshFaceFiss.Triangle(algo=smeshBuilder.NETGEN_1D2D)
39   hypo2d = algo2d.Parameters()
40   hypo2d.SetMaxSize( areteFaceFissure )
41   hypo2d.SetSecondOrder( 0 )
42   hypo2d.SetOptimize( 1 )
43   hypo2d.SetFineness( 2 )
44   hypo2d.SetMinSize( rayonPipe/float(nbsegRad) )
45   hypo2d.SetQuadAllowed( 0 )
46   putName(algo2d.GetSubMesh(), "faceFiss")
47   putName(algo2d, "algo2d_faceFiss")
48   putName(hypo2d, "hypo2d_faceFiss")
49   
50   algo1d = meshFaceFiss.UseExisting1DElements(geom=edgesPipeFissureExterneC)
51   hypo1d = algo1d.SourceEdges([ meshPipeGroups['edgeFaceFissGroup'] ],0,0)
52   putName(algo1d.GetSubMesh(), "edgeFissPeau")
53   putName(algo1d, "algo1d_edgeFissPeau")
54   putName(hypo1d, "hypo1d_edgeFissPeau")
55   
56   isDone = meshFaceFiss.Compute()
57   logging.info("meshFaceFiss fini")
58
59   grpFaceFissureExterne = meshFaceFiss.GroupOnGeom(faceFissureExterne, "fisOutPi", SMESH.FACE)
60   grpEdgesPeauFissureExterne = meshFaceFiss.GroupOnGeom(edgesPeauFissureExterneC,'edgesPeauFissureExterne',SMESH.EDGE)
61   grpEdgesPipeFissureExterne = meshFaceFiss.GroupOnGeom(edgesPipeFissureExterneC,'edgesPipeFissureExterne',SMESH.EDGE)
62
63   return (meshFaceFiss, grpFaceFissureExterne, grpEdgesPeauFissureExterne, grpEdgesPipeFissureExterne)