1 # Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE
3 # This library is free software; you can redistribute it and/or
4 # modify it under the terms of the GNU Lesser General Public
5 # License as published by the Free Software Foundation; either
6 # version 2.1 of the License.
8 # This library is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 # Lesser General Public License for more details.
13 # You should have received a copy of the GNU Lesser General Public
14 # License along with this library; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 ## @package smesh_algorithm
21 # Python API for base Mesh_Algorithm class.
22 # This package is a part of SALOME %Mesh module Python API
28 ## The base class to define meshing algorithms
30 # @note This class should not be used directly, it is supposed to be sub-classed
31 # for implementing Python API for specific meshing algorithms
33 # For each meshing algorithm, a python class inheriting from class %Mesh_Algorithm
34 # should be defined. This descendant class should have two attributes defining the way
35 # it is created by class Mesh (see e.g. class @ref StdMeshersDC.StdMeshersDC_Segment "StdMeshersDC_Segment"
36 # in StdMeshersDC package):
37 # - @c meshMethod attribute defines name of method of class smesh.Mesh by calling which the
38 # python class of algorithm is created; this method is dynamically added to the smesh.Mesh class
39 # in runtime. For example, if in @c class MyPlugin_Algorithm this attribute is defined as
41 # meshMethod = "MyAlgorithm"
43 # then an instance of @c MyPlugin_Algorithm can be created by the direct invokation of the function
44 # of smesh.Mesh class:
46 # my_algo = mesh.MyAlgorithm()
48 # - @c algoType defines type of algorithm and is used mostly to discriminate
49 # algorithms that are created by the same method of class smesh.Mesh. For example, if this attribute
50 # is specified in @c MyPlugin_Algorithm class as
52 # algoType = "MyPLUGIN"
54 # then it's creation code can be:
56 # my_algo = mesh.MyAlgorithm(algo="MyPLUGIN")
58 # @ingroup l2_algorithms
69 ## Finds a hypothesis in the study by its type name and parameters.
70 # Finds only the hypotheses created in smeshpyD engine.
71 # @return SMESH.SMESH_Hypothesis
72 def FindHypothesis (self, hypname, args, CompareMethod, smeshpyD):
73 study = smeshpyD.GetCurrentStudy()
74 if not study: return None
75 #to do: find component by smeshpyD object, not by its data type
76 scomp = study.FindComponent(smeshpyD.ComponentDataType())
78 res,hypRoot = scomp.FindSubObject(SMESH.Tag_HypothesisRoot)
79 # Check if the root label of the hypotheses exists
80 if res and hypRoot is not None:
81 iter = study.NewChildIterator(hypRoot)
82 # Check all published hypotheses
84 hypo_so_i = iter.Value()
85 attr = hypo_so_i.FindAttribute("AttributeIOR")[1]
88 hypo_o_i = salome.orb.string_to_object(anIOR)
89 if hypo_o_i is not None:
90 # Check if this is a hypothesis
91 hypo_i = hypo_o_i._narrow(SMESH.SMESH_Hypothesis)
92 if hypo_i is not None:
93 # Check if the hypothesis belongs to current engine
94 if smeshpyD.GetObjectId(hypo_i) > 0:
95 # Check if this is the required hypothesis
96 if hypo_i.GetName() == hypname:
98 if CompareMethod(hypo_i, args):
112 ## Finds the algorithm in the study by its type name.
113 # Finds only the algorithms, which have been created in smeshpyD engine.
114 # @return SMESH.SMESH_Algo
115 def FindAlgorithm (self, algoname, smeshpyD):
116 study = smeshpyD.GetCurrentStudy()
117 if not study: return None
118 #to do: find component by smeshpyD object, not by its data type
119 scomp = study.FindComponent(smeshpyD.ComponentDataType())
120 if scomp is not None:
121 res,hypRoot = scomp.FindSubObject(SMESH.Tag_AlgorithmsRoot)
122 # Check if the root label of the algorithms exists
123 if res and hypRoot is not None:
124 iter = study.NewChildIterator(hypRoot)
125 # Check all published algorithms
127 algo_so_i = iter.Value()
128 attr = algo_so_i.FindAttribute("AttributeIOR")[1]
131 algo_o_i = salome.orb.string_to_object(anIOR)
132 if algo_o_i is not None:
133 # Check if this is an algorithm
134 algo_i = algo_o_i._narrow(SMESH.SMESH_Algo)
135 if algo_i is not None:
136 # Checks if the algorithm belongs to the current engine
137 if smeshpyD.GetObjectId(algo_i) > 0:
138 # Check if this is the required algorithm
139 if algo_i.GetName() == algoname:
152 ## If the algorithm is global, returns 0; \n
153 # else returns the submesh associated to this algorithm.
154 def GetSubMesh(self):
157 ## Returns the wrapped mesher.
158 def GetAlgorithm(self):
161 ## Gets the list of hypothesis that can be used with this algorithm
162 def GetCompatibleHypothesis(self):
165 mylist = self.algo.GetCompatibleHypothesis()
168 ## Gets the name of the algorithm
170 from smesh import GetName
171 return GetName(self.algo)
173 ## Sets the name to the algorithm
174 def SetName(self, name):
175 self.mesh.smeshpyD.SetName(self.algo, name)
177 ## Gets the id of the algorithm
179 return self.algo.GetId()
182 def Create(self, mesh, geom, hypo, so="libStdMeshersEngine.so"):
184 raise RuntimeError, "Attemp to create " + hypo + " algoritm on None shape"
185 algo = self.FindAlgorithm(hypo, mesh.smeshpyD)
187 algo = mesh.smeshpyD.CreateHypothesis(hypo, so)
189 self.Assign(algo, mesh, geom)
193 def Assign(self, algo, mesh, geom):
194 from smesh import AssureGeomPublished, TreatHypoStatus, GetName
196 raise RuntimeError, "Attemp to create " + algo + " algoritm on None shape"
199 if not geom or geom.IsSame( mesh.geom ):
200 self.geom = mesh.geom
203 AssureGeomPublished( mesh, geom )
209 self.subm = mesh.mesh.GetSubMesh(geom, algo.GetName())
211 status = mesh.mesh.AddHypothesis(self.geom, self.algo)
212 TreatHypoStatus( status, algo.GetName(), name, True )
215 def CompareHyp (self, hyp, args):
216 print "CompareHyp is not implemented for ", self.__class__.__name__, ":", hyp.GetName()
219 def CompareEqualHyp (self, hyp, args):
223 def Hypothesis (self, hyp, args=[], so="libStdMeshersEngine.so",
224 UseExisting=0, CompareMethod=""):
225 from smesh import TreatHypoStatus, GetName
228 if CompareMethod == "": CompareMethod = self.CompareHyp
229 hypo = self.FindHypothesis(hyp, args, CompareMethod, self.mesh.smeshpyD)
232 hypo = self.mesh.smeshpyD.CreateHypothesis(hyp, so)
237 if isinstance( arg, geompyDC.GEOM._objref_GEOM_Object ):
238 argStr = arg.GetStudyEntry()
239 if not argStr: argStr = "GEOM_Obj_%s", arg.GetEntry()
240 if len( argStr ) > 10:
241 argStr = argStr[:7]+"..."
242 if argStr[0] == '[': argStr += ']'
248 self.mesh.smeshpyD.SetName(hypo, hyp + a)
252 geomName = GetName(self.geom)
253 status = self.mesh.mesh.AddHypothesis(self.geom, hypo)
254 TreatHypoStatus( status, GetName(hypo), geomName, 0 )
257 ## Returns entry of the shape to mesh in the study
258 def MainShapeEntry(self):
259 if not self.mesh or not self.mesh.GetMesh(): return ""
260 if not self.mesh.GetMesh().HasShapeToMesh(): return ""
261 shape = self.mesh.GetShape()
262 return shape.GetStudyEntry()
264 ## Defines "ViscousLayers" hypothesis to give parameters of layers of prisms to build
265 # near mesh boundary. This hypothesis can be used by several 3D algorithms:
266 # NETGEN 3D, GHS3D, Hexahedron(i,j,k)
267 # @param thickness total thickness of layers of prisms
268 # @param numberOfLayers number of layers of prisms
269 # @param stretchFactor factor (>1.0) of growth of layer thickness towards inside of mesh
270 # @param ignoreFaces list of geometrical faces (or their ids) not to generate layers on
271 # @ingroup l3_hypos_additi
272 def ViscousLayers(self, thickness, numberOfLayers, stretchFactor, ignoreFaces=[]):
273 if not isinstance(self.algo, SMESH._objref_SMESH_3D_Algo):
274 raise TypeError, "ViscousLayers are supported by 3D algorithms only"
275 if not "ViscousLayers" in self.GetCompatibleHypothesis():
276 raise TypeError, "ViscousLayers are not supported by %s"%self.algo.GetName()
277 if ignoreFaces and isinstance( ignoreFaces[0], geompyDC.GEOM._objref_GEOM_Object ):
278 ignoreFaces = [ self.mesh.geompyD.GetSubShapeID(self.mesh.geom, f) for f in ignoreFaces ]
279 hyp = self.Hypothesis("ViscousLayers",
280 [thickness, numberOfLayers, stretchFactor, ignoreFaces])
281 hyp.SetTotalThickness(thickness)
282 hyp.SetNumberLayers(numberOfLayers)
283 hyp.SetStretchFactor(stretchFactor)
284 hyp.SetIgnoreFaces(ignoreFaces)
287 ## Defines "ViscousLayers2D" hypothesis to give parameters of layers of quadrilateral
288 # elements to build near mesh boundary. This hypothesis can be used by several 2D algorithms:
289 # NETGEN 2D, NETGEN 1D-2D, Quadrangle (mapping), MEFISTO, BLSURF
290 # @param thickness total thickness of layers of quadrilaterals
291 # @param numberOfLayers number of layers
292 # @param stretchFactor factor (>1.0) of growth of layer thickness towards inside of mesh
293 # @param ignoreEdges list of geometrical edge (or their ids) not to generate layers on
294 # @ingroup l3_hypos_additi
295 def ViscousLayers2D(self, thickness, numberOfLayers, stretchFactor, ignoreEdges=[]):
296 if not isinstance(self.algo, SMESH._objref_SMESH_2D_Algo):
297 raise TypeError, "ViscousLayers2D are supported by 2D algorithms only"
298 if not "ViscousLayers2D" in self.GetCompatibleHypothesis():
299 raise TypeError, "ViscousLayers2D are not supported by %s"%self.algo.GetName()
300 if ignoreEdges and isinstance( ignoreEdges[0], geompyDC.GEOM._objref_GEOM_Object ):
301 ignoreEdges = [ self.mesh.geompyD.GetSubShapeID(self.mesh.geom, f) for f in ignoreEdges ]
302 hyp = self.Hypothesis("ViscousLayers2D",
303 [thickness, numberOfLayers, stretchFactor, ignoreEdges])
304 hyp.SetTotalThickness(thickness)
305 hyp.SetNumberLayers(numberOfLayers)
306 hyp.SetStretchFactor(stretchFactor)
307 hyp.SetIgnoreEdges(ignoreEdges)
310 ## Transform a list of ether edges or tuples (edge, 1st_vertex_of_edge)
311 # into a list acceptable to SetReversedEdges() of some 1D hypotheses
312 # @ingroup l3_hypos_1dhyps
313 def ReversedEdgeIndices(self, reverseList):
314 from smesh import FirstVertexOnCurve
316 geompy = self.mesh.geompyD
317 for i in reverseList:
318 if isinstance( i, int ):
319 s = geompy.SubShapes(self.mesh.geom, [i])[0]
320 if s.GetShapeType() != geompyDC.GEOM.EDGE:
321 raise TypeError, "Not EDGE index given"
323 elif isinstance( i, geompyDC.GEOM._objref_GEOM_Object ):
324 if i.GetShapeType() != geompyDC.GEOM.EDGE:
325 raise TypeError, "Not an EDGE given"
326 resList.append( geompy.GetSubShapeID(self.mesh.geom, i ))
330 if not isinstance( e, geompyDC.GEOM._objref_GEOM_Object ) or \
331 not isinstance( v, geompyDC.GEOM._objref_GEOM_Object ):
332 raise TypeError, "A list item must be a tuple (edge, 1st_vertex_of_edge)"
333 if v.GetShapeType() == geompyDC.GEOM.EDGE and \
334 e.GetShapeType() == geompyDC.GEOM.VERTEX:
336 if e.GetShapeType() != geompyDC.GEOM.EDGE or \
337 v.GetShapeType() != geompyDC.GEOM.VERTEX:
338 raise TypeError, "A list item must be a tuple (edge, 1st_vertex_of_edge)"
339 vFirst = FirstVertexOnCurve( e )
340 tol = geompy.Tolerance( vFirst )[-1]
341 if geompy.MinDistance( v, vFirst ) > 1.5*tol:
342 resList.append( geompy.GetSubShapeID(self.mesh.geom, e ))
344 raise TypeError, "Item must be either an edge or tuple (edge, 1st_vertex_of_edge)"