2015-02-13 13:38:35 +05:00
# Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE
2009-02-17 10:27:49 +05:00
#
2012-08-09 16:03:55 +06: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
2014-02-20 18:25:37 +06:00
# version 2.1 of the License, or (at your option) any later version.
2008-03-07 12:47:05 +05:00
#
2012-08-09 16:03:55 +06:00
# 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.
2008-03-07 12:47:05 +05:00
#
2012-08-09 16:03:55 +06:00
# 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
2008-03-07 12:47:05 +05:00
#
2012-08-09 16:03:55 +06:00
# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2008-03-07 12:47:05 +05:00
#
2013-04-04 13:08:19 +06:00
# File : smeshBuilder.py
2008-03-07 12:47:05 +05:00
# Author : Francis KLOSS, OCC
# Module : SMESH
2012-08-09 16:03:55 +06:00
2013-04-04 13:08:19 +06:00
## @package smeshBuilder
2012-10-08 17:56:59 +06:00
# Python API for SALOME %Mesh module
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## @defgroup l1_auxiliary Auxiliary methods and structures
## @defgroup l1_creating Creating meshes
## @{
## @defgroup l2_impexp Importing and exporting meshes
## @defgroup l2_construct Constructing meshes
## @defgroup l2_algorithms Defining Algorithms
## @{
## @defgroup l3_algos_basic Basic meshing algorithms
## @defgroup l3_algos_proj Projection Algorithms
## @defgroup l3_algos_radialp Radial Prism
## @defgroup l3_algos_segmarv Segments around Vertex
## @defgroup l3_algos_3dextr 3D extrusion meshing algorithm
## @}
## @defgroup l2_hypotheses Defining hypotheses
## @{
## @defgroup l3_hypos_1dhyps 1D Meshing Hypotheses
## @defgroup l3_hypos_2dhyps 2D Meshing Hypotheses
## @defgroup l3_hypos_maxvol Max Element Volume hypothesis
2012-08-09 16:03:55 +06:00
## @defgroup l3_hypos_quad Quadrangle Parameters hypothesis
2009-02-17 10:27:49 +05:00
## @defgroup l3_hypos_additi Additional Hypotheses
## @}
## @defgroup l2_submeshes Constructing submeshes
## @defgroup l2_compounds Building Compounds
## @defgroup l2_editing Editing Meshes
## @}
## @defgroup l1_meshinfo Mesh Information
## @defgroup l1_controls Quality controls and Filtering
## @defgroup l1_grouping Grouping elements
## @{
## @defgroup l2_grps_create Creating groups
## @defgroup l2_grps_edit Editing groups
## @defgroup l2_grps_operon Using operations on groups
## @defgroup l2_grps_delete Deleting Groups
## @}
## @defgroup l1_modifying Modifying meshes
## @{
## @defgroup l2_modif_add Adding nodes and elements
## @defgroup l2_modif_del Removing nodes and elements
## @defgroup l2_modif_edit Modifying nodes and elements
## @defgroup l2_modif_renumber Renumbering nodes and elements
## @defgroup l2_modif_trsf Transforming meshes (Translation, Rotation, Symmetry, Sewing, Merging)
## @defgroup l2_modif_movenode Moving nodes
## @defgroup l2_modif_throughp Mesh through point
## @defgroup l2_modif_invdiag Diagonal inversion of elements
## @defgroup l2_modif_unitetri Uniting triangles
## @defgroup l2_modif_changori Changing orientation of elements
2014-01-20 16:31:23 +06:00
## @defgroup l2_modif_cutquadr Cutting elements
2009-02-17 10:27:49 +05:00
## @defgroup l2_modif_smooth Smoothing
## @defgroup l2_modif_extrurev Extrusion and Revolution
## @defgroup l2_modif_patterns Pattern mapping
## @defgroup l2_modif_tofromqu Convert to/from Quadratic Mesh
## @}
2012-08-09 16:03:55 +06:00
## @defgroup l1_measurements Measurements
2008-03-07 12:47:05 +05:00
import salome
2013-04-04 13:08:19 +06:00
from salome . geom import geomBuilder
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
import SMESH # This is necessary for back compatibility
2008-03-07 12:47:05 +05:00
from SMESH import *
2013-04-04 13:08:19 +06:00
from salome . smesh . smesh_algorithm import Mesh_Algorithm
2008-03-07 12:47:05 +05:00
import SALOME
2012-08-09 16:03:55 +06:00
import SALOMEDS
2013-04-04 13:08:19 +06:00
import os
2008-03-07 12:47:05 +05:00
2014-02-05 14:08:10 +06:00
class MeshMeta ( type ) :
def __instancecheck__ ( cls , inst ) :
""" Implement isinstance(inst, cls). """
return any ( cls . __subclasscheck__ ( c )
for c in { type ( inst ) , inst . __class__ } )
def __subclasscheck__ ( cls , sub ) :
""" Implement issubclass(sub, cls). """
return type . __subclasscheck__ ( cls , sub ) or ( cls . __name__ == sub . __name__ and cls . __module__ == sub . __module__ )
2009-02-17 10:27:49 +05:00
## @addtogroup l1_auxiliary
## @{
## Converts an angle from degrees to radians
def DegreesToRadians ( AngleInDegrees ) :
from math import pi
return AngleInDegrees * pi / 180.0
2012-08-09 16:03:55 +06:00
import salome_notebook
notebook = salome_notebook . notebook
2009-02-17 10:27:49 +05:00
# Salome notebook variable separator
var_separator = " : "
2012-08-09 16:03:55 +06:00
## Return list of variable values from salome notebook.
# The last argument, if is callable, is used to modify values got from notebook
def ParseParameters ( * args ) :
2009-02-17 10:27:49 +05:00
Result = [ ]
Parameters = " "
2012-08-09 16:03:55 +06:00
hasVariables = False
varModifFun = None
if args and callable ( args [ - 1 ] ) :
args , varModifFun = args [ : - 1 ] , args [ - 1 ]
for parameter in args :
Parameters + = str ( parameter ) + var_separator
if isinstance ( parameter , str ) :
# check if there is an inexistent variable name
if not notebook . isVariable ( parameter ) :
raise ValueError , " Variable with name ' " + parameter + " ' doesn ' t exist!!! "
parameter = notebook . get ( parameter )
hasVariables = True
if varModifFun :
parameter = varModifFun ( parameter )
pass
2009-02-17 10:27:49 +05:00
pass
2012-08-09 16:03:55 +06:00
Result . append ( parameter )
2009-02-17 10:27:49 +05:00
pass
2012-08-09 16:03:55 +06:00
Parameters = Parameters [ : - 1 ]
Result . append ( Parameters )
Result . append ( hasVariables )
return Result
# Parse parameters converting variables to radians
def ParseAngles ( * args ) :
return ParseParameters ( * ( args + ( DegreesToRadians , ) ) )
# Substitute PointStruct.__init__() to create SMESH.PointStruct using notebook variables.
# Parameters are stored in PointStruct.parameters attribute
def __initPointStruct ( point , * args ) :
point . x , point . y , point . z , point . parameters , hasVars = ParseParameters ( * args )
pass
SMESH . PointStruct . __init__ = __initPointStruct
# Substitute AxisStruct.__init__() to create SMESH.AxisStruct using notebook variables.
# Parameters are stored in AxisStruct.parameters attribute
def __initAxisStruct ( ax , * args ) :
2015-03-17 17:06:56 +05:00
if len ( args ) != 6 :
raise RuntimeError , \
" Bad nb args ( %s ) passed in SMESH.AxisStruct(x,y,z,dx,dy,dz) " % ( len ( args ) )
2012-08-09 16:03:55 +06:00
ax . x , ax . y , ax . z , ax . vx , ax . vy , ax . vz , ax . parameters , hasVars = ParseParameters ( * args )
pass
SMESH . AxisStruct . __init__ = __initAxisStruct
2013-04-04 13:08:19 +06:00
smeshPrecisionConfusion = 1.e-07
def IsEqual ( val1 , val2 , tol = smeshPrecisionConfusion ) :
2008-03-07 12:47:05 +05:00
if abs ( val1 - val2 ) < tol :
return True
return False
NO_NAME = " NoName "
## Gets object name
def GetName ( obj ) :
2012-08-09 16:03:55 +06:00
if obj :
# object not null
if isinstance ( obj , SALOMEDS . _objref_SObject ) :
# study object
return obj . GetName ( )
2013-02-12 20:37:44 +06:00
try :
ior = salome . orb . object_to_string ( obj )
except :
ior = None
2012-08-09 16:03:55 +06:00
if ior :
# CORBA object
studies = salome . myStudyManager . GetOpenStudies ( )
for sname in studies :
s = salome . myStudyManager . GetStudyByName ( sname )
if not s : continue
sobj = s . FindObjectIOR ( ior )
if not sobj : continue
return sobj . GetName ( )
if hasattr ( obj , " GetName " ) :
# unknown CORBA object, having GetName() method
return obj . GetName ( )
else :
# unknown CORBA object, no GetName() method
return NO_NAME
pass
if hasattr ( obj , " GetName " ) :
# unknown non-CORBA object, having GetName() method
return obj . GetName ( )
pass
raise RuntimeError , " Null or invalid object "
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Prints error message if a hypothesis was not assigned.
2014-08-21 17:15:12 +06:00
def TreatHypoStatus ( status , hypName , geomName , isAlgo , mesh ) :
2008-03-07 12:47:05 +05:00
if isAlgo :
hypType = " algorithm "
else :
hypType = " hypothesis "
pass
2014-08-21 17:15:12 +06:00
reason = " "
if hasattr ( status , " __getitem__ " ) :
status , reason = status [ 0 ] , status [ 1 ]
2008-03-07 12:47:05 +05:00
if status == HYP_UNKNOWN_FATAL :
reason = " for unknown reason "
elif status == HYP_INCOMPATIBLE :
2009-02-17 10:27:49 +05:00
reason = " this hypothesis mismatches the algorithm "
2008-03-07 12:47:05 +05:00
elif status == HYP_NOTCONFORM :
2009-02-17 10:27:49 +05:00
reason = " a non-conform mesh would be built "
2008-03-07 12:47:05 +05:00
elif status == HYP_ALREADY_EXIST :
2012-08-09 16:03:55 +06:00
if isAlgo : return # it does not influence anything
2009-02-17 10:27:49 +05:00
reason = hypType + " of the same dimension is already assigned to this shape "
2008-03-07 12:47:05 +05:00
elif status == HYP_BAD_DIM :
2009-02-17 10:27:49 +05:00
reason = hypType + " mismatches the shape "
2008-03-07 12:47:05 +05:00
elif status == HYP_CONCURENT :
reason = " there are concurrent hypotheses on sub-shapes "
elif status == HYP_BAD_SUBSHAPE :
2012-08-09 16:03:55 +06:00
reason = " the shape is neither the main one, nor its sub-shape, nor a valid group "
2008-03-07 12:47:05 +05:00
elif status == HYP_BAD_GEOMETRY :
2009-02-17 10:27:49 +05:00
reason = " geometry mismatches the expectation of the algorithm "
2008-03-07 12:47:05 +05:00
elif status == HYP_HIDDEN_ALGO :
2009-02-17 10:27:49 +05:00
reason = " it is hidden by an algorithm of an upper dimension, which generates elements of all dimensions "
2008-03-07 12:47:05 +05:00
elif status == HYP_HIDING_ALGO :
2009-02-17 10:27:49 +05:00
reason = " it hides algorithms of lower dimensions by generating elements of all dimensions "
elif status == HYP_NEED_SHAPE :
2014-08-21 17:15:12 +06:00
reason = " algorithm can ' t work without shape "
elif status == HYP_INCOMPAT_HYPS :
pass
2008-03-07 12:47:05 +05:00
else :
return
2014-08-21 17:15:12 +06:00
where = geomName
if where :
where = ' " %s " ' % geomName
if mesh :
meshName = GetName ( mesh )
if meshName and meshName != NO_NAME :
where = ' " %s " in " %s " ' % ( geomName , meshName )
if status < HYP_UNKNOWN_FATAL and where :
print ' " %s " was assigned to %s but %s ' % ( hypName , where , reason )
elif where :
print ' " %s " was not assigned to %s : %s ' % ( hypName , where , reason )
2012-08-09 16:03:55 +06:00
else :
2014-08-21 17:15:12 +06:00
print ' " %s " was not assigned : %s ' % ( hypName , reason )
2008-03-07 12:47:05 +05:00
pass
2012-08-09 16:03:55 +06:00
## Private method. Add geom (sub-shape of the main shape) into the study if not yet there
def AssureGeomPublished ( mesh , geom , name = ' ' ) :
2013-04-04 13:08:19 +06:00
if not isinstance ( geom , geomBuilder . GEOM . _objref_GEOM_Object ) :
2012-08-09 16:03:55 +06:00
return
2012-12-13 17:41:29 +06:00
if not geom . GetStudyEntry ( ) and \
2012-08-09 16:03:55 +06:00
mesh . smeshpyD . GetCurrentStudy ( ) :
## set the study
studyID = mesh . smeshpyD . GetCurrentStudy ( ) . _get_StudyId ( )
if studyID != mesh . geompyD . myStudyId :
mesh . geompyD . init_geom ( mesh . smeshpyD . GetCurrentStudy ( ) )
## get a name
2013-04-04 13:08:19 +06:00
if not name and geom . GetShapeType ( ) != geomBuilder . GEOM . COMPOUND :
2012-08-09 16:03:55 +06:00
# for all groups SubShapeName() returns "Compound_-1"
name = mesh . geompyD . SubShapeName ( geom , mesh . geom )
if not name :
name = " %s _ %s " % ( geom . GetShapeType ( ) , id ( geom ) % 10000 )
## publish
mesh . geompyD . addToStudyInFather ( mesh . geom , geom , name )
return
2013-04-04 13:08:19 +06:00
## Return the first vertex of a geometrical edge by ignoring orientation
2013-04-17 17:34:31 +06:00
def FirstVertexOnCurve ( mesh , edge ) :
vv = mesh . geompyD . SubShapeAll ( edge , geomBuilder . geomBuilder . ShapeType [ " VERTEX " ] )
2012-08-09 16:03:55 +06:00
if not vv :
raise TypeError , " Given object has no vertices "
if len ( vv ) == 1 : return vv [ 0 ]
2013-04-17 17:34:31 +06:00
v0 = mesh . geompyD . MakeVertexOnCurve ( edge , 0. )
xyz = mesh . geompyD . PointCoordinates ( v0 ) # coords of the first vertex
xyz1 = mesh . geompyD . PointCoordinates ( vv [ 0 ] )
xyz2 = mesh . geompyD . PointCoordinates ( vv [ 1 ] )
2012-08-09 16:03:55 +06:00
dist1 , dist2 = 0 , 0
for i in range ( 3 ) :
dist1 + = abs ( xyz [ i ] - xyz1 [ i ] )
dist2 + = abs ( xyz [ i ] - xyz2 [ i ] )
if dist1 < dist2 :
return vv [ 0 ]
else :
return vv [ 1 ]
2009-02-17 10:27:49 +05:00
# end of l1_auxiliary
## @}
2013-04-04 13:08:19 +06:00
# Warning: smeshInst is a singleton
smeshInst = None
engine = None
doLcc = False
2013-04-10 22:33:43 +06:00
created = False
2013-04-04 13:08:19 +06:00
## This class allows to create, load or manipulate meshes
# It has a set of methods to create load or copy meshes, to combine several meshes.
# It also has methods to get infos on meshes.
class smeshBuilder ( object , SMESH . _objref_SMESH_Gen ) :
# MirrorType enumeration
POINT = SMESH_MeshEditor . POINT
AXIS = SMESH_MeshEditor . AXIS
PLANE = SMESH_MeshEditor . PLANE
# Smooth_Method enumeration
LAPLACIAN_SMOOTH = SMESH_MeshEditor . LAPLACIAN_SMOOTH
CENTROIDAL_SMOOTH = SMESH_MeshEditor . CENTROIDAL_SMOOTH
PrecisionConfusion = smeshPrecisionConfusion
# TopAbs_State enumeration
[ TopAbs_IN , TopAbs_OUT , TopAbs_ON , TopAbs_UNKNOWN ] = range ( 4 )
# Methods of splitting a hexahedron into tetrahedra
2014-01-20 16:31:23 +06:00
Hex_5Tet , Hex_6Tet , Hex_24Tet , Hex_2Prisms , Hex_4Prisms = 1 , 2 , 3 , 1 , 2
2013-04-04 13:08:19 +06:00
def __new__ ( cls ) :
global engine
global smeshInst
global doLcc
2013-04-10 22:33:43 +06:00
#print "==== __new__", engine, smeshInst, doLcc
2013-04-04 13:08:19 +06:00
if smeshInst is None :
# smesh engine is either retrieved from engine, or created
smeshInst = engine
# Following test avoids a recursive loop
if doLcc :
if smeshInst is not None :
# smesh engine not created: existing engine found
doLcc = False
if doLcc :
doLcc = False
# FindOrLoadComponent called:
# 1. CORBA resolution of server
# 2. the __new__ method is called again
2013-04-10 22:33:43 +06:00
#print "==== smeshInst = lcc.FindOrLoadComponent ", engine, smeshInst, doLcc
2013-04-04 13:08:19 +06:00
smeshInst = salome . lcc . FindOrLoadComponent ( " FactoryServer " , " SMESH " )
else :
# FindOrLoadComponent not called
if smeshInst is None :
# smeshBuilder instance is created from lcc.FindOrLoadComponent
2013-04-10 22:33:43 +06:00
#print "==== smeshInst = super(smeshBuilder,cls).__new__(cls) ", engine, smeshInst, doLcc
2013-04-04 13:08:19 +06:00
smeshInst = super ( smeshBuilder , cls ) . __new__ ( cls )
else :
# smesh engine not created: existing engine found
2013-04-10 22:33:43 +06:00
#print "==== existing ", engine, smeshInst, doLcc
2013-04-04 13:08:19 +06:00
pass
2013-04-10 22:33:43 +06:00
#print "====1 ", smeshInst
2013-04-04 13:08:19 +06:00
return smeshInst
2013-04-10 22:33:43 +06:00
#print "====2 ", smeshInst
2013-04-04 13:08:19 +06:00
return smeshInst
def __init__ ( self ) :
2013-04-10 22:33:43 +06:00
global created
#print "--------------- smeshbuilder __init__ ---", created
if not created :
created = True
SMESH . _objref_SMESH_Gen . __init__ ( self )
2008-03-07 12:47:05 +05:00
2012-08-09 16:03:55 +06:00
## Dump component to the Python script
# This method overrides IDL function to allow default values for the parameters.
def DumpPython ( self , theStudy , theIsPublished = True , theIsMultiFile = True ) :
return SMESH . _objref_SMESH_Gen . DumpPython ( self , theStudy , theIsPublished , theIsMultiFile )
## Set mode of DumpPython(), \a historical or \a snapshot.
# In the \a historical mode, the Python Dump script includes all commands
# performed by SMESH engine. In the \a snapshot mode, commands
# relating to objects removed from the Study are excluded from the script
# as well as commands not influencing the current state of meshes
def SetDumpPythonHistorical ( self , isHistorical ) :
if isHistorical : val = " true "
else : val = " false "
SMESH . _objref_SMESH_Gen . SetOption ( self , " historical_python_dump " , val )
2009-02-17 10:27:49 +05:00
## Sets the current study and Geometry component
# @ingroup l1_auxiliary
2013-04-04 13:08:19 +06:00
def init_smesh ( self , theStudy , geompyD = None ) :
#print "init_smesh"
2009-02-17 10:27:49 +05:00
self . SetCurrentStudy ( theStudy , geompyD )
2014-04-29 17:38:50 +06:00
if theStudy :
global notebook
notebook . myStudy = theStudy
2009-02-17 10:27:49 +05:00
2014-03-31 19:14:34 +06:00
## Creates a mesh. This can be either an empty mesh, possibly having an underlying geometry,
# or a mesh wrapping a CORBA mesh given as a parameter.
# @param obj either (1) a CORBA mesh (SMESH._objref_SMESH_Mesh) got e.g. by calling
# salome.myStudy.FindObjectID("0:1:2:3").GetObject() or
# (2) a Geometrical object for meshing or
# (3) none.
2009-02-17 10:27:49 +05:00
# @param name the name for the new mesh.
# @return an instance of Mesh class.
# @ingroup l2_construct
2008-03-07 12:47:05 +05:00
def Mesh ( self , obj = 0 , name = 0 ) :
2012-08-09 16:03:55 +06:00
if isinstance ( obj , str ) :
obj , name = name , obj
return Mesh ( self , self . geompyD , obj , name )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Returns a long value from enumeration
# @ingroup l1_controls
2008-03-07 12:47:05 +05:00
def EnumToLong ( self , theItem ) :
return theItem . _v
2012-08-09 16:03:55 +06:00
## Returns a string representation of the color.
# To be used with filters.
# @param c color value (SALOMEDS.Color)
# @ingroup l1_controls
def ColorToString ( self , c ) :
val = " "
if isinstance ( c , SALOMEDS . Color ) :
val = " %s ; %s ; %s " % ( c . R , c . G , c . B )
elif isinstance ( c , str ) :
val = c
else :
raise ValueError , " Color value should be of string or SALOMEDS.Color type "
return val
2009-02-17 10:27:49 +05:00
## Gets PointStruct from vertex
# @param theVertex a GEOM object(vertex)
2008-03-07 12:47:05 +05:00
# @return SMESH.PointStruct
2009-02-17 10:27:49 +05:00
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def GetPointStruct ( self , theVertex ) :
[ x , y , z ] = self . geompyD . PointCoordinates ( theVertex )
return PointStruct ( x , y , z )
2009-02-17 10:27:49 +05:00
## Gets DirStruct from vector
# @param theVector a GEOM object(vector)
2008-03-07 12:47:05 +05:00
# @return SMESH.DirStruct
2009-02-17 10:27:49 +05:00
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def GetDirStruct ( self , theVector ) :
2013-04-04 13:08:19 +06:00
vertices = self . geompyD . SubShapeAll ( theVector , geomBuilder . geomBuilder . ShapeType [ " VERTEX " ] )
2008-03-07 12:47:05 +05:00
if ( len ( vertices ) != 2 ) :
print " Error: vector object is incorrect. "
return None
p1 = self . geompyD . PointCoordinates ( vertices [ 0 ] )
p2 = self . geompyD . PointCoordinates ( vertices [ 1 ] )
pnt = PointStruct ( p2 [ 0 ] - p1 [ 0 ] , p2 [ 1 ] - p1 [ 1 ] , p2 [ 2 ] - p1 [ 2 ] )
dirst = DirStruct ( pnt )
return dirst
2009-02-17 10:27:49 +05:00
## Makes DirStruct from a triplet
# @param x,y,z vector components
2008-03-07 12:47:05 +05:00
# @return SMESH.DirStruct
2009-02-17 10:27:49 +05:00
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def MakeDirStruct ( self , x , y , z ) :
pnt = PointStruct ( x , y , z )
return DirStruct ( pnt )
## Get AxisStruct from object
2009-02-17 10:27:49 +05:00
# @param theObj a GEOM object (line or plane)
2008-03-07 12:47:05 +05:00
# @return SMESH.AxisStruct
2009-02-17 10:27:49 +05:00
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def GetAxisStruct ( self , theObj ) :
2014-06-26 18:15:06 +06:00
import GEOM
2013-04-04 13:08:19 +06:00
edges = self . geompyD . SubShapeAll ( theObj , geomBuilder . geomBuilder . ShapeType [ " EDGE " ] )
2014-06-26 18:15:06 +06:00
axis = None
2008-03-07 12:47:05 +05:00
if len ( edges ) > 1 :
2013-04-04 13:08:19 +06:00
vertex1 , vertex2 = self . geompyD . SubShapeAll ( edges [ 0 ] , geomBuilder . geomBuilder . ShapeType [ " VERTEX " ] )
vertex3 , vertex4 = self . geompyD . SubShapeAll ( edges [ 1 ] , geomBuilder . geomBuilder . ShapeType [ " VERTEX " ] )
2008-03-07 12:47:05 +05:00
vertex1 = self . geompyD . PointCoordinates ( vertex1 )
vertex2 = self . geompyD . PointCoordinates ( vertex2 )
vertex3 = self . geompyD . PointCoordinates ( vertex3 )
vertex4 = self . geompyD . PointCoordinates ( vertex4 )
v1 = [ vertex2 [ 0 ] - vertex1 [ 0 ] , vertex2 [ 1 ] - vertex1 [ 1 ] , vertex2 [ 2 ] - vertex1 [ 2 ] ]
v2 = [ vertex4 [ 0 ] - vertex3 [ 0 ] , vertex4 [ 1 ] - vertex3 [ 1 ] , vertex4 [ 2 ] - vertex3 [ 2 ] ]
normal = [ v1 [ 1 ] * v2 [ 2 ] - v2 [ 1 ] * v1 [ 2 ] , v1 [ 2 ] * v2 [ 0 ] - v2 [ 2 ] * v1 [ 0 ] , v1 [ 0 ] * v2 [ 1 ] - v2 [ 0 ] * v1 [ 1 ] ]
axis = AxisStruct ( vertex1 [ 0 ] , vertex1 [ 1 ] , vertex1 [ 2 ] , normal [ 0 ] , normal [ 1 ] , normal [ 2 ] )
2014-06-26 18:15:06 +06:00
axis . _mirrorType = SMESH . SMESH_MeshEditor . PLANE
2008-03-07 12:47:05 +05:00
elif len ( edges ) == 1 :
2013-04-04 13:08:19 +06:00
vertex1 , vertex2 = self . geompyD . SubShapeAll ( edges [ 0 ] , geomBuilder . geomBuilder . ShapeType [ " VERTEX " ] )
2008-03-07 12:47:05 +05:00
p1 = self . geompyD . PointCoordinates ( vertex1 )
p2 = self . geompyD . PointCoordinates ( vertex2 )
axis = AxisStruct ( p1 [ 0 ] , p1 [ 1 ] , p1 [ 2 ] , p2 [ 0 ] - p1 [ 0 ] , p2 [ 1 ] - p1 [ 1 ] , p2 [ 2 ] - p1 [ 2 ] )
2014-06-26 18:15:06 +06:00
axis . _mirrorType = SMESH . SMESH_MeshEditor . AXIS
elif theObj . GetShapeType ( ) == GEOM . VERTEX :
x , y , z = self . geompyD . PointCoordinates ( theObj )
axis = AxisStruct ( x , y , z , 1 , 0 , 0 , )
axis . _mirrorType = SMESH . SMESH_MeshEditor . POINT
return axis
2008-03-07 12:47:05 +05:00
# From SMESH_Gen interface:
# ------------------------
2009-02-17 10:27:49 +05:00
## Sets the given name to the object
# @param obj the object to rename
# @param name a new object name
# @ingroup l1_auxiliary
def SetName ( self , obj , name ) :
if isinstance ( obj , Mesh ) :
obj = obj . GetMesh ( )
elif isinstance ( obj , Mesh_Algorithm ) :
obj = obj . GetAlgorithm ( )
ior = salome . orb . object_to_string ( obj )
SMESH . _objref_SMESH_Gen . SetName ( self , ior , name )
## Sets the current mode
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def SetEmbeddedMode ( self , theMode ) :
#self.SetEmbeddedMode(theMode)
SMESH . _objref_SMESH_Gen . SetEmbeddedMode ( self , theMode )
2009-02-17 10:27:49 +05:00
## Gets the current mode
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def IsEmbeddedMode ( self ) :
#return self.IsEmbeddedMode()
return SMESH . _objref_SMESH_Gen . IsEmbeddedMode ( self )
2015-02-25 22:07:02 +05:00
## Sets the current study. Calling SetCurrentStudy( None ) allows to
# switch OFF automatic pubilishing in the Study of mesh objects.
2009-02-17 10:27:49 +05:00
# @ingroup l1_auxiliary
def SetCurrentStudy ( self , theStudy , geompyD = None ) :
2008-03-07 12:47:05 +05:00
#self.SetCurrentStudy(theStudy)
2009-02-17 10:27:49 +05:00
if not geompyD :
2013-04-04 13:08:19 +06:00
from salome . geom import geomBuilder
geompyD = geomBuilder . geom
2009-02-17 10:27:49 +05:00
pass
self . geompyD = geompyD
self . SetGeomEngine ( geompyD )
2008-03-07 12:47:05 +05:00
SMESH . _objref_SMESH_Gen . SetCurrentStudy ( self , theStudy )
2012-08-09 16:03:55 +06:00
global notebook
if theStudy :
notebook = salome_notebook . NoteBook ( theStudy )
else :
notebook = salome_notebook . NoteBook ( salome_notebook . PseudoStudyForNoteBook ( ) )
2015-02-06 18:54:08 +05:00
if theStudy :
sb = theStudy . NewBuilder ( )
sc = theStudy . FindComponent ( " SMESH " )
if sc : sb . LoadWith ( sc , self )
pass
pass
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Gets the current study
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def GetCurrentStudy ( self ) :
#return self.GetCurrentStudy()
return SMESH . _objref_SMESH_Gen . GetCurrentStudy ( self )
2009-02-17 10:27:49 +05:00
## Creates a Mesh object importing data from the given UNV file
2008-03-07 12:47:05 +05:00
# @return an instance of Mesh class
2009-02-17 10:27:49 +05:00
# @ingroup l2_impexp
2008-03-07 12:47:05 +05:00
def CreateMeshesFromUNV ( self , theFileName ) :
aSmeshMesh = SMESH . _objref_SMESH_Gen . CreateMeshesFromUNV ( self , theFileName )
aMesh = Mesh ( self , self . geompyD , aSmeshMesh )
return aMesh
2009-02-17 10:27:49 +05:00
## Creates a Mesh object(s) importing data from the given MED file
2013-05-16 22:55:14 +06:00
# @return a tuple ( list of Mesh class instances, SMESH.DriverMED_ReadStatus )
2009-02-17 10:27:49 +05:00
# @ingroup l2_impexp
2008-03-07 12:47:05 +05:00
def CreateMeshesFromMED ( self , theFileName ) :
aSmeshMeshes , aStatus = SMESH . _objref_SMESH_Gen . CreateMeshesFromMED ( self , theFileName )
2013-05-16 22:55:14 +06:00
aMeshes = [ Mesh ( self , self . geompyD , m ) for m in aSmeshMeshes ]
2008-03-07 12:47:05 +05:00
return aMeshes , aStatus
2012-08-09 16:03:55 +06:00
## Creates a Mesh object(s) importing data from the given SAUV file
2013-05-16 22:55:14 +06:00
# @return a tuple ( list of Mesh class instances, SMESH.DriverMED_ReadStatus )
2012-08-09 16:03:55 +06:00
# @ingroup l2_impexp
def CreateMeshesFromSAUV ( self , theFileName ) :
aSmeshMeshes , aStatus = SMESH . _objref_SMESH_Gen . CreateMeshesFromSAUV ( self , theFileName )
2013-05-16 22:55:14 +06:00
aMeshes = [ Mesh ( self , self . geompyD , m ) for m in aSmeshMeshes ]
2012-08-09 16:03:55 +06:00
return aMeshes , aStatus
2009-02-17 10:27:49 +05:00
## Creates a Mesh object importing data from the given STL file
2008-03-07 12:47:05 +05:00
# @return an instance of Mesh class
2009-02-17 10:27:49 +05:00
# @ingroup l2_impexp
2008-03-07 12:47:05 +05:00
def CreateMeshesFromSTL ( self , theFileName ) :
aSmeshMesh = SMESH . _objref_SMESH_Gen . CreateMeshesFromSTL ( self , theFileName )
aMesh = Mesh ( self , self . geompyD , aSmeshMesh )
return aMesh
2012-08-09 16:03:55 +06:00
## Creates Mesh objects importing data from the given CGNS file
2013-05-16 22:55:14 +06:00
# @return a tuple ( list of Mesh class instances, SMESH.DriverMED_ReadStatus )
2012-08-09 16:03:55 +06:00
# @ingroup l2_impexp
def CreateMeshesFromCGNS ( self , theFileName ) :
aSmeshMeshes , aStatus = SMESH . _objref_SMESH_Gen . CreateMeshesFromCGNS ( self , theFileName )
2013-05-16 22:55:14 +06:00
aMeshes = [ Mesh ( self , self . geompyD , m ) for m in aSmeshMeshes ]
2012-08-09 16:03:55 +06:00
return aMeshes , aStatus
2013-08-06 21:16:46 +06:00
## Creates a Mesh object importing data from the given GMF file.
2013-09-11 18:22:01 +06:00
# GMF files must have .mesh extension for the ASCII format and .meshb for
2013-09-11 18:41:25 +06:00
# the binary format.
2013-05-16 22:55:14 +06:00
# @return [ an instance of Mesh class, SMESH.ComputeError ]
2012-10-08 17:56:59 +06:00
# @ingroup l2_impexp
def CreateMeshesFromGMF ( self , theFileName ) :
2012-12-13 17:41:29 +06:00
aSmeshMesh , error = SMESH . _objref_SMESH_Gen . CreateMeshesFromGMF ( self ,
theFileName ,
True )
2012-10-08 17:56:59 +06:00
if error . comment : print " *** CreateMeshesFromGMF() errors: \n " , error . comment
return Mesh ( self , self . geompyD , aSmeshMesh ) , error
2015-02-25 22:07:02 +05:00
## Concatenate the given meshes into one mesh. All groups of input meshes will be
# present in the new mesh.
2015-03-03 17:03:38 +05:00
# @param meshes the meshes, sub-meshes and groups to combine into one mesh
2009-02-17 10:27:49 +05:00
# @param uniteIdenticalGroups if true, groups with same names are united, else they are renamed
2015-02-25 22:07:02 +05:00
# @param mergeNodesAndElements if true, equal nodes and elements are merged
2009-02-17 10:27:49 +05:00
# @param mergeTolerance tolerance for merging nodes
2015-02-25 22:07:02 +05:00
# @param allGroups forces creation of groups corresponding to every input mesh
2013-02-12 20:37:44 +06:00
# @param name name of a new mesh
2015-02-25 22:07:02 +05:00
# @return an instance of Mesh class
2009-02-17 10:27:49 +05:00
def Concatenate ( self , meshes , uniteIdenticalGroups ,
2013-02-12 20:37:44 +06:00
mergeNodesAndElements = False , mergeTolerance = 1e-5 , allGroups = False ,
name = " " ) :
2012-08-09 16:03:55 +06:00
if not meshes : return None
for i , m in enumerate ( meshes ) :
if isinstance ( m , Mesh ) :
meshes [ i ] = m . GetMesh ( )
mergeTolerance , Parameters , hasVars = ParseParameters ( mergeTolerance )
meshes [ 0 ] . SetParameters ( Parameters )
2009-02-17 10:27:49 +05:00
if allGroups :
aSmeshMesh = SMESH . _objref_SMESH_Gen . ConcatenateWithGroups (
self , meshes , uniteIdenticalGroups , mergeNodesAndElements , mergeTolerance )
else :
aSmeshMesh = SMESH . _objref_SMESH_Gen . Concatenate (
self , meshes , uniteIdenticalGroups , mergeNodesAndElements , mergeTolerance )
2013-02-12 20:37:44 +06:00
aMesh = Mesh ( self , self . geompyD , aSmeshMesh , name = name )
2009-02-17 10:27:49 +05:00
return aMesh
2012-08-09 16:03:55 +06:00
## Create a mesh by copying a part of another mesh.
# @param meshPart a part of mesh to copy, either a Mesh, a sub-mesh or a group;
# to copy nodes or elements not contained in any mesh object,
# pass result of Mesh.GetIDSource( list_of_ids, type ) as meshPart
# @param meshName a name of the new mesh
# @param toCopyGroups to create in the new mesh groups the copied elements belongs to
2014-10-22 19:21:15 +06:00
# @param toKeepIDs to preserve order of the copied elements or not
2012-08-09 16:03:55 +06:00
# @return an instance of Mesh class
def CopyMesh ( self , meshPart , meshName , toCopyGroups = False , toKeepIDs = False ) :
if ( isinstance ( meshPart , Mesh ) ) :
meshPart = meshPart . GetMesh ( )
mesh = SMESH . _objref_SMESH_Gen . CopyMesh ( self , meshPart , meshName , toCopyGroups , toKeepIDs )
return Mesh ( self , self . geompyD , mesh )
2008-03-07 12:47:05 +05:00
## From SMESH_Gen interface
2009-02-17 10:27:49 +05:00
# @return the list of integer values
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def GetSubShapesId ( self , theMainObject , theListOfSubObjects ) :
return SMESH . _objref_SMESH_Gen . GetSubShapesId ( self , theMainObject , theListOfSubObjects )
2009-02-17 10:27:49 +05:00
## From SMESH_Gen interface. Creates a pattern
# @return an instance of SMESH_Pattern
#
# <a href="../tui_modifying_meshes_page.html#tui_pattern_mapping">Example of Patterns usage</a>
# @ingroup l2_modif_patterns
2008-03-07 12:47:05 +05:00
def GetPattern ( self ) :
return SMESH . _objref_SMESH_Gen . GetPattern ( self )
2009-02-17 10:27:49 +05:00
## Sets number of segments per diagonal of boundary box of geometry by which
# default segment length of appropriate 1D hypotheses is defined.
# Default value is 10
# @ingroup l1_auxiliary
def SetBoundaryBoxSegmentation ( self , nbSegments ) :
SMESH . _objref_SMESH_Gen . SetBoundaryBoxSegmentation ( self , nbSegments )
2008-03-07 12:47:05 +05:00
# Filtering. Auxiliary functions:
# ------------------------------
## Creates an empty criterion
# @return SMESH.Filter.Criterion
2009-02-17 10:27:49 +05:00
# @ingroup l1_controls
2008-03-07 12:47:05 +05:00
def GetEmptyCriterion ( self ) :
Type = self . EnumToLong ( FT_Undefined )
Compare = self . EnumToLong ( FT_Undefined )
Threshold = 0
ThresholdStr = " "
ThresholdID = " "
UnaryOp = self . EnumToLong ( FT_Undefined )
BinaryOp = self . EnumToLong ( FT_Undefined )
Tolerance = 1e-07
TypeOfElement = ALL
Precision = - 1 ##@1e-07
return Filter . Criterion ( Type , Compare , Threshold , ThresholdStr , ThresholdID ,
UnaryOp , BinaryOp , Tolerance , TypeOfElement , Precision )
2009-02-17 10:27:49 +05:00
## Creates a criterion by the given parameters
2012-08-09 16:03:55 +06:00
# \n Criterion structures allow to define complex filters by combining them with logical operations (AND / OR) (see example below)
2009-02-17 10:27:49 +05:00
# @param elementType the type of elements(NODE, EDGE, FACE, VOLUME)
# @param CritType the type of criterion (FT_Taper, FT_Area, FT_RangeOfIds, FT_LyingOnGeom etc.)
# @param Compare belongs to {FT_LessThan, FT_MoreThan, FT_EqualTo}
2012-08-09 16:03:55 +06:00
# @param Threshold the threshold value (range of ids as string, shape, numeric)
2009-02-17 10:27:49 +05:00
# @param UnaryOp FT_LogicalNOT or FT_Undefined
# @param BinaryOp a binary logical operation FT_LogicalAND, FT_LogicalOR or
# FT_Undefined (must be for the last criterion of all criteria)
2012-08-09 16:03:55 +06:00
# @param Tolerance the tolerance used by FT_BelongToGeom, FT_BelongToSurface,
# FT_LyingOnGeom, FT_CoplanarFaces criteria
2008-03-07 12:47:05 +05:00
# @return SMESH.Filter.Criterion
2012-08-09 16:03:55 +06:00
#
# <a href="../tui_filters_page.html#combining_filters">Example of Criteria usage</a>
2009-02-17 10:27:49 +05:00
# @ingroup l1_controls
2008-03-07 12:47:05 +05:00
def GetCriterion ( self , elementType ,
CritType ,
Compare = FT_EqualTo ,
2012-08-09 16:03:55 +06:00
Threshold = " " ,
2008-03-07 12:47:05 +05:00
UnaryOp = FT_Undefined ,
2012-08-09 16:03:55 +06:00
BinaryOp = FT_Undefined ,
Tolerance = 1e-07 ) :
if not CritType in SMESH . FunctorType . _items :
raise TypeError , " CritType should be of SMESH.FunctorType "
2013-05-16 22:55:14 +06:00
aCriterion = self . GetEmptyCriterion ( )
2008-03-07 12:47:05 +05:00
aCriterion . TypeOfElement = elementType
2013-05-16 22:55:14 +06:00
aCriterion . Type = self . EnumToLong ( CritType )
aCriterion . Tolerance = Tolerance
2008-03-07 12:47:05 +05:00
2012-08-09 16:03:55 +06:00
aThreshold = Threshold
2008-03-07 12:47:05 +05:00
if Compare in [ FT_LessThan , FT_MoreThan , FT_EqualTo ] :
aCriterion . Compare = self . EnumToLong ( Compare )
elif Compare == " = " or Compare == " == " :
aCriterion . Compare = self . EnumToLong ( FT_EqualTo )
elif Compare == " < " :
aCriterion . Compare = self . EnumToLong ( FT_LessThan )
elif Compare == " > " :
aCriterion . Compare = self . EnumToLong ( FT_MoreThan )
2012-08-09 16:03:55 +06:00
elif Compare != FT_Undefined :
2008-03-07 12:47:05 +05:00
aCriterion . Compare = self . EnumToLong ( FT_EqualTo )
2012-08-09 16:03:55 +06:00
aThreshold = Compare
2008-03-07 12:47:05 +05:00
if CritType in [ FT_BelongToGeom , FT_BelongToPlane , FT_BelongToGenSurface ,
FT_BelongToCylinder , FT_LyingOnGeom ] :
2015-04-14 17:39:28 +05:00
# Check that Threshold is GEOM object
2013-04-04 13:08:19 +06:00
if isinstance ( aThreshold , geomBuilder . GEOM . _objref_GEOM_Object ) :
2012-08-09 16:03:55 +06:00
aCriterion . ThresholdStr = GetName ( aThreshold )
2012-12-13 17:41:29 +06:00
aCriterion . ThresholdID = aThreshold . GetStudyEntry ( )
2012-08-09 16:03:55 +06:00
if not aCriterion . ThresholdID :
2012-12-13 17:41:29 +06:00
name = aCriterion . ThresholdStr
if not name :
name = " %s _ %s " % ( aThreshold . GetShapeType ( ) , id ( aThreshold ) % 10000 )
aCriterion . ThresholdID = self . geompyD . addToStudy ( aThreshold , name )
2015-03-03 17:03:38 +05:00
# or a name of GEOM object
elif isinstance ( aThreshold , str ) :
aCriterion . ThresholdStr = aThreshold
2008-03-07 12:47:05 +05:00
else :
2015-04-14 17:39:28 +05:00
raise TypeError , " The Threshold should be a shape. "
2012-08-09 16:03:55 +06:00
if isinstance ( UnaryOp , float ) :
aCriterion . Tolerance = UnaryOp
UnaryOp = FT_Undefined
pass
2015-04-14 17:39:28 +05:00
elif CritType == FT_BelongToMeshGroup :
# Check that Threshold is a group
if isinstance ( aThreshold , SMESH . _objref_SMESH_GroupBase ) :
if aThreshold . GetType ( ) != elementType :
raise ValueError , " Group type mismatches Element type "
aCriterion . ThresholdStr = aThreshold . GetName ( )
aCriterion . ThresholdID = salome . orb . object_to_string ( aThreshold )
2015-04-14 19:18:18 +05:00
study = self . GetCurrentStudy ( )
if study :
so = study . FindObjectIOR ( aCriterion . ThresholdID )
if so :
entry = so . GetID ( )
if entry :
aCriterion . ThresholdID = entry
2015-04-14 17:39:28 +05:00
else :
raise TypeError , " The Threshold should be a Mesh Group "
2008-03-07 12:47:05 +05:00
elif CritType == FT_RangeOfIds :
2015-04-14 17:39:28 +05:00
# Check that Threshold is string
2012-08-09 16:03:55 +06:00
if isinstance ( aThreshold , str ) :
aCriterion . ThresholdStr = aThreshold
2008-03-07 12:47:05 +05:00
else :
2015-04-14 17:39:28 +05:00
raise TypeError , " The Threshold should be a string. "
2012-08-09 16:03:55 +06:00
elif CritType == FT_CoplanarFaces :
2015-04-14 17:39:28 +05:00
# Check the Threshold
2012-08-09 16:03:55 +06:00
if isinstance ( aThreshold , int ) :
aCriterion . ThresholdID = str ( aThreshold )
elif isinstance ( aThreshold , str ) :
ID = int ( aThreshold )
if ID < 1 :
raise ValueError , " Invalid ID of mesh face: ' %s ' " % aThreshold
aCriterion . ThresholdID = aThreshold
else :
2015-04-14 17:39:28 +05:00
raise TypeError , \
2012-08-09 16:03:55 +06:00
" The Threshold should be an ID of mesh face and not ' %s ' " % aThreshold
2013-05-16 22:55:14 +06:00
elif CritType == FT_ConnectedElements :
2015-04-14 17:39:28 +05:00
# Check the Threshold
2013-05-16 22:55:14 +06:00
if isinstance ( aThreshold , geomBuilder . GEOM . _objref_GEOM_Object ) : # shape
aCriterion . ThresholdID = aThreshold . GetStudyEntry ( )
if not aCriterion . ThresholdID :
name = aThreshold . GetName ( )
if not name :
name = " %s _ %s " % ( aThreshold . GetShapeType ( ) , id ( aThreshold ) % 10000 )
aCriterion . ThresholdID = self . geompyD . addToStudy ( aThreshold , name )
elif isinstance ( aThreshold , int ) : # node id
aCriterion . Threshold = aThreshold
elif isinstance ( aThreshold , list ) : # 3 point coordinates
if len ( aThreshold ) < 3 :
raise ValueError , " too few point coordinates, must be 3 "
aCriterion . ThresholdStr = " " . join ( [ str ( c ) for c in aThreshold [ : 3 ] ] )
elif isinstance ( aThreshold , str ) :
if aThreshold . isdigit ( ) :
aCriterion . Threshold = aThreshold # node id
else :
aCriterion . ThresholdStr = aThreshold # hope that it's point coordinates
else :
2015-04-14 17:39:28 +05:00
raise TypeError , \
2013-05-16 22:55:14 +06:00
" The Threshold should either a VERTEX, or a node ID, " \
" or a list of point coordinates and not ' %s ' " % aThreshold
2012-08-09 16:03:55 +06:00
elif CritType == FT_ElemGeomType :
2015-04-14 17:39:28 +05:00
# Check the Threshold
2012-08-09 16:03:55 +06:00
try :
aCriterion . Threshold = self . EnumToLong ( aThreshold )
assert ( aThreshold in SMESH . GeometryType . _items )
except :
if isinstance ( aThreshold , int ) :
aCriterion . Threshold = aThreshold
else :
2015-04-14 17:39:28 +05:00
raise TypeError , " The Threshold should be an integer or SMESH.GeometryType. "
2012-08-09 16:03:55 +06:00
pass
pass
2013-03-06 19:57:01 +06:00
elif CritType == FT_EntityType :
2015-04-14 17:39:28 +05:00
# Check the Threshold
2013-03-06 19:57:01 +06:00
try :
aCriterion . Threshold = self . EnumToLong ( aThreshold )
assert ( aThreshold in SMESH . EntityType . _items )
except :
if isinstance ( aThreshold , int ) :
aCriterion . Threshold = aThreshold
else :
2015-04-14 17:39:28 +05:00
raise TypeError , " The Threshold should be an integer or SMESH.EntityType. "
2013-03-06 19:57:01 +06:00
pass
pass
2012-08-09 16:03:55 +06:00
elif CritType == FT_GroupColor :
2015-04-14 17:39:28 +05:00
# Check the Threshold
2012-08-09 16:03:55 +06:00
try :
aCriterion . ThresholdStr = self . ColorToString ( aThreshold )
except :
2015-04-14 17:39:28 +05:00
raise TypeError , " The threshold value should be of SALOMEDS.Color type "
2012-08-09 16:03:55 +06:00
pass
elif CritType in [ FT_FreeBorders , FT_FreeEdges , FT_FreeNodes , FT_FreeFaces ,
FT_LinearOrQuadratic , FT_BadOrientedVolume ,
FT_BareBorderFace , FT_BareBorderVolume ,
FT_OverConstrainedFace , FT_OverConstrainedVolume ,
FT_EqualNodes , FT_EqualEdges , FT_EqualFaces , FT_EqualVolumes ] :
# At this point the Threshold is unnecessary
if aThreshold == FT_LogicalNOT :
2008-03-07 12:47:05 +05:00
aCriterion . UnaryOp = self . EnumToLong ( FT_LogicalNOT )
2012-08-09 16:03:55 +06:00
elif aThreshold in [ FT_LogicalAND , FT_LogicalOR ] :
aCriterion . BinaryOp = aThreshold
2008-03-07 12:47:05 +05:00
else :
2012-08-09 16:03:55 +06:00
# Check Threshold
2008-03-07 12:47:05 +05:00
try :
2012-08-09 16:03:55 +06:00
aThreshold = float ( aThreshold )
aCriterion . Threshold = aThreshold
2008-03-07 12:47:05 +05:00
except :
2015-04-14 17:39:28 +05:00
raise TypeError , " The Threshold should be a number. "
2008-03-07 12:47:05 +05:00
return None
2012-08-09 16:03:55 +06:00
if Threshold == FT_LogicalNOT or UnaryOp == FT_LogicalNOT :
2008-03-07 12:47:05 +05:00
aCriterion . UnaryOp = self . EnumToLong ( FT_LogicalNOT )
2012-08-09 16:03:55 +06:00
if Threshold in [ FT_LogicalAND , FT_LogicalOR ] :
aCriterion . BinaryOp = self . EnumToLong ( Threshold )
2008-03-07 12:47:05 +05:00
if UnaryOp in [ FT_LogicalAND , FT_LogicalOR ] :
aCriterion . BinaryOp = self . EnumToLong ( UnaryOp )
if BinaryOp in [ FT_LogicalAND , FT_LogicalOR ] :
aCriterion . BinaryOp = self . EnumToLong ( BinaryOp )
return aCriterion
2009-02-17 10:27:49 +05:00
## Creates a filter with the given parameters
# @param elementType the type of elements in the group
# @param CritType the type of criterion ( FT_Taper, FT_Area, FT_RangeOfIds, FT_LyingOnGeom etc. )
# @param Compare belongs to {FT_LessThan, FT_MoreThan, FT_EqualTo}
2012-08-09 16:03:55 +06:00
# @param Threshold the threshold value (range of id ids as string, shape, numeric)
2009-02-17 10:27:49 +05:00
# @param UnaryOp FT_LogicalNOT or FT_Undefined
2012-08-09 16:03:55 +06:00
# @param Tolerance the tolerance used by FT_BelongToGeom, FT_BelongToSurface,
# FT_LyingOnGeom, FT_CoplanarFaces and FT_EqualNodes criteria
2013-05-21 15:08:25 +06:00
# @param mesh the mesh to initialize the filter with
2008-03-07 12:47:05 +05:00
# @return SMESH_Filter
2012-08-09 16:03:55 +06:00
#
# <a href="../tui_filters_page.html#tui_filters">Example of Filters usage</a>
2009-02-17 10:27:49 +05:00
# @ingroup l1_controls
2008-03-07 12:47:05 +05:00
def GetFilter ( self , elementType ,
CritType = FT_Undefined ,
Compare = FT_EqualTo ,
2012-08-09 16:03:55 +06:00
Threshold = " " ,
UnaryOp = FT_Undefined ,
2013-05-16 22:55:14 +06:00
Tolerance = 1e-07 ,
mesh = None ) :
2012-08-09 16:03:55 +06:00
aCriterion = self . GetCriterion ( elementType , CritType , Compare , Threshold , UnaryOp , FT_Undefined , Tolerance )
2008-03-07 12:47:05 +05:00
aFilterMgr = self . CreateFilterManager ( )
aFilter = aFilterMgr . CreateFilter ( )
aCriteria = [ ]
aCriteria . append ( aCriterion )
aFilter . SetCriteria ( aCriteria )
2013-05-16 22:55:14 +06:00
if mesh :
if isinstance ( mesh , Mesh ) : aFilter . SetMesh ( mesh . GetMesh ( ) )
else : aFilter . SetMesh ( mesh )
2012-08-09 16:03:55 +06:00
aFilterMgr . UnRegister ( )
return aFilter
## Creates a filter from criteria
# @param criteria a list of criteria
2014-01-20 16:31:23 +06:00
# @param binOp binary operator used when binary operator of criteria is undefined
2012-08-09 16:03:55 +06:00
# @return SMESH_Filter
#
# <a href="../tui_filters_page.html#tui_filters">Example of Filters usage</a>
# @ingroup l1_controls
2014-01-20 16:31:23 +06:00
def GetFilterFromCriteria ( self , criteria , binOp = SMESH . FT_LogicalAND ) :
for i in range ( len ( criteria ) - 1 ) :
if criteria [ i ] . BinaryOp == self . EnumToLong ( SMESH . FT_Undefined ) :
criteria [ i ] . BinaryOp = self . EnumToLong ( binOp )
2012-08-09 16:03:55 +06:00
aFilterMgr = self . CreateFilterManager ( )
aFilter = aFilterMgr . CreateFilter ( )
aFilter . SetCriteria ( criteria )
aFilterMgr . UnRegister ( )
2008-03-07 12:47:05 +05:00
return aFilter
2009-02-17 10:27:49 +05:00
## Creates a numerical functor by its type
# @param theCriterion FT_...; functor type
2008-03-07 12:47:05 +05:00
# @return SMESH_NumericalFunctor
2009-02-17 10:27:49 +05:00
# @ingroup l1_controls
2008-03-07 12:47:05 +05:00
def GetFunctor ( self , theCriterion ) :
2012-12-13 17:41:29 +06:00
if isinstance ( theCriterion , SMESH . _objref_NumericalFunctor ) :
return theCriterion
2008-03-07 12:47:05 +05:00
aFilterMgr = self . CreateFilterManager ( )
2013-02-12 20:37:44 +06:00
functor = None
2008-03-07 12:47:05 +05:00
if theCriterion == FT_AspectRatio :
2013-02-12 20:37:44 +06:00
functor = aFilterMgr . CreateAspectRatio ( )
2008-03-07 12:47:05 +05:00
elif theCriterion == FT_AspectRatio3D :
2013-02-12 20:37:44 +06:00
functor = aFilterMgr . CreateAspectRatio3D ( )
2008-03-07 12:47:05 +05:00
elif theCriterion == FT_Warping :
2013-02-12 20:37:44 +06:00
functor = aFilterMgr . CreateWarping ( )
2008-03-07 12:47:05 +05:00
elif theCriterion == FT_MinimumAngle :
2013-02-12 20:37:44 +06:00
functor = aFilterMgr . CreateMinimumAngle ( )
2008-03-07 12:47:05 +05:00
elif theCriterion == FT_Taper :
2013-02-12 20:37:44 +06:00
functor = aFilterMgr . CreateTaper ( )
2008-03-07 12:47:05 +05:00
elif theCriterion == FT_Skew :
2013-02-12 20:37:44 +06:00
functor = aFilterMgr . CreateSkew ( )
2008-03-07 12:47:05 +05:00
elif theCriterion == FT_Area :
2013-02-12 20:37:44 +06:00
functor = aFilterMgr . CreateArea ( )
2008-03-07 12:47:05 +05:00
elif theCriterion == FT_Volume3D :
2013-02-12 20:37:44 +06:00
functor = aFilterMgr . CreateVolume3D ( )
2012-08-09 16:03:55 +06:00
elif theCriterion == FT_MaxElementLength2D :
2013-02-12 20:37:44 +06:00
functor = aFilterMgr . CreateMaxElementLength2D ( )
2012-08-09 16:03:55 +06:00
elif theCriterion == FT_MaxElementLength3D :
2013-02-12 20:37:44 +06:00
functor = aFilterMgr . CreateMaxElementLength3D ( )
2008-03-07 12:47:05 +05:00
elif theCriterion == FT_MultiConnection :
2013-02-12 20:37:44 +06:00
functor = aFilterMgr . CreateMultiConnection ( )
2008-03-07 12:47:05 +05:00
elif theCriterion == FT_MultiConnection2D :
2013-02-12 20:37:44 +06:00
functor = aFilterMgr . CreateMultiConnection2D ( )
2008-03-07 12:47:05 +05:00
elif theCriterion == FT_Length :
2013-02-12 20:37:44 +06:00
functor = aFilterMgr . CreateLength ( )
2008-03-07 12:47:05 +05:00
elif theCriterion == FT_Length2D :
2013-02-12 20:37:44 +06:00
functor = aFilterMgr . CreateLength2D ( )
2008-03-07 12:47:05 +05:00
else :
2012-08-09 16:03:55 +06:00
print " Error: given parameter is not numerical functor type. "
2013-02-12 20:37:44 +06:00
aFilterMgr . UnRegister ( )
return functor
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Creates hypothesis
2012-08-09 16:03:55 +06:00
# @param theHType mesh hypothesis type (string)
# @param theLibName mesh plug-in library name
2009-02-17 10:27:49 +05:00
# @return created hypothesis instance
def CreateHypothesis ( self , theHType , theLibName = " libStdMeshersEngine.so " ) :
2012-08-09 16:03:55 +06:00
hyp = SMESH . _objref_SMESH_Gen . CreateHypothesis ( self , theHType , theLibName )
if isinstance ( hyp , SMESH . _objref_SMESH_Algo ) :
return hyp
# wrap hypothesis methods
#print "HYPOTHESIS", theHType
for meth_name in dir ( hyp . __class__ ) :
if not meth_name . startswith ( " Get " ) and \
not meth_name in dir ( SMESH . _objref_SMESH_Hypothesis ) :
method = getattr ( hyp . __class__ , meth_name )
if callable ( method ) :
setattr ( hyp , meth_name , hypMethodWrapper ( hyp , method ) )
return hyp
## Gets the mesh statistic
# @return dictionary "element type" - "count of elements"
# @ingroup l1_meshinfo
def GetMeshInfo ( self , obj ) :
if isinstance ( obj , Mesh ) :
obj = obj . GetMesh ( )
d = { }
if hasattr ( obj , " GetMeshInfo " ) :
values = obj . GetMeshInfo ( )
for i in range ( SMESH . Entity_Last . _v ) :
if i < len ( values ) : d [ SMESH . EntityType . _item ( i ) ] = values [ i ]
pass
return d
## Get minimum distance between two objects
#
# If @a src2 is None, and @a id2 = 0, distance from @a src1 / @a id1 to the origin is computed.
# If @a src2 is None, and @a id2 != 0, it is assumed that both @a id1 and @a id2 belong to @a src1.
#
# @param src1 first source object
# @param src2 second source object
# @param id1 node/element id from the first source
# @param id2 node/element id from the second (or first) source
# @param isElem1 @c True if @a id1 is element id, @c False if it is node id
# @param isElem2 @c True if @a id2 is element id, @c False if it is node id
# @return minimum distance value
# @sa GetMinDistance()
# @ingroup l1_measurements
def MinDistance ( self , src1 , src2 = None , id1 = 0 , id2 = 0 , isElem1 = False , isElem2 = False ) :
result = self . GetMinDistance ( src1 , src2 , id1 , id2 , isElem1 , isElem2 )
if result is None :
result = 0.0
else :
result = result . value
return result
## Get measure structure specifying minimum distance data between two objects
#
# If @a src2 is None, and @a id2 = 0, distance from @a src1 / @a id1 to the origin is computed.
# If @a src2 is None, and @a id2 != 0, it is assumed that both @a id1 and @a id2 belong to @a src1.
#
# @param src1 first source object
# @param src2 second source object
# @param id1 node/element id from the first source
# @param id2 node/element id from the second (or first) source
# @param isElem1 @c True if @a id1 is element id, @c False if it is node id
# @param isElem2 @c True if @a id2 is element id, @c False if it is node id
# @return Measure structure or None if input data is invalid
# @sa MinDistance()
# @ingroup l1_measurements
def GetMinDistance ( self , src1 , src2 = None , id1 = 0 , id2 = 0 , isElem1 = False , isElem2 = False ) :
if isinstance ( src1 , Mesh ) : src1 = src1 . mesh
if isinstance ( src2 , Mesh ) : src2 = src2 . mesh
if src2 is None and id2 != 0 : src2 = src1
if not hasattr ( src1 , " _narrow " ) : return None
src1 = src1 . _narrow ( SMESH . SMESH_IDSource )
if not src1 : return None
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2012-08-09 16:03:55 +06:00
if id1 != 0 :
m = src1 . GetMesh ( )
e = m . GetMeshEditor ( )
if isElem1 :
src1 = e . MakeIDSource ( [ id1 ] , SMESH . FACE )
else :
src1 = e . MakeIDSource ( [ id1 ] , SMESH . NODE )
2013-08-07 20:06:39 +06:00
unRegister . set ( src1 )
2012-08-09 16:03:55 +06:00
pass
if hasattr ( src2 , " _narrow " ) :
src2 = src2 . _narrow ( SMESH . SMESH_IDSource )
if src2 and id2 != 0 :
m = src2 . GetMesh ( )
e = m . GetMeshEditor ( )
if isElem2 :
src2 = e . MakeIDSource ( [ id2 ] , SMESH . FACE )
else :
src2 = e . MakeIDSource ( [ id2 ] , SMESH . NODE )
2013-08-07 20:06:39 +06:00
unRegister . set ( src2 )
2012-08-09 16:03:55 +06:00
pass
pass
aMeasurements = self . CreateMeasurements ( )
2013-08-07 20:06:39 +06:00
unRegister . set ( aMeasurements )
2012-08-09 16:03:55 +06:00
result = aMeasurements . MinDistance ( src1 , src2 )
return result
## Get bounding box of the specified object(s)
# @param objects single source object or list of source objects
# @return tuple of six values (minX, minY, minZ, maxX, maxY, maxZ)
# @sa GetBoundingBox()
# @ingroup l1_measurements
def BoundingBox ( self , objects ) :
result = self . GetBoundingBox ( objects )
if result is None :
result = ( 0.0 , ) * 6
else :
result = ( result . minX , result . minY , result . minZ , result . maxX , result . maxY , result . maxZ )
return result
## Get measure structure specifying bounding box data of the specified object(s)
# @param objects single source object or list of source objects
# @return Measure structure
# @sa BoundingBox()
# @ingroup l1_measurements
def GetBoundingBox ( self , objects ) :
if isinstance ( objects , tuple ) :
objects = list ( objects )
if not isinstance ( objects , list ) :
objects = [ objects ]
srclist = [ ]
for o in objects :
if isinstance ( o , Mesh ) :
srclist . append ( o . mesh )
elif hasattr ( o , " _narrow " ) :
src = o . _narrow ( SMESH . SMESH_IDSource )
if src : srclist . append ( src )
pass
pass
aMeasurements = self . CreateMeasurements ( )
result = aMeasurements . BoundingBox ( srclist )
aMeasurements . UnRegister ( )
return result
2009-02-17 10:27:49 +05:00
2013-08-20 19:48:54 +06:00
## Get sum of lengths of all 1D elements in the mesh object.
2013-09-27 13:57:23 +06:00
# @param obj mesh, submesh or group
2013-08-20 19:48:54 +06:00
# @return sum of lengths of all 1D elements
# @ingroup l1_measurements
def GetLength ( self , obj ) :
if isinstance ( obj , Mesh ) : obj = obj . mesh
if isinstance ( obj , Mesh_Algorithm ) : obj = obj . GetSubMesh ( )
aMeasurements = self . CreateMeasurements ( )
value = aMeasurements . Length ( obj )
aMeasurements . UnRegister ( )
return value
## Get sum of areas of all 2D elements in the mesh object.
2013-09-27 13:57:23 +06:00
# @param obj mesh, submesh or group
2013-08-20 19:48:54 +06:00
# @return sum of areas of all 2D elements
# @ingroup l1_measurements
def GetArea ( self , obj ) :
if isinstance ( obj , Mesh ) : obj = obj . mesh
if isinstance ( obj , Mesh_Algorithm ) : obj = obj . GetSubMesh ( )
aMeasurements = self . CreateMeasurements ( )
value = aMeasurements . Area ( obj )
aMeasurements . UnRegister ( )
return value
## Get sum of volumes of all 3D elements in the mesh object.
2013-09-27 13:57:23 +06:00
# @param obj mesh, submesh or group
2013-08-20 19:48:54 +06:00
# @return sum of volumes of all 3D elements
# @ingroup l1_measurements
def GetVolume ( self , obj ) :
if isinstance ( obj , Mesh ) : obj = obj . mesh
if isinstance ( obj , Mesh_Algorithm ) : obj = obj . GetSubMesh ( )
aMeasurements = self . CreateMeasurements ( )
value = aMeasurements . Volume ( obj )
aMeasurements . UnRegister ( )
return value
pass # end of class smeshBuilder
2008-03-07 12:47:05 +05:00
import omniORB
2009-02-17 10:27:49 +05:00
#Registering the new proxy for SMESH_Gen
2013-04-04 13:08:19 +06:00
omniORB . registerObjref ( SMESH . _objref_SMESH_Gen . _NP_RepositoryId , smeshBuilder )
## Create a new smeshBuilder instance.The smeshBuilder class provides the Python
# interface to create or load meshes.
#
# Typical use is:
# \code
# import salome
# salome.salome_init()
# from salome.smesh import smeshBuilder
# smesh = smeshBuilder.New(theStudy)
# \endcode
# @param study SALOME study, generally obtained by salome.myStudy.
# @param instance CORBA proxy of SMESH Engine. If None, the default Engine is used.
# @return smeshBuilder instance
def New ( study , instance = None ) :
"""
Create a new smeshBuilder instance . The smeshBuilder class provides the Python
interface to create or load meshes .
Typical use is :
import salome
salome . salome_init ( )
from salome . smesh import smeshBuilder
smesh = smeshBuilder . New ( theStudy )
Parameters :
study SALOME study , generally obtained by salome . myStudy .
instance CORBA proxy of SMESH Engine . If None , the default Engine is used .
Returns :
smeshBuilder instance
"""
global engine
global smeshInst
global doLcc
engine = instance
if engine is None :
doLcc = True
smeshInst = smeshBuilder ( )
assert isinstance ( smeshInst , smeshBuilder ) , " Smesh engine class is %s but should be smeshBuilder.smeshBuilder. Import salome.smesh.smeshBuilder before creating the instance. " % smeshInst . __class__
smeshInst . init_smesh ( study )
return smeshInst
2008-03-07 12:47:05 +05:00
# Public class: Mesh
# ==================
2009-02-17 10:27:49 +05:00
## This class allows defining and managing a mesh.
# It has a set of methods to build a mesh on the given geometry, including the definition of sub-meshes.
# It also has methods to define groups of mesh elements, to modify a mesh (by addition of
# new nodes and elements and by changing the existing entities), to get information
2008-03-07 12:47:05 +05:00
# about a mesh and to export a mesh into different formats.
class Mesh :
2014-02-05 14:08:10 +06:00
__metaclass__ = MeshMeta
2008-03-07 12:47:05 +05:00
geom = 0
mesh = 0
editor = 0
## Constructor
#
2009-02-17 10:27:49 +05:00
# Creates a mesh on the shape \a obj (or an empty mesh if \a obj is equal to 0) and
# sets the GUI name of this mesh to \a name.
2013-04-04 13:08:19 +06:00
# @param smeshpyD an instance of smeshBuilder class
# @param geompyD an instance of geomBuilder class
2008-03-07 12:47:05 +05:00
# @param obj Shape to be meshed or SMESH_Mesh object
# @param name Study name of the mesh
2009-02-17 10:27:49 +05:00
# @ingroup l2_construct
2008-03-07 12:47:05 +05:00
def __init__ ( self , smeshpyD , geompyD , obj = 0 , name = 0 ) :
self . smeshpyD = smeshpyD
self . geompyD = geompyD
if obj is None :
obj = 0
2013-02-12 20:37:44 +06:00
objHasName = False
2008-03-07 12:47:05 +05:00
if obj != 0 :
2013-04-04 13:08:19 +06:00
if isinstance ( obj , geomBuilder . GEOM . _objref_GEOM_Object ) :
2008-03-07 12:47:05 +05:00
self . geom = obj
2013-02-12 20:37:44 +06:00
objHasName = True
2012-08-09 16:03:55 +06:00
# publish geom of mesh (issue 0021122)
if not self . geom . GetStudyEntry ( ) and smeshpyD . GetCurrentStudy ( ) :
objHasName = False
studyID = smeshpyD . GetCurrentStudy ( ) . _get_StudyId ( )
if studyID != geompyD . myStudyId :
geompyD . init_geom ( smeshpyD . GetCurrentStudy ( ) )
pass
2012-10-08 17:56:59 +06:00
if name :
2013-02-12 20:37:44 +06:00
geo_name = name + " shape "
2012-10-08 17:56:59 +06:00
else :
2013-02-12 20:37:44 +06:00
geo_name = " %s _ %s to mesh " % ( self . geom . GetShapeType ( ) , id ( self . geom ) % 100 )
2012-08-09 16:03:55 +06:00
geompyD . addToStudy ( self . geom , geo_name )
2013-09-13 12:35:30 +06:00
self . SetMesh ( self . smeshpyD . CreateMesh ( self . geom ) )
2012-08-09 16:03:55 +06:00
2008-03-07 12:47:05 +05:00
elif isinstance ( obj , SMESH . _objref_SMESH_Mesh ) :
self . SetMesh ( obj )
else :
2013-09-13 12:58:16 +06:00
self . SetMesh ( self . smeshpyD . CreateEmptyMesh ( ) )
2013-02-12 20:37:44 +06:00
if name :
2009-02-17 10:27:49 +05:00
self . smeshpyD . SetName ( self . mesh , name )
2013-02-12 20:37:44 +06:00
elif objHasName :
self . smeshpyD . SetName ( self . mesh , GetName ( obj ) ) # + " mesh"
2009-02-17 10:27:49 +05:00
if not self . geom :
self . geom = self . mesh . GetShapeToMesh ( )
2008-03-07 12:47:05 +05:00
2012-12-13 17:41:29 +06:00
self . editor = self . mesh . GetMeshEditor ( )
self . functors = [ None ] * SMESH . FT_Undefined . _v
2008-03-07 12:47:05 +05:00
2012-08-09 16:03:55 +06:00
# set self to algoCreator's
for attrName in dir ( self ) :
attr = getattr ( self , attrName )
if isinstance ( attr , algoCreator ) :
setattr ( self , attrName , attr . copy ( self ) )
2013-09-13 12:35:30 +06:00
pass
pass
pass
2012-08-09 16:03:55 +06:00
2013-09-13 12:35:30 +06:00
## Destructor. Clean-up resources
def __del__ ( self ) :
if self . mesh :
2013-09-19 18:44:24 +06:00
#self.mesh.UnRegister()
2013-09-13 12:35:30 +06:00
pass
pass
2009-02-17 10:27:49 +05:00
## Initializes the Mesh object from an instance of SMESH_Mesh interface
# @param theMesh a SMESH_Mesh object
# @ingroup l2_construct
2008-03-07 12:47:05 +05:00
def SetMesh ( self , theMesh ) :
2013-09-19 18:44:24 +06:00
# do not call Register() as this prevents mesh servant deletion at closing study
#if self.mesh: self.mesh.UnRegister()
2008-03-07 12:47:05 +05:00
self . mesh = theMesh
2013-02-12 20:37:44 +06:00
if self . mesh :
2013-09-19 18:44:24 +06:00
#self.mesh.Register()
2013-02-12 20:37:44 +06:00
self . geom = self . mesh . GetShapeToMesh ( )
2013-09-13 12:58:16 +06:00
pass
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Returns the mesh, that is an instance of SMESH_Mesh interface
# @return a SMESH_Mesh object
# @ingroup l2_construct
2008-03-07 12:47:05 +05:00
def GetMesh ( self ) :
return self . mesh
2009-02-17 10:27:49 +05:00
## Gets the name of the mesh
# @return the name of the mesh as a string
# @ingroup l2_construct
2008-03-07 12:47:05 +05:00
def GetName ( self ) :
name = GetName ( self . GetMesh ( ) )
return name
2009-02-17 10:27:49 +05:00
## Sets a name to the mesh
# @param name a new name of the mesh
# @ingroup l2_construct
2008-03-07 12:47:05 +05:00
def SetName ( self , name ) :
2009-02-17 10:27:49 +05:00
self . smeshpyD . SetName ( self . GetMesh ( ) , name )
## Gets the subMesh object associated to a \a theSubObject geometrical object.
# The subMesh object gives access to the IDs of nodes and elements.
2012-08-09 16:03:55 +06:00
# @param geom a geometrical object (shape)
# @param name a name for the submesh
2009-02-17 10:27:49 +05:00
# @return an object of type SMESH_SubMesh, representing a part of mesh, which lies on the given shape
# @ingroup l2_submeshes
2012-08-09 16:03:55 +06:00
def GetSubMesh ( self , geom , name ) :
AssureGeomPublished ( self , geom , name )
submesh = self . mesh . GetSubMesh ( geom , name )
2008-03-07 12:47:05 +05:00
return submesh
2009-02-17 10:27:49 +05:00
## Returns the shape associated to the mesh
# @return a GEOM_Object
# @ingroup l2_construct
2008-03-07 12:47:05 +05:00
def GetShape ( self ) :
return self . geom
2009-02-17 10:27:49 +05:00
## Associates the given shape to the mesh (entails the recreation of the mesh)
# @param geom the shape to be meshed (GEOM_Object)
# @ingroup l2_construct
2008-03-07 12:47:05 +05:00
def SetShape ( self , geom ) :
self . mesh = self . smeshpyD . CreateMesh ( geom )
2012-08-09 16:03:55 +06:00
## Loads mesh from the study after opening the study
def Load ( self ) :
self . mesh . Load ( )
2009-02-17 10:27:49 +05:00
## Returns true if the hypotheses are defined well
2012-08-09 16:03:55 +06:00
# @param theSubObject a sub-shape of a mesh shape
2008-03-07 12:47:05 +05:00
# @return True or False
2009-02-17 10:27:49 +05:00
# @ingroup l2_construct
2008-03-07 12:47:05 +05:00
def IsReadyToCompute ( self , theSubObject ) :
return self . smeshpyD . IsReadyToCompute ( self . mesh , theSubObject )
2009-02-17 10:27:49 +05:00
## Returns errors of hypotheses definition.
# The list of errors is empty if everything is OK.
2012-08-09 16:03:55 +06:00
# @param theSubObject a sub-shape of a mesh shape
2008-03-07 12:47:05 +05:00
# @return a list of errors
2009-02-17 10:27:49 +05:00
# @ingroup l2_construct
2008-03-07 12:47:05 +05:00
def GetAlgoState ( self , theSubObject ) :
return self . smeshpyD . GetAlgoState ( self . mesh , theSubObject )
2009-02-17 10:27:49 +05:00
## Returns a geometrical object on which the given element was built.
2008-03-07 12:47:05 +05:00
# The returned geometrical object, if not nil, is either found in the
2009-02-17 10:27:49 +05:00
# study or published by this method with the given name
# @param theElementID the id of the mesh element
# @param theGeomName the user-defined name of the geometrical object
2008-03-07 12:47:05 +05:00
# @return GEOM::GEOM_Object instance
2009-02-17 10:27:49 +05:00
# @ingroup l2_construct
2008-03-07 12:47:05 +05:00
def GetGeometryByMeshElement ( self , theElementID , theGeomName ) :
return self . smeshpyD . GetGeometryByMeshElement ( self . mesh , theElementID , theGeomName )
2009-02-17 10:27:49 +05:00
## Returns the mesh dimension depending on the dimension of the underlying shape
2013-02-12 20:37:44 +06:00
# or, if the mesh is not based on any shape, basing on deimension of elements
2008-03-07 12:47:05 +05:00
# @return mesh dimension as an integer value [0,3]
2009-02-17 10:27:49 +05:00
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def MeshDimension ( self ) :
2013-02-12 20:37:44 +06:00
if self . mesh . HasShapeToMesh ( ) :
2013-04-04 13:08:19 +06:00
shells = self . geompyD . SubShapeAllIDs ( self . geom , self . geompyD . ShapeType [ " SOLID " ] )
2013-02-12 20:37:44 +06:00
if len ( shells ) > 0 :
return 3
elif self . geompyD . NumberOfFaces ( self . geom ) > 0 :
return 2
elif self . geompyD . NumberOfEdges ( self . geom ) > 0 :
return 1
else :
return 0 ;
2008-03-07 12:47:05 +05:00
else :
2013-02-12 20:37:44 +06:00
if self . NbVolumes ( ) > 0 : return 3
if self . NbFaces ( ) > 0 : return 2
if self . NbEdges ( ) > 0 : return 1
return 0
2008-03-07 12:47:05 +05:00
2012-08-09 16:03:55 +06:00
## Evaluates size of prospective mesh on a shape
# @return a list where i-th element is a number of elements of i-th SMESH.EntityType
# To know predicted number of e.g. edges, inquire it this way
# Evaluate()[ EnumToLong( Entity_Edge )]
def Evaluate ( self , geom = 0 ) :
2013-04-04 13:08:19 +06:00
if geom == 0 or not isinstance ( geom , geomBuilder . GEOM . _objref_GEOM_Object ) :
2012-08-09 16:03:55 +06:00
if self . geom == 0 :
geom = self . mesh . GetShapeToMesh ( )
else :
geom = self . geom
return self . smeshpyD . Evaluate ( self . mesh , geom )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Computes the mesh and returns the status of the computation
2012-08-09 16:03:55 +06:00
# @param geom geomtrical shape on which mesh data should be computed
# @param discardModifs if True and the mesh has been edited since
# a last total re-compute and that may prevent successful partial re-compute,
# then the mesh is cleaned before Compute()
2015-02-20 12:08:10 +05:00
# @param refresh if @c True, Object browser is automatically updated (when running in GUI)
2008-03-07 12:47:05 +05:00
# @return True or False
2009-02-17 10:27:49 +05:00
# @ingroup l2_construct
2015-02-20 12:08:10 +05:00
def Compute ( self , geom = 0 , discardModifs = False , refresh = False ) :
2013-04-04 13:08:19 +06:00
if geom == 0 or not isinstance ( geom , geomBuilder . GEOM . _objref_GEOM_Object ) :
2008-03-07 12:47:05 +05:00
if self . geom == 0 :
2009-02-17 10:27:49 +05:00
geom = self . mesh . GetShapeToMesh ( )
2008-03-07 12:47:05 +05:00
else :
geom = self . geom
ok = False
try :
2012-08-09 16:03:55 +06:00
if discardModifs and self . mesh . HasModificationsToDiscard ( ) : # issue 0020693
self . mesh . Clear ( )
2008-03-07 12:47:05 +05:00
ok = self . smeshpyD . Compute ( self . mesh , geom )
except SALOME . SALOME_Exception , ex :
print " Mesh computation failed, exception caught: "
print " " , ex . details . text
except :
import traceback
print " Mesh computation failed, exception caught: "
traceback . print_exc ( )
2009-02-17 10:27:49 +05:00
if True : #not ok:
2008-03-07 12:47:05 +05:00
allReasons = " "
2012-08-09 16:03:55 +06:00
# Treat compute errors
computeErrors = self . smeshpyD . GetComputeErrors ( self . mesh , geom )
for err in computeErrors :
shapeText = " "
if self . mesh . HasShapeToMesh ( ) :
try :
mainIOR = salome . orb . object_to_string ( geom )
for sname in salome . myStudyManager . GetOpenStudies ( ) :
s = salome . myStudyManager . GetStudyByName ( sname )
if not s : continue
mainSO = s . FindObjectIOR ( mainIOR )
if not mainSO : continue
if err . subShapeID == 1 :
shapeText = ' on " %s " ' % mainSO . GetName ( )
subIt = s . NewChildIterator ( mainSO )
while subIt . More ( ) :
subSO = subIt . Value ( )
subIt . Next ( )
obj = subSO . GetObject ( )
if not obj : continue
2013-04-04 13:08:19 +06:00
go = obj . _narrow ( geomBuilder . GEOM . _objref_GEOM_Object )
2012-08-09 16:03:55 +06:00
if not go : continue
ids = go . GetSubShapeIndices ( )
if len ( ids ) == 1 and ids [ 0 ] == err . subShapeID :
shapeText = ' on " %s " ' % subSO . GetName ( )
break
if not shapeText :
shape = self . geompyD . GetSubShape ( geom , [ err . subShapeID ] )
if shape :
shapeText = " on %s # %s " % ( shape . GetShapeType ( ) , err . subShapeID )
else :
shapeText = " on subshape # %s " % ( err . subShapeID )
except :
shapeText = " on subshape # %s " % ( err . subShapeID )
errText = " "
2012-10-08 17:56:59 +06:00
stdErrors = [ " OK " , #COMPERR_OK
" Invalid input mesh " , #COMPERR_BAD_INPUT_MESH
" std::exception " , #COMPERR_STD_EXCEPTION
" OCC exception " , #COMPERR_OCC_EXCEPTION
2013-02-12 20:37:44 +06:00
" .. " , #COMPERR_SLM_EXCEPTION
2012-10-08 17:56:59 +06:00
" Unknown exception " , #COMPERR_EXCEPTION
2012-08-09 16:03:55 +06:00
" Memory allocation problem " , #COMPERR_MEMORY_PB
2012-10-08 17:56:59 +06:00
" Algorithm failed " , #COMPERR_ALGO_FAILED
" Unexpected geometry " , #COMPERR_BAD_SHAPE
" Warning " , #COMPERR_WARNING
" Computation cancelled " , #COMPERR_CANCELED
" No mesh on sub-shape " ] #COMPERR_NO_MESH_ON_SHAPE
2012-08-09 16:03:55 +06:00
if err . code > 0 :
if err . code < len ( stdErrors ) : errText = stdErrors [ err . code ]
else :
errText = " code %s " % - err . code
if errText : errText + = " . "
errText + = err . comment
if allReasons != " " : allReasons + = " \n "
2013-05-24 18:00:21 +06:00
if ok :
allReasons + = ' - " %s " %s - %s ' % ( err . algoName , shapeText , errText )
else :
allReasons + = ' - " %s " failed %s . Error: %s ' % ( err . algoName , shapeText , errText )
2012-08-09 16:03:55 +06:00
pass
# Treat hyp errors
errors = self . smeshpyD . GetAlgoState ( self . mesh , geom )
2008-03-07 12:47:05 +05:00
for err in errors :
if err . isGlobalAlgo :
glob = " global "
else :
glob = " local "
pass
dim = err . algoDim
name = err . algoName
if len ( name ) == 0 :
reason = ' %s %s D algorithm is missing ' % ( glob , dim )
elif err . state == HYP_MISSING :
reason = ( ' %s %s D algorithm " %s " misses %s D hypothesis '
% ( glob , dim , name , dim ) )
elif err . state == HYP_NOTCONFORM :
reason = ' Global " Not Conform mesh allowed " hypothesis is missing '
elif err . state == HYP_BAD_PARAMETER :
reason = ( ' Hypothesis of %s %s D algorithm " %s " has a bad parameter value '
% ( glob , dim , name ) )
elif err . state == HYP_BAD_GEOMETRY :
2009-02-17 10:27:49 +05:00
reason = ( ' %s %s D algorithm " %s " is assigned to mismatching '
' geometry ' % ( glob , dim , name ) )
2012-12-13 17:41:29 +06:00
elif err . state == HYP_HIDDEN_ALGO :
reason = ( ' %s %s D algorithm " %s " is ignored due to presence of a %s '
' algorithm of upper dimension generating %s D mesh '
% ( glob , dim , name , glob , dim ) )
2008-03-07 12:47:05 +05:00
else :
2012-12-13 17:41:29 +06:00
reason = ( " For unknown reason. "
2013-04-04 13:08:19 +06:00
" Developer, revise Mesh.Compute() implementation in smeshBuilder.py! " )
2008-03-07 12:47:05 +05:00
pass
2012-08-09 16:03:55 +06:00
if allReasons != " " : allReasons + = " \n "
allReasons + = " - " + reason
2008-03-07 12:47:05 +05:00
pass
2012-08-09 16:03:55 +06:00
if not ok or allReasons != " " :
msg = ' " ' + GetName ( self . mesh ) + ' " '
if ok : msg + = " has been computed with warnings "
else : msg + = " has not been computed "
if allReasons != " " : msg + = " : "
else : msg + = " . "
print msg
2008-03-07 12:47:05 +05:00
print allReasons
pass
2012-08-09 16:03:55 +06:00
if salome . sg . hasDesktop ( ) and self . mesh . GetStudyId ( ) > = 0 :
2008-03-07 12:47:05 +05:00
smeshgui = salome . ImportComponentGUI ( " SMESH " )
2012-08-09 16:03:55 +06:00
smeshgui . Init ( self . mesh . GetStudyId ( ) )
2008-03-07 12:47:05 +05:00
smeshgui . SetMeshIcon ( salome . ObjectToID ( self . mesh ) , ok , ( self . NbNodes ( ) == 0 ) )
2015-02-20 12:08:10 +05:00
if refresh : salome . sg . updateObjBrowser ( 1 )
2008-03-07 12:47:05 +05:00
pass
return ok
2012-08-09 16:03:55 +06:00
## Return submesh objects list in meshing order
# @return list of list of submesh objects
# @ingroup l2_construct
def GetMeshOrder ( self ) :
return self . mesh . GetMeshOrder ( )
## Return submesh objects list in meshing order
# @return list of list of submesh objects
# @ingroup l2_construct
def SetMeshOrder ( self , submeshes ) :
return self . mesh . SetMeshOrder ( submeshes )
2009-02-17 10:27:49 +05:00
## Removes all nodes and elements
2015-02-25 22:07:02 +05:00
# @param refresh if @c True, Object browser is automatically updated (when running in GUI)
2009-02-17 10:27:49 +05:00
# @ingroup l2_construct
2015-02-20 12:08:10 +05:00
def Clear ( self , refresh = False ) :
2009-02-17 10:27:49 +05:00
self . mesh . Clear ( )
2013-02-12 20:37:44 +06:00
if ( salome . sg . hasDesktop ( ) and
2015-02-20 12:08:10 +05:00
salome . myStudyManager . GetStudyByID ( self . mesh . GetStudyId ( ) ) ) :
2009-02-17 10:27:49 +05:00
smeshgui = salome . ImportComponentGUI ( " SMESH " )
2012-08-09 16:03:55 +06:00
smeshgui . Init ( self . mesh . GetStudyId ( ) )
2009-02-17 10:27:49 +05:00
smeshgui . SetMeshIcon ( salome . ObjectToID ( self . mesh ) , False , True )
2015-02-20 12:08:10 +05:00
if refresh : salome . sg . updateObjBrowser ( 1 )
2009-02-17 10:27:49 +05:00
## Removes all nodes and elements of indicated shape
2015-02-25 22:07:02 +05:00
# @param refresh if @c True, Object browser is automatically updated (when running in GUI)
# @param geomId the ID of a sub-shape to remove elements on
2009-02-17 10:27:49 +05:00
# @ingroup l2_construct
2015-02-20 12:08:10 +05:00
def ClearSubMesh ( self , geomId , refresh = False ) :
2009-02-17 10:27:49 +05:00
self . mesh . ClearSubMesh ( geomId )
if salome . sg . hasDesktop ( ) :
smeshgui = salome . ImportComponentGUI ( " SMESH " )
2012-08-09 16:03:55 +06:00
smeshgui . Init ( self . mesh . GetStudyId ( ) )
2009-02-17 10:27:49 +05:00
smeshgui . SetMeshIcon ( salome . ObjectToID ( self . mesh ) , False , True )
2015-02-20 12:08:10 +05:00
if refresh : salome . sg . updateObjBrowser ( 1 )
2009-02-17 10:27:49 +05:00
2014-06-24 18:58:45 +06:00
## Computes a tetrahedral mesh using AutomaticLength + MEFISTO + Tetrahedron
2012-08-09 16:03:55 +06:00
# @param fineness [0.0,1.0] defines mesh fineness
2008-03-07 12:47:05 +05:00
# @return True or False
2009-02-17 10:27:49 +05:00
# @ingroup l3_algos_basic
2008-03-07 12:47:05 +05:00
def AutomaticTetrahedralization ( self , fineness = 0 ) :
dim = self . MeshDimension ( )
# assign hypotheses
self . RemoveGlobalHypotheses ( )
self . Segment ( ) . AutomaticLength ( fineness )
if dim > 1 :
self . Triangle ( ) . LengthFromEdges ( )
pass
if dim > 2 :
2014-06-24 18:58:45 +06:00
self . Tetrahedron ( )
2008-03-07 12:47:05 +05:00
pass
return self . Compute ( )
2009-02-17 10:27:49 +05:00
## Computes an hexahedral mesh using AutomaticLength + Quadrangle + Hexahedron
2012-08-09 16:03:55 +06:00
# @param fineness [0.0, 1.0] defines mesh fineness
2008-03-07 12:47:05 +05:00
# @return True or False
2009-02-17 10:27:49 +05:00
# @ingroup l3_algos_basic
2008-03-07 12:47:05 +05:00
def AutomaticHexahedralization ( self , fineness = 0 ) :
dim = self . MeshDimension ( )
2009-02-17 10:27:49 +05:00
# assign the hypotheses
2008-03-07 12:47:05 +05:00
self . RemoveGlobalHypotheses ( )
self . Segment ( ) . AutomaticLength ( fineness )
if dim > 1 :
self . Quadrangle ( )
pass
if dim > 2 :
self . Hexahedron ( )
pass
return self . Compute ( )
2009-02-17 10:27:49 +05:00
## Assigns a hypothesis
# @param hyp a hypothesis to assign
# @param geom a subhape of mesh geometry
2008-03-07 12:47:05 +05:00
# @return SMESH.Hypothesis_Status
2009-02-17 10:27:49 +05:00
# @ingroup l2_hypotheses
2008-03-07 12:47:05 +05:00
def AddHypothesis ( self , hyp , geom = 0 ) :
if isinstance ( hyp , Mesh_Algorithm ) :
hyp = hyp . GetAlgorithm ( )
pass
if not geom :
geom = self . geom
2009-02-17 10:27:49 +05:00
if not geom :
geom = self . mesh . GetShapeToMesh ( )
2008-03-07 12:47:05 +05:00
pass
2014-02-28 20:58:28 +06:00
isApplicable = True
if self . mesh . HasShapeToMesh ( ) :
2014-03-05 19:42:42 +06:00
hyp_type = hyp . GetName ( )
lib_name = hyp . GetLibName ( )
2014-03-12 17:12:59 +06:00
checkAll = ( not geom . IsSame ( self . mesh . GetShapeToMesh ( ) ) )
if checkAll and geom :
checkAll = geom . GetType ( ) == 37
isApplicable = self . smeshpyD . IsApplicable ( hyp_type , lib_name , geom , checkAll )
2014-02-28 20:58:28 +06:00
if isApplicable :
AssureGeomPublished ( self , geom , " shape for %s " % hyp . GetName ( ) )
status = self . mesh . AddHypothesis ( geom , hyp )
else :
2014-08-26 17:58:38 +06:00
status = HYP_BAD_GEOMETRY , " "
2014-03-11 21:46:54 +06:00
hyp_name = GetName ( hyp )
geom_name = " "
if geom :
geom_name = geom . GetName ( )
isAlgo = hyp . _narrow ( SMESH_Algo )
2014-08-21 17:15:12 +06:00
TreatHypoStatus ( status , hyp_name , geom_name , isAlgo , self )
2014-03-11 21:46:54 +06:00
return status
2008-03-07 12:47:05 +05:00
2012-08-09 16:03:55 +06:00
## Return True if an algorithm of hypothesis is assigned to a given shape
# @param hyp a hypothesis to check
# @param geom a subhape of mesh geometry
# @return True of False
# @ingroup l2_hypotheses
def IsUsedHypothesis ( self , hyp , geom ) :
2013-02-12 20:37:44 +06:00
if not hyp : # or not geom
2012-08-09 16:03:55 +06:00
return False
if isinstance ( hyp , Mesh_Algorithm ) :
hyp = hyp . GetAlgorithm ( )
pass
hyps = self . GetHypothesisList ( geom )
for h in hyps :
if h . GetId ( ) == hyp . GetId ( ) :
return True
return False
2009-02-17 10:27:49 +05:00
## Unassigns a hypothesis
# @param hyp a hypothesis to unassign
2012-08-09 16:03:55 +06:00
# @param geom a sub-shape of mesh geometry
2008-03-07 12:47:05 +05:00
# @return SMESH.Hypothesis_Status
2009-02-17 10:27:49 +05:00
# @ingroup l2_hypotheses
2008-03-07 12:47:05 +05:00
def RemoveHypothesis ( self , hyp , geom = 0 ) :
2013-04-22 16:37:55 +06:00
if not hyp :
return None
2008-03-07 12:47:05 +05:00
if isinstance ( hyp , Mesh_Algorithm ) :
hyp = hyp . GetAlgorithm ( )
pass
2013-02-12 20:37:44 +06:00
shape = geom
if not shape :
shape = self . geom
2008-03-07 12:47:05 +05:00
pass
2013-02-12 20:37:44 +06:00
if self . IsUsedHypothesis ( hyp , shape ) :
return self . mesh . RemoveHypothesis ( shape , hyp )
hypName = GetName ( hyp )
geoName = GetName ( shape )
print " WARNING: RemoveHypothesis() failed as ' %s ' is not assigned to ' %s ' shape " % ( hypName , geoName )
return None
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Gets the list of hypotheses added on a geometry
2012-08-09 16:03:55 +06:00
# @param geom a sub-shape of mesh geometry
2009-02-17 10:27:49 +05:00
# @return the sequence of SMESH_Hypothesis
# @ingroup l2_hypotheses
2008-03-07 12:47:05 +05:00
def GetHypothesisList ( self , geom ) :
return self . mesh . GetHypothesisList ( geom )
## Removes all global hypotheses
2009-02-17 10:27:49 +05:00
# @ingroup l2_hypotheses
2008-03-07 12:47:05 +05:00
def RemoveGlobalHypotheses ( self ) :
current_hyps = self . mesh . GetHypothesisList ( self . geom )
for hyp in current_hyps :
self . mesh . RemoveHypothesis ( self . geom , hyp )
pass
pass
2012-08-09 16:03:55 +06:00
## Exports the mesh in a file in MED format and chooses the \a version of MED format
## allowing to overwrite the file if it exists or add the exported data to its contents
# @param f is the file name
# @param auto_groups boolean parameter for creating/not creating
# the groups Group_On_All_Nodes, Group_On_All_Faces, ... ;
# the typical use is auto_groups=false.
# @param version MED format version(MED_V2_1 or MED_V2_2)
# @param overwrite boolean parameter for overwriting/not overwriting the file
# @param meshPart a part of mesh (group, sub-mesh) to export instead of the mesh
2013-06-05 21:13:53 +06:00
# @param autoDimension: if @c True (default), a space dimension of a MED mesh can be either
# - 1D if all mesh nodes lie on OX coordinate axis, or
# - 2D if all mesh nodes lie on XOY coordinate plane, or
# - 3D in the rest cases.
# If @a autoDimension is @c False, the space dimension is always 3.
2014-03-05 19:42:42 +06:00
# @param fields : list of GEOM fields defined on the shape to mesh.
# @param geomAssocFields : each character of this string means a need to export a
# corresponding field; correspondence between fields and characters is following:
# - 'v' stands for _vertices_ field;
# - 'e' stands for _edges_ field;
# - 'f' stands for _faces_ field;
# - 's' stands for _solids_ field.
2009-02-17 10:27:49 +05:00
# @ingroup l2_impexp
2013-06-05 21:13:53 +06:00
def ExportMED ( self , f , auto_groups = 0 , version = MED_V2_2 ,
2014-03-05 19:42:42 +06:00
overwrite = 1 , meshPart = None , autoDimension = True , fields = [ ] , geomAssocFields = ' ' ) :
if meshPart or fields or geomAssocFields :
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2012-08-09 16:03:55 +06:00
if isinstance ( meshPart , list ) :
meshPart = self . GetIDSource ( meshPart , SMESH . ALL )
2013-08-07 20:06:39 +06:00
unRegister . set ( meshPart )
2014-03-05 19:42:42 +06:00
self . mesh . ExportPartToMED ( meshPart , f , auto_groups , version , overwrite , autoDimension ,
fields , geomAssocFields )
2012-08-09 16:03:55 +06:00
else :
2013-06-05 21:13:53 +06:00
self . mesh . ExportToMEDX ( f , auto_groups , version , overwrite , autoDimension )
2008-03-07 12:47:05 +05:00
2012-08-09 16:03:55 +06:00
## Exports the mesh in a file in SAUV format
2008-03-07 12:47:05 +05:00
# @param f is the file name
# @param auto_groups boolean parameter for creating/not creating
# the groups Group_On_All_Nodes, Group_On_All_Faces, ... ;
# the typical use is auto_groups=false.
2009-02-17 10:27:49 +05:00
# @ingroup l2_impexp
2012-08-09 16:03:55 +06:00
def ExportSAUV ( self , f , auto_groups = 0 ) :
self . mesh . ExportSAUV ( f , auto_groups )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Exports the mesh in a file in DAT format
# @param f the file name
2012-08-09 16:03:55 +06:00
# @param meshPart a part of mesh (group, sub-mesh) to export instead of the mesh
2009-02-17 10:27:49 +05:00
# @ingroup l2_impexp
2012-08-09 16:03:55 +06:00
def ExportDAT ( self , f , meshPart = None ) :
if meshPart :
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2012-08-09 16:03:55 +06:00
if isinstance ( meshPart , list ) :
meshPart = self . GetIDSource ( meshPart , SMESH . ALL )
2013-08-07 20:06:39 +06:00
unRegister . set ( meshPart )
2012-08-09 16:03:55 +06:00
self . mesh . ExportPartToDAT ( meshPart , f )
else :
self . mesh . ExportDAT ( f )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Exports the mesh in a file in UNV format
# @param f the file name
2012-08-09 16:03:55 +06:00
# @param meshPart a part of mesh (group, sub-mesh) to export instead of the mesh
2009-02-17 10:27:49 +05:00
# @ingroup l2_impexp
2012-08-09 16:03:55 +06:00
def ExportUNV ( self , f , meshPart = None ) :
if meshPart :
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2012-08-09 16:03:55 +06:00
if isinstance ( meshPart , list ) :
meshPart = self . GetIDSource ( meshPart , SMESH . ALL )
2013-08-07 20:06:39 +06:00
unRegister . set ( meshPart )
2012-08-09 16:03:55 +06:00
self . mesh . ExportPartToUNV ( meshPart , f )
else :
self . mesh . ExportUNV ( f )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Export the mesh in a file in STL format
# @param f the file name
# @param ascii defines the file encoding
2012-08-09 16:03:55 +06:00
# @param meshPart a part of mesh (group, sub-mesh) to export instead of the mesh
2009-02-17 10:27:49 +05:00
# @ingroup l2_impexp
2012-08-09 16:03:55 +06:00
def ExportSTL ( self , f , ascii = 1 , meshPart = None ) :
if meshPart :
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2012-08-09 16:03:55 +06:00
if isinstance ( meshPart , list ) :
meshPart = self . GetIDSource ( meshPart , SMESH . ALL )
2013-08-07 20:06:39 +06:00
unRegister . set ( meshPart )
2012-08-09 16:03:55 +06:00
self . mesh . ExportPartToSTL ( meshPart , f , ascii )
else :
self . mesh . ExportSTL ( f , ascii )
2008-03-07 12:47:05 +05:00
2012-08-09 16:03:55 +06:00
## Exports the mesh in a file in CGNS format
# @param f is the file name
# @param overwrite boolean parameter for overwriting/not overwriting the file
# @param meshPart a part of mesh (group, sub-mesh) to export instead of the mesh
# @ingroup l2_impexp
def ExportCGNS ( self , f , overwrite = 1 , meshPart = None ) :
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2012-08-09 16:03:55 +06:00
if isinstance ( meshPart , list ) :
meshPart = self . GetIDSource ( meshPart , SMESH . ALL )
2013-08-07 20:06:39 +06:00
unRegister . set ( meshPart )
2012-08-09 16:03:55 +06:00
if isinstance ( meshPart , Mesh ) :
meshPart = meshPart . mesh
elif not meshPart :
meshPart = self . mesh
self . mesh . ExportCGNS ( meshPart , f , overwrite )
2013-08-06 21:16:46 +06:00
## Exports the mesh in a file in GMF format.
# GMF files must have .mesh extension for the ASCII format and .meshb for
# the bynary format. Other extensions are not allowed.
2012-10-08 17:56:59 +06:00
# @param f is the file name
# @param meshPart a part of mesh (group, sub-mesh) to export instead of the mesh
# @ingroup l2_impexp
def ExportGMF ( self , f , meshPart = None ) :
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2012-10-08 17:56:59 +06:00
if isinstance ( meshPart , list ) :
meshPart = self . GetIDSource ( meshPart , SMESH . ALL )
2013-08-07 20:06:39 +06:00
unRegister . set ( meshPart )
2012-10-08 17:56:59 +06:00
if isinstance ( meshPart , Mesh ) :
meshPart = meshPart . mesh
elif not meshPart :
meshPart = self . mesh
2012-12-13 17:41:29 +06:00
self . mesh . ExportGMF ( meshPart , f , True )
2012-10-08 17:56:59 +06:00
2012-08-09 16:03:55 +06:00
## Deprecated, used only for compatibility! Please, use ExportToMEDX() method instead.
# Exports the mesh in a file in MED format and chooses the \a version of MED format
## allowing to overwrite the file if it exists or add the exported data to its contents
# @param f the file name
# @param version values are SMESH.MED_V2_1, SMESH.MED_V2_2
# @param opt boolean parameter for creating/not creating
# the groups Group_On_All_Nodes, Group_On_All_Faces, ...
# @param overwrite boolean parameter for overwriting/not overwriting the file
2013-07-25 18:03:04 +06:00
# @param autoDimension: if @c True (default), a space dimension of a MED mesh can be either
# - 1D if all mesh nodes lie on OX coordinate axis, or
# - 2D if all mesh nodes lie on XOY coordinate plane, or
# - 3D in the rest cases.
#
# If @a autoDimension is @c False, the space dimension is always 3.
2012-08-09 16:03:55 +06:00
# @ingroup l2_impexp
2013-07-25 18:03:04 +06:00
def ExportToMED ( self , f , version , opt = 0 , overwrite = 1 , autoDimension = True ) :
self . mesh . ExportToMEDX ( f , opt , version , overwrite , autoDimension )
2008-03-07 12:47:05 +05:00
# Operations with groups:
# ----------------------
## Creates an empty mesh group
2009-02-17 10:27:49 +05:00
# @param elementType the type of elements in the group
# @param name the name of the mesh group
2008-03-07 12:47:05 +05:00
# @return SMESH_Group
2009-02-17 10:27:49 +05:00
# @ingroup l2_grps_create
2008-03-07 12:47:05 +05:00
def CreateEmptyGroup ( self , elementType , name ) :
return self . mesh . CreateGroup ( elementType , name )
2012-08-09 16:03:55 +06:00
## Creates a mesh group based on the geometric object \a grp
# and gives a \a name, \n if this parameter is not defined
# the name is the same as the geometric group name \n
# Note: Works like GroupOnGeom().
# @param grp a geometric group, a vertex, an edge, a face or a solid
# @param name the name of the mesh group
# @return SMESH_GroupOnGeom
# @ingroup l2_grps_create
def Group ( self , grp , name = " " ) :
return self . GroupOnGeom ( grp , name )
2009-02-17 10:27:49 +05:00
## Creates a mesh group based on the geometrical object \a grp
# and gives a \a name, \n if this parameter is not defined
# the name is the same as the geometrical group name
# @param grp a geometrical group, a vertex, an edge, a face or a solid
# @param name the name of the mesh group
# @param typ the type of elements in the group. If not set, it is
# automatically detected by the type of the geometry
2008-03-07 12:47:05 +05:00
# @return SMESH_GroupOnGeom
2009-02-17 10:27:49 +05:00
# @ingroup l2_grps_create
2008-03-07 12:47:05 +05:00
def GroupOnGeom ( self , grp , name = " " , typ = None ) :
2012-08-09 16:03:55 +06:00
AssureGeomPublished ( self , grp , name )
2008-03-07 12:47:05 +05:00
if name == " " :
name = grp . GetName ( )
2012-08-09 16:03:55 +06:00
if not typ :
typ = self . _groupTypeFromShape ( grp )
return self . mesh . CreateGroupFromGEOM ( typ , name , grp )
## Pivate method to get a type of group on geometry
def _groupTypeFromShape ( self , shape ) :
tgeo = str ( shape . GetShapeType ( ) )
if tgeo == " VERTEX " :
typ = NODE
elif tgeo == " EDGE " :
typ = EDGE
elif tgeo == " FACE " or tgeo == " SHELL " :
typ = FACE
elif tgeo == " SOLID " or tgeo == " COMPSOLID " :
typ = VOLUME
elif tgeo == " COMPOUND " :
2013-04-04 13:08:19 +06:00
sub = self . geompyD . SubShapeAll ( shape , self . geompyD . ShapeType [ " SHAPE " ] )
2012-08-09 16:03:55 +06:00
if not sub :
raise ValueError , " _groupTypeFromShape(): empty geometric group or compound ' %s ' " % GetName ( shape )
return self . _groupTypeFromShape ( sub [ 0 ] )
2008-03-07 12:47:05 +05:00
else :
2012-08-09 16:03:55 +06:00
raise ValueError , \
" _groupTypeFromShape(): invalid geometry ' %s ' " % GetName ( shape )
return typ
## Creates a mesh group with given \a name based on the \a filter which
## is a special type of group dynamically updating it's contents during
## mesh modification
# @param typ the type of elements in the group
# @param name the name of the mesh group
# @param filter the filter defining group contents
# @return SMESH_GroupOnFilter
# @ingroup l2_grps_create
def GroupOnFilter ( self , typ , name , filter ) :
return self . mesh . CreateGroupFromFilter ( typ , name , filter )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Creates a mesh group by the given ids of elements
# @param groupName the name of the mesh group
# @param elementType the type of elements in the group
# @param elemIDs the list of ids
2008-03-07 12:47:05 +05:00
# @return SMESH_Group
2009-02-17 10:27:49 +05:00
# @ingroup l2_grps_create
2008-03-07 12:47:05 +05:00
def MakeGroupByIds ( self , groupName , elementType , elemIDs ) :
group = self . mesh . CreateGroup ( elementType , groupName )
2014-08-26 17:58:38 +06:00
if hasattr ( elemIDs , " GetIDs " ) :
if hasattr ( elemIDs , " SetMesh " ) :
elemIDs . SetMesh ( self . GetMesh ( ) )
group . AddFrom ( elemIDs )
else :
group . Add ( elemIDs )
2008-03-07 12:47:05 +05:00
return group
2009-02-17 10:27:49 +05:00
## Creates a mesh group by the given conditions
# @param groupName the name of the mesh group
# @param elementType the type of elements in the group
# @param CritType the type of criterion( FT_Taper, FT_Area, FT_RangeOfIds, FT_LyingOnGeom etc. )
# @param Compare belongs to {FT_LessThan, FT_MoreThan, FT_EqualTo}
2012-08-09 16:03:55 +06:00
# @param Threshold the threshold value (range of id ids as string, shape, numeric)
2009-02-17 10:27:49 +05:00
# @param UnaryOp FT_LogicalNOT or FT_Undefined
2012-08-09 16:03:55 +06:00
# @param Tolerance the tolerance used by FT_BelongToGeom, FT_BelongToSurface,
# FT_LyingOnGeom, FT_CoplanarFaces criteria
2014-08-21 17:15:12 +06:00
# @return SMESH_GroupOnFilter
2009-02-17 10:27:49 +05:00
# @ingroup l2_grps_create
2008-03-07 12:47:05 +05:00
def MakeGroup ( self ,
groupName ,
elementType ,
CritType = FT_Undefined ,
Compare = FT_EqualTo ,
2012-08-09 16:03:55 +06:00
Threshold = " " ,
UnaryOp = FT_Undefined ,
Tolerance = 1e-07 ) :
aCriterion = self . smeshpyD . GetCriterion ( elementType , CritType , Compare , Threshold , UnaryOp , FT_Undefined , Tolerance )
2008-03-07 12:47:05 +05:00
group = self . MakeGroupByCriterion ( groupName , aCriterion )
return group
2009-02-17 10:27:49 +05:00
## Creates a mesh group by the given criterion
# @param groupName the name of the mesh group
# @param Criterion the instance of Criterion class
2014-08-21 17:15:12 +06:00
# @return SMESH_GroupOnFilter
2009-02-17 10:27:49 +05:00
# @ingroup l2_grps_create
2008-03-07 12:47:05 +05:00
def MakeGroupByCriterion ( self , groupName , Criterion ) :
2014-08-22 23:16:01 +06:00
return self . MakeGroupByCriteria ( groupName , [ Criterion ] )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Creates a mesh group by the given criteria (list of criteria)
# @param groupName the name of the mesh group
# @param theCriteria the list of criteria
2014-08-22 23:16:01 +06:00
# @param binOp binary operator used when binary operator of criteria is undefined
2014-08-21 17:15:12 +06:00
# @return SMESH_GroupOnFilter
2009-02-17 10:27:49 +05:00
# @ingroup l2_grps_create
2014-08-22 23:16:01 +06:00
def MakeGroupByCriteria ( self , groupName , theCriteria , binOp = SMESH . FT_LogicalAND ) :
aFilter = self . smeshpyD . GetFilterFromCriteria ( theCriteria , binOp )
2008-03-07 12:47:05 +05:00
group = self . MakeGroupByFilter ( groupName , aFilter )
return group
2009-02-17 10:27:49 +05:00
## Creates a mesh group by the given filter
# @param groupName the name of the mesh group
# @param theFilter the instance of Filter class
2014-08-21 17:15:12 +06:00
# @return SMESH_GroupOnFilter
2009-02-17 10:27:49 +05:00
# @ingroup l2_grps_create
2008-03-07 12:47:05 +05:00
def MakeGroupByFilter ( self , groupName , theFilter ) :
2014-08-21 17:15:12 +06:00
#group = self.CreateEmptyGroup(theFilter.GetElementType(), groupName)
#theFilter.SetMesh( self.mesh )
#group.AddFrom( theFilter )
group = self . GroupOnFilter ( theFilter . GetElementType ( ) , groupName , theFilter )
2008-03-07 12:47:05 +05:00
return group
2009-02-17 10:27:49 +05:00
## Removes a group
# @ingroup l2_grps_delete
2008-03-07 12:47:05 +05:00
def RemoveGroup ( self , group ) :
self . mesh . RemoveGroup ( group )
2009-02-17 10:27:49 +05:00
## Removes a group with its contents
# @ingroup l2_grps_delete
2008-03-07 12:47:05 +05:00
def RemoveGroupWithContents ( self , group ) :
self . mesh . RemoveGroupWithContents ( group )
2015-03-03 17:03:38 +05:00
## Gets the list of groups existing in the mesh in the order
# of creation (starting from the oldest one)
2009-02-17 10:27:49 +05:00
# @return a sequence of SMESH_GroupBase
# @ingroup l2_grps_create
2008-03-07 12:47:05 +05:00
def GetGroups ( self ) :
return self . mesh . GetGroups ( )
2009-02-17 10:27:49 +05:00
## Gets the number of groups existing in the mesh
# @return the quantity of groups as an integer value
# @ingroup l2_grps_create
2008-03-07 12:47:05 +05:00
def NbGroups ( self ) :
return self . mesh . NbGroups ( )
2009-02-17 10:27:49 +05:00
## Gets the list of names of groups existing in the mesh
2008-03-07 12:47:05 +05:00
# @return list of strings
2009-02-17 10:27:49 +05:00
# @ingroup l2_grps_create
2008-03-07 12:47:05 +05:00
def GetGroupNames ( self ) :
groups = self . GetGroups ( )
names = [ ]
for group in groups :
names . append ( group . GetName ( ) )
return names
2015-03-03 17:03:38 +05:00
## Produces a union of two groups.
2009-02-17 10:27:49 +05:00
# A new group is created. All mesh elements that are
# present in the initial groups are added to the new one
2008-03-07 12:47:05 +05:00
# @return an instance of SMESH_Group
2009-02-17 10:27:49 +05:00
# @ingroup l2_grps_operon
2008-03-07 12:47:05 +05:00
def UnionGroups ( self , group1 , group2 , name ) :
return self . mesh . UnionGroups ( group1 , group2 , name )
2012-08-09 16:03:55 +06:00
2015-03-03 17:03:38 +05:00
## Produces a union list of groups.
2012-08-09 16:03:55 +06:00
# New group is created. All mesh elements that are present in
2009-02-17 10:27:49 +05:00
# initial groups are added to the new one
# @return an instance of SMESH_Group
# @ingroup l2_grps_operon
def UnionListOfGroups ( self , groups , name ) :
return self . mesh . UnionListOfGroups ( groups , name )
2012-08-09 16:03:55 +06:00
2015-03-03 17:03:38 +05:00
## Prodices an intersection of two groups.
2009-02-17 10:27:49 +05:00
# A new group is created. All mesh elements that are common
# for the two initial groups are added to the new one.
2008-03-07 12:47:05 +05:00
# @return an instance of SMESH_Group
2009-02-17 10:27:49 +05:00
# @ingroup l2_grps_operon
2008-03-07 12:47:05 +05:00
def IntersectGroups ( self , group1 , group2 , name ) :
return self . mesh . IntersectGroups ( group1 , group2 , name )
2012-08-09 16:03:55 +06:00
2015-03-03 17:03:38 +05:00
## Produces an intersection of groups.
2012-08-09 16:03:55 +06:00
# New group is created. All mesh elements that are present in all
2009-02-17 10:27:49 +05:00
# initial groups simultaneously are added to the new one
# @return an instance of SMESH_Group
# @ingroup l2_grps_operon
def IntersectListOfGroups ( self , groups , name ) :
return self . mesh . IntersectListOfGroups ( groups , name )
2008-03-07 12:47:05 +05:00
2015-03-03 17:03:38 +05:00
## Produces a cut of two groups.
2009-02-17 10:27:49 +05:00
# A new group is created. All mesh elements that are present in
# the main group but are not present in the tool group are added to the new one
# @return an instance of SMESH_Group
# @ingroup l2_grps_operon
def CutGroups ( self , main_group , tool_group , name ) :
return self . mesh . CutGroups ( main_group , tool_group , name )
2012-08-09 16:03:55 +06:00
2015-03-03 17:03:38 +05:00
## Produces a cut of groups.
2012-08-09 16:03:55 +06:00
# A new group is created. All mesh elements that are present in main groups
2009-02-17 10:27:49 +05:00
# but do not present in tool groups are added to the new one
2008-03-07 12:47:05 +05:00
# @return an instance of SMESH_Group
2009-02-17 10:27:49 +05:00
# @ingroup l2_grps_operon
def CutListOfGroups ( self , main_groups , tool_groups , name ) :
2015-03-03 17:03:38 +05:00
return self . mesh . CutListOfGroups ( main_groups , tool_groups , name )
##
# Create a standalone group of entities basing on nodes of other groups.
# \param groups - list of groups, sub-meshes or filters, of any type.
# \param elemType - a type of elements to include to the new group.
# \param name - a name of the new group.
# \param nbCommonNodes - a criterion of inclusion of an element to the new group
# basing on number of element nodes common with reference \a groups.
# Meaning of possible values are:
# - SMESH.ALL_NODES - include if all nodes are common,
# - SMESH.MAIN - include if all corner nodes are common (meaningful for a quadratic mesh),
# - SMESH.AT_LEAST_ONE - include if one or more node is common,
# - SMEHS.MAJORITY - include if half of nodes or more are common.
# \param underlyingOnly - if \c True (default), an element is included to the
# new group provided that it is based on nodes of one element of \a groups.
2009-02-17 10:27:49 +05:00
# @return an instance of SMESH_Group
# @ingroup l2_grps_operon
2015-03-03 17:03:38 +05:00
def CreateDimGroup ( self , groups , elemType , name ,
nbCommonNodes = SMESH . ALL_NODES , underlyingOnly = True ) :
if isinstance ( groups , SMESH . _objref_SMESH_IDSource ) :
groups = [ groups ]
return self . mesh . CreateDimGroup ( groups , elemType , name , nbCommonNodes , underlyingOnly )
2009-02-17 10:27:49 +05:00
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Convert group on geom into standalone group
# @ingroup l2_grps_delete
def ConvertToStandalone ( self , group ) :
return self . mesh . ConvertToStandalone ( group )
2008-03-07 12:47:05 +05:00
# Get some info about mesh:
# ------------------------
2009-02-17 10:27:49 +05:00
## Returns the log of nodes and elements added or removed
# since the previous clear of the log.
2008-03-07 12:47:05 +05:00
# @param clearAfterGet log is emptied after Get (safe if concurrents access)
# @return list of log_block structures:
# commandType
# number
# coords
# indexes
2009-02-17 10:27:49 +05:00
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def GetLog ( self , clearAfterGet ) :
return self . mesh . GetLog ( clearAfterGet )
2009-02-17 10:27:49 +05:00
## Clears the log of nodes and elements added or removed since the previous
2008-03-07 12:47:05 +05:00
# clear. Must be used immediately after GetLog if clearAfterGet is false.
2009-02-17 10:27:49 +05:00
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def ClearLog ( self ) :
self . mesh . ClearLog ( )
2009-02-17 10:27:49 +05:00
## Toggles auto color mode on the object.
# @param theAutoColor the flag which toggles auto color mode.
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def SetAutoColor ( self , theAutoColor ) :
self . mesh . SetAutoColor ( theAutoColor )
2009-02-17 10:27:49 +05:00
## Gets flag of object auto color mode.
2008-03-07 12:47:05 +05:00
# @return True or False
2009-02-17 10:27:49 +05:00
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def GetAutoColor ( self ) :
return self . mesh . GetAutoColor ( )
2009-02-17 10:27:49 +05:00
## Gets the internal ID
2008-03-07 12:47:05 +05:00
# @return integer value, which is the internal Id of the mesh
2009-02-17 10:27:49 +05:00
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def GetId ( self ) :
return self . mesh . GetId ( )
## Get the study Id
# @return integer value, which is the study Id of the mesh
2009-02-17 10:27:49 +05:00
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def GetStudyId ( self ) :
return self . mesh . GetStudyId ( )
2009-02-17 10:27:49 +05:00
## Checks the group names for duplications.
# Consider the maximum group name length stored in MED file.
2008-03-07 12:47:05 +05:00
# @return True or False
2009-02-17 10:27:49 +05:00
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def HasDuplicatedGroupNamesMED ( self ) :
return self . mesh . HasDuplicatedGroupNamesMED ( )
2009-02-17 10:27:49 +05:00
## Obtains the mesh editor tool
2008-03-07 12:47:05 +05:00
# @return an instance of SMESH_MeshEditor
2009-02-17 10:27:49 +05:00
# @ingroup l1_modifying
2008-03-07 12:47:05 +05:00
def GetMeshEditor ( self ) :
2012-10-08 17:56:59 +06:00
return self . editor
2008-03-07 12:47:05 +05:00
2012-08-09 16:03:55 +06:00
## Wrap a list of IDs of elements or nodes into SMESH_IDSource which
# can be passed as argument to a method accepting mesh, group or sub-mesh
# @return an instance of SMESH_IDSource
# @ingroup l1_auxiliary
def GetIDSource ( self , ids , elemType ) :
2012-10-08 17:56:59 +06:00
return self . editor . MakeIDSource ( ids , elemType )
2012-08-09 16:03:55 +06:00
2008-03-07 12:47:05 +05:00
# Get informations about mesh contents:
# ------------------------------------
2012-08-09 16:03:55 +06:00
## Gets the mesh stattistic
# @return dictionary type element - count of elements
# @ingroup l1_meshinfo
def GetMeshInfo ( self , obj = None ) :
if not obj : obj = self . mesh
return self . smeshpyD . GetMeshInfo ( obj )
2009-02-17 10:27:49 +05:00
## Returns the number of nodes in the mesh
2008-03-07 12:47:05 +05:00
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbNodes ( self ) :
return self . mesh . NbNodes ( )
2009-02-17 10:27:49 +05:00
## Returns the number of elements in the mesh
2008-03-07 12:47:05 +05:00
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbElements ( self ) :
return self . mesh . NbElements ( )
2012-08-09 16:03:55 +06:00
## Returns the number of 0d elements in the mesh
# @return an integer value
# @ingroup l1_meshinfo
def Nb0DElements ( self ) :
return self . mesh . Nb0DElements ( )
## Returns the number of ball discrete elements in the mesh
# @return an integer value
# @ingroup l1_meshinfo
def NbBalls ( self ) :
return self . mesh . NbBalls ( )
2009-02-17 10:27:49 +05:00
## Returns the number of edges in the mesh
2008-03-07 12:47:05 +05:00
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbEdges ( self ) :
return self . mesh . NbEdges ( )
2009-02-17 10:27:49 +05:00
## Returns the number of edges with the given order in the mesh
# @param elementOrder the order of elements:
2008-03-07 12:47:05 +05:00
# ORDER_ANY, ORDER_LINEAR or ORDER_QUADRATIC
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbEdgesOfOrder ( self , elementOrder ) :
return self . mesh . NbEdgesOfOrder ( elementOrder )
2009-02-17 10:27:49 +05:00
## Returns the number of faces in the mesh
2008-03-07 12:47:05 +05:00
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbFaces ( self ) :
return self . mesh . NbFaces ( )
2009-02-17 10:27:49 +05:00
## Returns the number of faces with the given order in the mesh
# @param elementOrder the order of elements:
2008-03-07 12:47:05 +05:00
# ORDER_ANY, ORDER_LINEAR or ORDER_QUADRATIC
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbFacesOfOrder ( self , elementOrder ) :
return self . mesh . NbFacesOfOrder ( elementOrder )
2009-02-17 10:27:49 +05:00
## Returns the number of triangles in the mesh
2008-03-07 12:47:05 +05:00
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbTriangles ( self ) :
return self . mesh . NbTriangles ( )
2009-02-17 10:27:49 +05:00
## Returns the number of triangles with the given order in the mesh
# @param elementOrder is the order of elements:
2008-03-07 12:47:05 +05:00
# ORDER_ANY, ORDER_LINEAR or ORDER_QUADRATIC
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbTrianglesOfOrder ( self , elementOrder ) :
return self . mesh . NbTrianglesOfOrder ( elementOrder )
2013-05-16 22:55:14 +06:00
## Returns the number of biquadratic triangles in the mesh
# @return an integer value
# @ingroup l1_meshinfo
def NbBiQuadTriangles ( self ) :
return self . mesh . NbBiQuadTriangles ( )
2009-02-17 10:27:49 +05:00
## Returns the number of quadrangles in the mesh
2008-03-07 12:47:05 +05:00
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbQuadrangles ( self ) :
return self . mesh . NbQuadrangles ( )
2009-02-17 10:27:49 +05:00
## Returns the number of quadrangles with the given order in the mesh
# @param elementOrder the order of elements:
2008-03-07 12:47:05 +05:00
# ORDER_ANY, ORDER_LINEAR or ORDER_QUADRATIC
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbQuadranglesOfOrder ( self , elementOrder ) :
return self . mesh . NbQuadranglesOfOrder ( elementOrder )
2012-08-09 16:03:55 +06:00
## Returns the number of biquadratic quadrangles in the mesh
# @return an integer value
# @ingroup l1_meshinfo
def NbBiQuadQuadrangles ( self ) :
return self . mesh . NbBiQuadQuadrangles ( )
2015-06-24 14:17:07 +05:00
## Returns the number of polygons of given order in the mesh
2008-03-07 12:47:05 +05:00
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2015-06-24 14:17:07 +05:00
def NbPolygons ( self , elementOrder = SMESH . ORDER_ANY ) :
return self . mesh . NbPolygons ( elementOrder )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Returns the number of volumes in the mesh
2008-03-07 12:47:05 +05:00
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbVolumes ( self ) :
return self . mesh . NbVolumes ( )
2009-02-17 10:27:49 +05:00
## Returns the number of volumes with the given order in the mesh
# @param elementOrder the order of elements:
2008-03-07 12:47:05 +05:00
# ORDER_ANY, ORDER_LINEAR or ORDER_QUADRATIC
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbVolumesOfOrder ( self , elementOrder ) :
return self . mesh . NbVolumesOfOrder ( elementOrder )
2009-02-17 10:27:49 +05:00
## Returns the number of tetrahedrons in the mesh
2008-03-07 12:47:05 +05:00
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbTetras ( self ) :
return self . mesh . NbTetras ( )
2009-02-17 10:27:49 +05:00
## Returns the number of tetrahedrons with the given order in the mesh
# @param elementOrder the order of elements:
2008-03-07 12:47:05 +05:00
# ORDER_ANY, ORDER_LINEAR or ORDER_QUADRATIC
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbTetrasOfOrder ( self , elementOrder ) :
return self . mesh . NbTetrasOfOrder ( elementOrder )
2009-02-17 10:27:49 +05:00
## Returns the number of hexahedrons in the mesh
2008-03-07 12:47:05 +05:00
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbHexas ( self ) :
return self . mesh . NbHexas ( )
2009-02-17 10:27:49 +05:00
## Returns the number of hexahedrons with the given order in the mesh
# @param elementOrder the order of elements:
2008-03-07 12:47:05 +05:00
# ORDER_ANY, ORDER_LINEAR or ORDER_QUADRATIC
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbHexasOfOrder ( self , elementOrder ) :
return self . mesh . NbHexasOfOrder ( elementOrder )
2012-08-09 16:03:55 +06:00
## Returns the number of triquadratic hexahedrons in the mesh
# @return an integer value
# @ingroup l1_meshinfo
def NbTriQuadraticHexas ( self ) :
return self . mesh . NbTriQuadraticHexas ( )
2009-02-17 10:27:49 +05:00
## Returns the number of pyramids in the mesh
2008-03-07 12:47:05 +05:00
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbPyramids ( self ) :
return self . mesh . NbPyramids ( )
2009-02-17 10:27:49 +05:00
## Returns the number of pyramids with the given order in the mesh
# @param elementOrder the order of elements:
2008-03-07 12:47:05 +05:00
# ORDER_ANY, ORDER_LINEAR or ORDER_QUADRATIC
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbPyramidsOfOrder ( self , elementOrder ) :
return self . mesh . NbPyramidsOfOrder ( elementOrder )
2009-02-17 10:27:49 +05:00
## Returns the number of prisms in the mesh
2008-03-07 12:47:05 +05:00
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbPrisms ( self ) :
return self . mesh . NbPrisms ( )
2009-02-17 10:27:49 +05:00
## Returns the number of prisms with the given order in the mesh
# @param elementOrder the order of elements:
2008-03-07 12:47:05 +05:00
# ORDER_ANY, ORDER_LINEAR or ORDER_QUADRATIC
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbPrismsOfOrder ( self , elementOrder ) :
return self . mesh . NbPrismsOfOrder ( elementOrder )
2012-08-09 16:03:55 +06:00
## Returns the number of hexagonal prisms in the mesh
# @return an integer value
# @ingroup l1_meshinfo
def NbHexagonalPrisms ( self ) :
return self . mesh . NbHexagonalPrisms ( )
2009-02-17 10:27:49 +05:00
## Returns the number of polyhedrons in the mesh
2008-03-07 12:47:05 +05:00
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbPolyhedrons ( self ) :
return self . mesh . NbPolyhedrons ( )
2009-02-17 10:27:49 +05:00
## Returns the number of submeshes in the mesh
2008-03-07 12:47:05 +05:00
# @return an integer value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def NbSubMesh ( self ) :
return self . mesh . NbSubMesh ( )
2009-02-17 10:27:49 +05:00
## Returns the list of mesh elements IDs
# @return the list of integer values
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def GetElementsId ( self ) :
return self . mesh . GetElementsId ( )
2009-02-17 10:27:49 +05:00
## Returns the list of IDs of mesh elements with the given type
2012-08-09 16:03:55 +06:00
# @param elementType the required type of elements (SMESH.NODE, SMESH.EDGE, SMESH.FACE or SMESH.VOLUME)
2008-03-07 12:47:05 +05:00
# @return list of integer values
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def GetElementsByType ( self , elementType ) :
return self . mesh . GetElementsByType ( elementType )
2009-02-17 10:27:49 +05:00
## Returns the list of mesh nodes IDs
# @return the list of integer values
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def GetNodesId ( self ) :
return self . mesh . GetNodesId ( )
2009-02-17 10:27:49 +05:00
# Get the information about mesh elements:
2008-03-07 12:47:05 +05:00
# ------------------------------------
2009-02-17 10:27:49 +05:00
## Returns the type of mesh element
# @return the value from SMESH::ElementType enumeration
# @ingroup l1_meshinfo
2015-06-24 14:17:07 +05:00
def GetElementType ( self , id , iselem = True ) :
2008-03-07 12:47:05 +05:00
return self . mesh . GetElementType ( id , iselem )
2012-08-09 16:03:55 +06:00
## Returns the geometric type of mesh element
# @return the value from SMESH::EntityType enumeration
# @ingroup l1_meshinfo
def GetElementGeomType ( self , id ) :
return self . mesh . GetElementGeomType ( id )
2014-01-20 16:31:23 +06:00
## Returns the shape type of mesh element
# @return the value from SMESH::GeometryType enumeration
# @ingroup l1_meshinfo
def GetElementShape ( self , id ) :
return self . mesh . GetElementShape ( id )
2009-02-17 10:27:49 +05:00
## Returns the list of submesh elements IDs
2012-08-09 16:03:55 +06:00
# @param Shape a geom object(sub-shape) IOR
# Shape must be the sub-shape of a ShapeToMesh()
2009-02-17 10:27:49 +05:00
# @return the list of integer values
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def GetSubMeshElementsId ( self , Shape ) :
2013-04-04 13:08:19 +06:00
if ( isinstance ( Shape , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2008-03-07 12:47:05 +05:00
ShapeID = Shape . GetSubShapeIndices ( ) [ 0 ]
else :
ShapeID = Shape
return self . mesh . GetSubMeshElementsId ( ShapeID )
2009-02-17 10:27:49 +05:00
## Returns the list of submesh nodes IDs
2012-08-09 16:03:55 +06:00
# @param Shape a geom object(sub-shape) IOR
# Shape must be the sub-shape of a ShapeToMesh()
2009-02-17 10:27:49 +05:00
# @param all If true, gives all nodes of submesh elements, otherwise gives only submesh nodes
# @return the list of integer values
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def GetSubMeshNodesId ( self , Shape , all ) :
2013-04-04 13:08:19 +06:00
if ( isinstance ( Shape , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2012-08-09 16:03:55 +06:00
ShapeID = self . geompyD . GetSubShapeID ( self . geom , Shape )
2008-03-07 12:47:05 +05:00
else :
ShapeID = Shape
return self . mesh . GetSubMeshNodesId ( ShapeID , all )
2012-08-09 16:03:55 +06:00
## Returns type of elements on given shape
# @param Shape a geom object(sub-shape) IOR
# Shape must be a sub-shape of a ShapeToMesh()
# @return element type
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def GetSubMeshElementType ( self , Shape ) :
2013-04-04 13:08:19 +06:00
if ( isinstance ( Shape , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2008-03-07 12:47:05 +05:00
ShapeID = Shape . GetSubShapeIndices ( ) [ 0 ]
else :
ShapeID = Shape
return self . mesh . GetSubMeshElementType ( ShapeID )
2009-02-17 10:27:49 +05:00
## Gets the mesh description
2008-03-07 12:47:05 +05:00
# @return string value
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def Dump ( self ) :
return self . mesh . Dump ( )
2009-02-17 10:27:49 +05:00
# Get the information about nodes and elements of a mesh by its IDs:
2008-03-07 12:47:05 +05:00
# -----------------------------------------------------------
2009-02-17 10:27:49 +05:00
## Gets XYZ coordinates of a node
# \n If there is no nodes for the given ID - returns an empty list
2008-03-07 12:47:05 +05:00
# @return a list of double precision values
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def GetNodeXYZ ( self , id ) :
return self . mesh . GetNodeXYZ ( id )
2009-02-17 10:27:49 +05:00
## Returns list of IDs of inverse elements for the given node
# \n If there is no node for the given ID - returns an empty list
# @return a list of integer values
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def GetNodeInverseElements ( self , id ) :
return self . mesh . GetNodeInverseElements ( id )
2009-02-17 10:27:49 +05:00
## @brief Returns the position of a node on the shape
2008-03-07 12:47:05 +05:00
# @return SMESH::NodePosition
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def GetNodePosition ( self , NodeID ) :
return self . mesh . GetNodePosition ( NodeID )
2013-02-12 20:37:44 +06:00
## @brief Returns the position of an element on the shape
# @return SMESH::ElementPosition
# @ingroup l1_meshinfo
def GetElementPosition ( self , ElemID ) :
return self . mesh . GetElementPosition ( ElemID )
2015-06-24 14:17:07 +05:00
## Returns the ID of the shape, on which the given node was generated.
# @return an integer value > 0 or -1 if there is no node for the given
# ID or the node is not assigned to any geometry
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def GetShapeID ( self , id ) :
return self . mesh . GetShapeID ( id )
2015-06-24 14:17:07 +05:00
## Returns the ID of the shape, on which the given element was generated.
# @return an integer value > 0 or -1 if there is no element for the given
# ID or the element is not assigned to any geometry
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def GetShapeIDForElem ( self , id ) :
return self . mesh . GetShapeIDForElem ( id )
2015-06-24 14:17:07 +05:00
## Returns the number of nodes of the given element
# @return an integer value > 0 or -1 if there is no element for the given ID
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def GetElemNbNodes ( self , id ) :
return self . mesh . GetElemNbNodes ( id )
2013-03-06 19:57:01 +06:00
## Returns the node ID the given (zero based) index for the given element
2009-02-17 10:27:49 +05:00
# \n If there is no element for the given ID - returns -1
# \n If there is no node for the given index - returns -2
# @return an integer value
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def GetElemNode ( self , id , index ) :
return self . mesh . GetElemNode ( id , index )
2009-02-17 10:27:49 +05:00
## Returns the IDs of nodes of the given element
# @return a list of integer values
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def GetElemNodes ( self , id ) :
return self . mesh . GetElemNodes ( id )
2009-02-17 10:27:49 +05:00
## Returns true if the given node is the medium node in the given quadratic element
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def IsMediumNode ( self , elementID , nodeID ) :
return self . mesh . IsMediumNode ( elementID , nodeID )
2009-02-17 10:27:49 +05:00
## Returns true if the given node is the medium node in one of quadratic elements
# @ingroup l1_meshinfo
2015-06-24 14:17:07 +05:00
def IsMediumNodeOfAnyElem ( self , nodeID , elementType = SMESH . ALL ) :
2008-03-07 12:47:05 +05:00
return self . mesh . IsMediumNodeOfAnyElem ( nodeID , elementType )
2009-02-17 10:27:49 +05:00
## Returns the number of edges for the given element
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def ElemNbEdges ( self , id ) :
return self . mesh . ElemNbEdges ( id )
2009-02-17 10:27:49 +05:00
## Returns the number of faces for the given element
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def ElemNbFaces ( self , id ) :
return self . mesh . ElemNbFaces ( id )
2012-08-09 16:03:55 +06:00
## Returns nodes of given face (counted from zero) for given volumic element.
# @ingroup l1_meshinfo
def GetElemFaceNodes ( self , elemId , faceIndex ) :
return self . mesh . GetElemFaceNodes ( elemId , faceIndex )
2014-01-15 15:41:17 +06:00
## Returns three components of normal of given mesh face
# (or an empty array in KO case)
# @ingroup l1_meshinfo
2014-01-20 23:42:20 +06:00
def GetFaceNormal ( self , faceId , normalized = False ) :
return self . mesh . GetFaceNormal ( faceId , normalized )
2014-01-15 15:41:17 +06:00
2012-08-09 16:03:55 +06:00
## Returns an element based on all given nodes.
# @ingroup l1_meshinfo
def FindElementByNodes ( self , nodes ) :
return self . mesh . FindElementByNodes ( nodes )
2009-02-17 10:27:49 +05:00
## Returns true if the given element is a polygon
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def IsPoly ( self , id ) :
return self . mesh . IsPoly ( id )
2009-02-17 10:27:49 +05:00
## Returns true if the given element is quadratic
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def IsQuadratic ( self , id ) :
return self . mesh . IsQuadratic ( id )
2012-08-09 16:03:55 +06:00
## Returns diameter of a ball discrete element or zero in case of an invalid \a id
# @ingroup l1_meshinfo
def GetBallDiameter ( self , id ) :
return self . mesh . GetBallDiameter ( id )
2009-02-17 10:27:49 +05:00
## Returns XYZ coordinates of the barycenter of the given element
# \n If there is no element for the given ID - returns an empty list
2008-03-07 12:47:05 +05:00
# @return a list of three double values
2009-02-17 10:27:49 +05:00
# @ingroup l1_meshinfo
2008-03-07 12:47:05 +05:00
def BaryCenter ( self , id ) :
return self . mesh . BaryCenter ( id )
2012-08-09 16:03:55 +06:00
## Passes mesh elements through the given filter and return IDs of fitting elements
# @param theFilter SMESH_Filter
# @return a list of ids
# @ingroup l1_controls
def GetIdsFromFilter ( self , theFilter ) :
theFilter . SetMesh ( self . mesh )
return theFilter . GetIDs ( )
## Verifies whether a 2D mesh element has free edges (edges connected to one face only)\n
# Returns a list of special structures (borders).
# @return a list of SMESH.FreeEdges.Border structure: edge id and ids of two its nodes.
# @ingroup l1_controls
def GetFreeBorders ( self ) :
aFilterMgr = self . smeshpyD . CreateFilterManager ( )
aPredicate = aFilterMgr . CreateFreeEdges ( )
aPredicate . SetMesh ( self . mesh )
aBorders = aPredicate . GetBorders ( )
aFilterMgr . UnRegister ( )
return aBorders
# Get mesh measurements information:
# ------------------------------------
## Get minimum distance between two nodes, elements or distance to the origin
# @param id1 first node/element id
# @param id2 second node/element id (if 0, distance from @a id1 to the origin is computed)
# @param isElem1 @c True if @a id1 is element id, @c False if it is node id
# @param isElem2 @c True if @a id2 is element id, @c False if it is node id
# @return minimum distance value
# @sa GetMinDistance()
def MinDistance ( self , id1 , id2 = 0 , isElem1 = False , isElem2 = False ) :
aMeasure = self . GetMinDistance ( id1 , id2 , isElem1 , isElem2 )
return aMeasure . value
## Get measure structure specifying minimum distance data between two objects
# @param id1 first node/element id
# @param id2 second node/element id (if 0, distance from @a id1 to the origin is computed)
# @param isElem1 @c True if @a id1 is element id, @c False if it is node id
# @param isElem2 @c True if @a id2 is element id, @c False if it is node id
# @return Measure structure
# @sa MinDistance()
def GetMinDistance ( self , id1 , id2 = 0 , isElem1 = False , isElem2 = False ) :
if isElem1 :
id1 = self . editor . MakeIDSource ( [ id1 ] , SMESH . FACE )
else :
id1 = self . editor . MakeIDSource ( [ id1 ] , SMESH . NODE )
if id2 != 0 :
if isElem2 :
id2 = self . editor . MakeIDSource ( [ id2 ] , SMESH . FACE )
else :
id2 = self . editor . MakeIDSource ( [ id2 ] , SMESH . NODE )
pass
else :
id2 = None
aMeasurements = self . smeshpyD . CreateMeasurements ( )
aMeasure = aMeasurements . MinDistance ( id1 , id2 )
2013-08-07 20:06:39 +06:00
genObjUnRegister ( [ aMeasurements , id1 , id2 ] )
2012-08-09 16:03:55 +06:00
return aMeasure
## Get bounding box of the specified object(s)
# @param objects single source object or list of source objects or list of nodes/elements IDs
# @param isElem if @a objects is a list of IDs, @c True value in this parameters specifies that @a objects are elements,
# @c False specifies that @a objects are nodes
# @return tuple of six values (minX, minY, minZ, maxX, maxY, maxZ)
# @sa GetBoundingBox()
def BoundingBox ( self , objects = None , isElem = False ) :
result = self . GetBoundingBox ( objects , isElem )
if result is None :
result = ( 0.0 , ) * 6
else :
result = ( result . minX , result . minY , result . minZ , result . maxX , result . maxY , result . maxZ )
return result
## Get measure structure specifying bounding box data of the specified object(s)
# @param IDs single source object or list of source objects or list of nodes/elements IDs
2014-08-22 23:16:01 +06:00
# @param isElem if @a IDs is a list of IDs, @c True value in this parameters specifies that @a objects are elements,
2012-08-09 16:03:55 +06:00
# @c False specifies that @a objects are nodes
# @return Measure structure
# @sa BoundingBox()
def GetBoundingBox ( self , IDs = None , isElem = False ) :
if IDs is None :
IDs = [ self . mesh ]
elif isinstance ( IDs , tuple ) :
IDs = list ( IDs )
if not isinstance ( IDs , list ) :
IDs = [ IDs ]
if len ( IDs ) > 0 and isinstance ( IDs [ 0 ] , int ) :
IDs = [ IDs ]
srclist = [ ]
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2012-08-09 16:03:55 +06:00
for o in IDs :
if isinstance ( o , Mesh ) :
srclist . append ( o . mesh )
elif hasattr ( o , " _narrow " ) :
src = o . _narrow ( SMESH . SMESH_IDSource )
if src : srclist . append ( src )
pass
elif isinstance ( o , list ) :
if isElem :
srclist . append ( self . editor . MakeIDSource ( o , SMESH . FACE ) )
else :
srclist . append ( self . editor . MakeIDSource ( o , SMESH . NODE ) )
2013-08-07 20:06:39 +06:00
unRegister . set ( srclist [ - 1 ] )
2012-08-09 16:03:55 +06:00
pass
pass
aMeasurements = self . smeshpyD . CreateMeasurements ( )
2013-08-07 20:06:39 +06:00
unRegister . set ( aMeasurements )
2012-08-09 16:03:55 +06:00
aMeasure = aMeasurements . BoundingBox ( srclist )
return aMeasure
2008-03-07 12:47:05 +05:00
# Mesh edition (SMESH_MeshEditor functionality):
# ---------------------------------------------
2009-02-17 10:27:49 +05:00
## Removes the elements from the mesh by ids
# @param IDsOfElements is a list of ids of elements to remove
2008-03-07 12:47:05 +05:00
# @return True or False
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_del
2008-03-07 12:47:05 +05:00
def RemoveElements ( self , IDsOfElements ) :
return self . editor . RemoveElements ( IDsOfElements )
## Removes nodes from mesh by ids
2009-02-17 10:27:49 +05:00
# @param IDsOfNodes is a list of ids of nodes to remove
2008-03-07 12:47:05 +05:00
# @return True or False
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_del
2008-03-07 12:47:05 +05:00
def RemoveNodes ( self , IDsOfNodes ) :
return self . editor . RemoveNodes ( IDsOfNodes )
2012-08-09 16:03:55 +06:00
## Removes all orphan (free) nodes from mesh
# @return number of the removed nodes
# @ingroup l2_modif_del
def RemoveOrphanNodes ( self ) :
return self . editor . RemoveOrphanNodes ( )
2009-02-17 10:27:49 +05:00
## Add a node to the mesh by coordinates
2008-03-07 12:47:05 +05:00
# @return Id of the new node
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_add
2008-03-07 12:47:05 +05:00
def AddNode ( self , x , y , z ) :
2012-08-09 16:03:55 +06:00
x , y , z , Parameters , hasVars = ParseParameters ( x , y , z )
if hasVars : self . mesh . SetParameters ( Parameters )
2008-03-07 12:47:05 +05:00
return self . editor . AddNode ( x , y , z )
2012-08-09 16:03:55 +06:00
## Creates a 0D element on a node with given number.
# @param IDOfNode the ID of node for creation of the element.
# @return the Id of the new 0D element
# @ingroup l2_modif_add
def Add0DElement ( self , IDOfNode ) :
return self . editor . Add0DElement ( IDOfNode )
2012-12-13 17:41:29 +06:00
## Create 0D elements on all nodes of the given elements except those
# nodes on which a 0D element already exists.
# @param theObject an object on whose nodes 0D elements will be created.
# It can be mesh, sub-mesh, group, list of element IDs or a holder
# of nodes IDs created by calling mesh.GetIDSource( nodes, SMESH.NODE )
# @param theGroupName optional name of a group to add 0D elements created
# and/or found on nodes of \a theObject.
# @return an object (a new group or a temporary SMESH_IDSource) holding
# IDs of new and/or found 0D elements. IDs of 0D elements
# can be retrieved from the returned object by calling GetIDs()
# @ingroup l2_modif_add
def Add0DElementsToAllNodes ( self , theObject , theGroupName = " " ) :
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2012-12-13 17:41:29 +06:00
if isinstance ( theObject , Mesh ) :
theObject = theObject . GetMesh ( )
if isinstance ( theObject , list ) :
theObject = self . GetIDSource ( theObject , SMESH . ALL )
2013-08-07 20:06:39 +06:00
unRegister . set ( theObject )
2012-12-13 17:41:29 +06:00
return self . editor . Create0DElementsOnAllNodes ( theObject , theGroupName )
2012-08-09 16:03:55 +06:00
## Creates a ball element on a node with given ID.
# @param IDOfNode the ID of node for creation of the element.
# @param diameter the bal diameter.
# @return the Id of the new ball element
# @ingroup l2_modif_add
def AddBall ( self , IDOfNode , diameter ) :
return self . editor . AddBall ( IDOfNode , diameter )
2009-02-17 10:27:49 +05:00
## Creates a linear or quadratic edge (this is determined
# by the number of given nodes).
# @param IDsOfNodes the list of node IDs for creation of the element.
# The order of nodes in this list should correspond to the description
2008-03-07 12:47:05 +05:00
# of MED. \n This description is located by the following link:
2012-08-09 16:03:55 +06:00
# http://www.code-aster.org/outils/med/html/modele_de_donnees.html#3.
2009-02-17 10:27:49 +05:00
# @return the Id of the new edge
# @ingroup l2_modif_add
2008-03-07 12:47:05 +05:00
def AddEdge ( self , IDsOfNodes ) :
return self . editor . AddEdge ( IDsOfNodes )
2009-02-17 10:27:49 +05:00
## Creates a linear or quadratic face (this is determined
# by the number of given nodes).
# @param IDsOfNodes the list of node IDs for creation of the element.
# The order of nodes in this list should correspond to the description
2008-03-07 12:47:05 +05:00
# of MED. \n This description is located by the following link:
2012-08-09 16:03:55 +06:00
# http://www.code-aster.org/outils/med/html/modele_de_donnees.html#3.
2009-02-17 10:27:49 +05:00
# @return the Id of the new face
# @ingroup l2_modif_add
2008-03-07 12:47:05 +05:00
def AddFace ( self , IDsOfNodes ) :
return self . editor . AddFace ( IDsOfNodes )
2009-02-17 10:27:49 +05:00
## Adds a polygonal face to the mesh by the list of node IDs
# @param IdsOfNodes the list of node IDs for creation of the element.
# @return the Id of the new face
# @ingroup l2_modif_add
2008-03-07 12:47:05 +05:00
def AddPolygonalFace ( self , IdsOfNodes ) :
return self . editor . AddPolygonalFace ( IdsOfNodes )
2015-06-24 14:17:07 +05:00
## Adds a quadratic polygonal face to the mesh by the list of node IDs
# @param IdsOfNodes the list of node IDs for creation of the element;
# corner nodes follow first.
# @return the Id of the new face
# @ingroup l2_modif_add
def AddQuadPolygonalFace ( self , IdsOfNodes ) :
return self . editor . AddQuadPolygonalFace ( IdsOfNodes )
2009-02-17 10:27:49 +05:00
## Creates both simple and quadratic volume (this is determined
# by the number of given nodes).
# @param IDsOfNodes the list of node IDs for creation of the element.
# The order of nodes in this list should correspond to the description
2008-03-07 12:47:05 +05:00
# of MED. \n This description is located by the following link:
2012-08-09 16:03:55 +06:00
# http://www.code-aster.org/outils/med/html/modele_de_donnees.html#3.
2009-02-17 10:27:49 +05:00
# @return the Id of the new volumic element
# @ingroup l2_modif_add
2008-03-07 12:47:05 +05:00
def AddVolume ( self , IDsOfNodes ) :
return self . editor . AddVolume ( IDsOfNodes )
2009-02-17 10:27:49 +05:00
## Creates a volume of many faces, giving nodes for each face.
# @param IdsOfNodes the list of node IDs for volume creation face by face.
# @param Quantities the list of integer values, Quantities[i]
# gives the quantity of nodes in face number i.
# @return the Id of the new volumic element
# @ingroup l2_modif_add
2008-03-07 12:47:05 +05:00
def AddPolyhedralVolume ( self , IdsOfNodes , Quantities ) :
return self . editor . AddPolyhedralVolume ( IdsOfNodes , Quantities )
2009-02-17 10:27:49 +05:00
## Creates a volume of many faces, giving the IDs of the existing faces.
# @param IdsOfFaces the list of face IDs for volume creation.
2008-03-07 12:47:05 +05:00
#
2009-02-17 10:27:49 +05:00
# Note: The created volume will refer only to the nodes
# of the given faces, not to the faces themselves.
# @return the Id of the new volumic element
# @ingroup l2_modif_add
2008-03-07 12:47:05 +05:00
def AddPolyhedralVolumeByFaces ( self , IdsOfFaces ) :
return self . editor . AddPolyhedralVolumeByFaces ( IdsOfFaces )
2009-02-17 10:27:49 +05:00
## @brief Binds a node to a vertex
# @param NodeID a node ID
# @param Vertex a vertex or vertex ID
# @return True if succeed else raises an exception
# @ingroup l2_modif_add
2008-03-07 12:47:05 +05:00
def SetNodeOnVertex ( self , NodeID , Vertex ) :
2013-04-04 13:08:19 +06:00
if ( isinstance ( Vertex , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2008-03-07 12:47:05 +05:00
VertexID = Vertex . GetSubShapeIndices ( ) [ 0 ]
else :
VertexID = Vertex
try :
self . editor . SetNodeOnVertex ( NodeID , VertexID )
except SALOME . SALOME_Exception , inst :
raise ValueError , inst . details . text
return True
2009-02-17 10:27:49 +05:00
## @brief Stores the node position on an edge
# @param NodeID a node ID
# @param Edge an edge or edge ID
# @param paramOnEdge a parameter on the edge where the node is located
# @return True if succeed else raises an exception
# @ingroup l2_modif_add
2008-03-07 12:47:05 +05:00
def SetNodeOnEdge ( self , NodeID , Edge , paramOnEdge ) :
2013-04-04 13:08:19 +06:00
if ( isinstance ( Edge , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2008-03-07 12:47:05 +05:00
EdgeID = Edge . GetSubShapeIndices ( ) [ 0 ]
else :
EdgeID = Edge
try :
self . editor . SetNodeOnEdge ( NodeID , EdgeID , paramOnEdge )
except SALOME . SALOME_Exception , inst :
raise ValueError , inst . details . text
return True
2009-02-17 10:27:49 +05:00
## @brief Stores node position on a face
# @param NodeID a node ID
# @param Face a face or face ID
# @param u U parameter on the face where the node is located
# @param v V parameter on the face where the node is located
# @return True if succeed else raises an exception
# @ingroup l2_modif_add
2008-03-07 12:47:05 +05:00
def SetNodeOnFace ( self , NodeID , Face , u , v ) :
2013-04-04 13:08:19 +06:00
if ( isinstance ( Face , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2008-03-07 12:47:05 +05:00
FaceID = Face . GetSubShapeIndices ( ) [ 0 ]
else :
FaceID = Face
try :
self . editor . SetNodeOnFace ( NodeID , FaceID , u , v )
except SALOME . SALOME_Exception , inst :
raise ValueError , inst . details . text
return True
2009-02-17 10:27:49 +05:00
## @brief Binds a node to a solid
# @param NodeID a node ID
# @param Solid a solid or solid ID
# @return True if succeed else raises an exception
# @ingroup l2_modif_add
2008-03-07 12:47:05 +05:00
def SetNodeInVolume ( self , NodeID , Solid ) :
2013-04-04 13:08:19 +06:00
if ( isinstance ( Solid , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2008-03-07 12:47:05 +05:00
SolidID = Solid . GetSubShapeIndices ( ) [ 0 ]
else :
SolidID = Solid
try :
self . editor . SetNodeInVolume ( NodeID , SolidID )
except SALOME . SALOME_Exception , inst :
raise ValueError , inst . details . text
return True
## @brief Bind an element to a shape
2009-02-17 10:27:49 +05:00
# @param ElementID an element ID
# @param Shape a shape or shape ID
# @return True if succeed else raises an exception
# @ingroup l2_modif_add
2008-03-07 12:47:05 +05:00
def SetMeshElementOnShape ( self , ElementID , Shape ) :
2013-04-04 13:08:19 +06:00
if ( isinstance ( Shape , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2008-03-07 12:47:05 +05:00
ShapeID = Shape . GetSubShapeIndices ( ) [ 0 ]
else :
ShapeID = Shape
try :
self . editor . SetMeshElementOnShape ( ElementID , ShapeID )
except SALOME . SALOME_Exception , inst :
raise ValueError , inst . details . text
return True
2009-02-17 10:27:49 +05:00
## Moves the node with the given id
# @param NodeID the id of the node
# @param x a new X coordinate
# @param y a new Y coordinate
# @param z a new Z coordinate
2008-03-07 12:47:05 +05:00
# @return True if succeed else False
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_movenode
2008-03-07 12:47:05 +05:00
def MoveNode ( self , NodeID , x , y , z ) :
2012-08-09 16:03:55 +06:00
x , y , z , Parameters , hasVars = ParseParameters ( x , y , z )
if hasVars : self . mesh . SetParameters ( Parameters )
2008-03-07 12:47:05 +05:00
return self . editor . MoveNode ( NodeID , x , y , z )
2009-02-17 10:27:49 +05:00
## Finds the node closest to a point and moves it to a point location
# @param x the X coordinate of a point
# @param y the Y coordinate of a point
# @param z the Z coordinate of a point
2012-08-09 16:03:55 +06:00
# @param NodeID if specified (>0), the node with this ID is moved,
# otherwise, the node closest to point (@a x,@a y,@a z) is moved
2009-02-17 10:27:49 +05:00
# @return the ID of a node
# @ingroup l2_modif_throughp
def MoveClosestNodeToPoint ( self , x , y , z , NodeID ) :
2012-08-09 16:03:55 +06:00
x , y , z , Parameters , hasVars = ParseParameters ( x , y , z )
if hasVars : self . mesh . SetParameters ( Parameters )
2009-02-17 10:27:49 +05:00
return self . editor . MoveClosestNodeToPoint ( x , y , z , NodeID )
## Finds the node closest to a point
# @param x the X coordinate of a point
# @param y the Y coordinate of a point
# @param z the Z coordinate of a point
# @return the ID of a node
# @ingroup l2_modif_throughp
2008-03-07 12:47:05 +05:00
def FindNodeClosestTo ( self , x , y , z ) :
2012-08-09 16:03:55 +06:00
#preview = self.mesh.GetMeshEditPreviewer()
#return preview.MoveClosestNodeToPoint(x, y, z, -1)
return self . editor . FindNodeClosestTo ( x , y , z )
## Finds the elements where a point lays IN or ON
# @param x the X coordinate of a point
# @param y the Y coordinate of a point
# @param z the Z coordinate of a point
# @param elementType type of elements to find (SMESH.ALL type
# means elements of any type excluding nodes, discrete and 0D elements)
# @param meshPart a part of mesh (group, sub-mesh) to search within
# @return list of IDs of found elements
# @ingroup l2_modif_throughp
def FindElementsByPoint ( self , x , y , z , elementType = SMESH . ALL , meshPart = None ) :
if meshPart :
return self . editor . FindAmongElementsByPoint ( meshPart , x , y , z , elementType ) ;
else :
return self . editor . FindElementsByPoint ( x , y , z , elementType )
# Return point state in a closed 2D mesh in terms of TopAbs_State enumeration:
# 0-IN, 1-OUT, 2-ON, 3-UNKNOWN
# TopAbs_UNKNOWN state means that either mesh is wrong or the analysis fails.
def GetPointState ( self , x , y , z ) :
return self . editor . GetPointState ( x , y , z )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Finds the node closest to a point and moves it to a point location
# @param x the X coordinate of a point
# @param y the Y coordinate of a point
# @param z the Z coordinate of a point
# @return the ID of a moved node
# @ingroup l2_modif_throughp
2008-03-07 12:47:05 +05:00
def MeshToPassThroughAPoint ( self , x , y , z ) :
return self . editor . MoveClosestNodeToPoint ( x , y , z , - 1 )
2009-02-17 10:27:49 +05:00
## Replaces two neighbour triangles sharing Node1-Node2 link
# with the triangles built on the same 4 nodes but having other common link.
# @param NodeID1 the ID of the first node
# @param NodeID2 the ID of the second node
# @return false if proper faces were not found
# @ingroup l2_modif_invdiag
2008-03-07 12:47:05 +05:00
def InverseDiag ( self , NodeID1 , NodeID2 ) :
return self . editor . InverseDiag ( NodeID1 , NodeID2 )
2009-02-17 10:27:49 +05:00
## Replaces two neighbour triangles sharing Node1-Node2 link
2008-03-07 12:47:05 +05:00
# with a quadrangle built on the same 4 nodes.
2009-02-17 10:27:49 +05:00
# @param NodeID1 the ID of the first node
# @param NodeID2 the ID of the second node
# @return false if proper faces were not found
# @ingroup l2_modif_unitetri
2008-03-07 12:47:05 +05:00
def DeleteDiag ( self , NodeID1 , NodeID2 ) :
return self . editor . DeleteDiag ( NodeID1 , NodeID2 )
2009-02-17 10:27:49 +05:00
## Reorients elements by ids
# @param IDsOfElements if undefined reorients all mesh elements
2008-03-07 12:47:05 +05:00
# @return True if succeed else False
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_changori
2008-03-07 12:47:05 +05:00
def Reorient ( self , IDsOfElements = None ) :
if IDsOfElements == None :
IDsOfElements = self . GetElementsId ( )
return self . editor . Reorient ( IDsOfElements )
2009-02-17 10:27:49 +05:00
## Reorients all elements of the object
# @param theObject mesh, submesh or group
2008-03-07 12:47:05 +05:00
# @return True if succeed else False
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_changori
2008-03-07 12:47:05 +05:00
def ReorientObject ( self , theObject ) :
if ( isinstance ( theObject , Mesh ) ) :
theObject = theObject . GetMesh ( )
return self . editor . ReorientObject ( theObject )
2012-08-09 16:03:55 +06:00
## Reorient faces contained in \a the2DObject.
# @param the2DObject is a mesh, sub-mesh, group or list of IDs of 2D elements
# @param theDirection is a desired direction of normal of \a theFace.
# It can be either a GEOM vector or a list of coordinates [x,y,z].
# @param theFaceOrPoint defines a face of \a the2DObject whose normal will be
# compared with theDirection. It can be either ID of face or a point
# by which the face will be found. The point can be given as either
# a GEOM vertex or a list of point coordinates.
# @return number of reoriented faces
# @ingroup l2_modif_changori
def Reorient2D ( self , the2DObject , theDirection , theFaceOrPoint ) :
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2012-08-09 16:03:55 +06:00
# check the2DObject
if isinstance ( the2DObject , Mesh ) :
the2DObject = the2DObject . GetMesh ( )
if isinstance ( the2DObject , list ) :
the2DObject = self . GetIDSource ( the2DObject , SMESH . FACE )
2013-08-07 20:06:39 +06:00
unRegister . set ( the2DObject )
2012-08-09 16:03:55 +06:00
# check theDirection
2013-04-04 13:08:19 +06:00
if isinstance ( theDirection , geomBuilder . GEOM . _objref_GEOM_Object ) :
2012-08-09 16:03:55 +06:00
theDirection = self . smeshpyD . GetDirStruct ( theDirection )
if isinstance ( theDirection , list ) :
theDirection = self . smeshpyD . MakeDirStruct ( * theDirection )
# prepare theFace and thePoint
theFace = theFaceOrPoint
thePoint = PointStruct ( 0 , 0 , 0 )
2013-04-04 13:08:19 +06:00
if isinstance ( theFaceOrPoint , geomBuilder . GEOM . _objref_GEOM_Object ) :
2012-08-09 16:03:55 +06:00
thePoint = self . smeshpyD . GetPointStruct ( theFaceOrPoint )
theFace = - 1
if isinstance ( theFaceOrPoint , list ) :
thePoint = PointStruct ( * theFaceOrPoint )
theFace = - 1
if isinstance ( theFaceOrPoint , PointStruct ) :
thePoint = theFaceOrPoint
theFace = - 1
return self . editor . Reorient2D ( the2DObject , theDirection , theFace , thePoint )
2014-08-11 19:30:26 +06:00
## Reorient faces according to adjacent volumes.
# @param the2DObject is a mesh, sub-mesh, group or list of
# either IDs of faces or face groups.
# @param the3DObject is a mesh, sub-mesh, group or list of IDs of volumes.
# @param theOutsideNormal to orient faces to have their normals
# pointing either \a outside or \a inside the adjacent volumes.
# @return number of reoriented faces.
# @ingroup l2_modif_changori
def Reorient2DBy3D ( self , the2DObject , the3DObject , theOutsideNormal = True ) :
unRegister = genObjUnRegister ( )
# check the2DObject
if not isinstance ( the2DObject , list ) :
the2DObject = [ the2DObject ]
elif the2DObject and isinstance ( the2DObject [ 0 ] , int ) :
the2DObject = self . GetIDSource ( the2DObject , SMESH . FACE )
unRegister . set ( the2DObject )
the2DObject = [ the2DObject ]
for i , obj2D in enumerate ( the2DObject ) :
if isinstance ( obj2D , Mesh ) :
the2DObject [ i ] = obj2D . GetMesh ( )
if isinstance ( obj2D , list ) :
the2DObject [ i ] = self . GetIDSource ( obj2D , SMESH . FACE )
unRegister . set ( the2DObject [ i ] )
# check the3DObject
if isinstance ( the3DObject , Mesh ) :
the3DObject = the3DObject . GetMesh ( )
if isinstance ( the3DObject , list ) :
the3DObject = self . GetIDSource ( the3DObject , SMESH . VOLUME )
unRegister . set ( the3DObject )
return self . editor . Reorient2DBy3D ( the2DObject , the3DObject , theOutsideNormal )
2009-02-17 10:27:49 +05:00
## Fuses the neighbouring triangles into quadrangles.
2008-03-07 12:47:05 +05:00
# @param IDsOfElements The triangles to be fused,
2012-12-13 17:41:29 +06:00
# @param theCriterion is a numerical functor, in terms of enum SMESH.FunctorType, used to
# choose a neighbour to fuse with.
2009-02-17 10:27:49 +05:00
# @param MaxAngle is the maximum angle between element normals at which the fusion
2008-03-07 12:47:05 +05:00
# is still performed; theMaxAngle is mesured in radians.
2009-02-17 10:27:49 +05:00
# Also it could be a name of variable which defines angle in degrees.
2008-03-07 12:47:05 +05:00
# @return TRUE in case of success, FALSE otherwise.
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_unitetri
2008-03-07 12:47:05 +05:00
def TriToQuad ( self , IDsOfElements , theCriterion , MaxAngle ) :
2012-08-09 16:03:55 +06:00
MaxAngle , Parameters , hasVars = ParseAngles ( MaxAngle )
2009-02-17 10:27:49 +05:00
self . mesh . SetParameters ( Parameters )
2012-08-09 16:03:55 +06:00
if not IDsOfElements :
IDsOfElements = self . GetElementsId ( )
2012-12-13 17:41:29 +06:00
Functor = self . smeshpyD . GetFunctor ( theCriterion )
2009-02-17 10:27:49 +05:00
return self . editor . TriToQuad ( IDsOfElements , Functor , MaxAngle )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Fuses the neighbouring triangles of the object into quadrangles
2008-03-07 12:47:05 +05:00
# @param theObject is mesh, submesh or group
2012-12-13 17:41:29 +06:00
# @param theCriterion is a numerical functor, in terms of enum SMESH.FunctorType, used to
# choose a neighbour to fuse with.
2009-02-17 10:27:49 +05:00
# @param MaxAngle a max angle between element normals at which the fusion
2008-03-07 12:47:05 +05:00
# is still performed; theMaxAngle is mesured in radians.
# @return TRUE in case of success, FALSE otherwise.
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_unitetri
2008-03-07 12:47:05 +05:00
def TriToQuadObject ( self , theObject , theCriterion , MaxAngle ) :
2012-08-09 16:03:55 +06:00
MaxAngle , Parameters , hasVars = ParseAngles ( MaxAngle )
self . mesh . SetParameters ( Parameters )
2012-12-13 17:41:29 +06:00
if isinstance ( theObject , Mesh ) :
2008-03-07 12:47:05 +05:00
theObject = theObject . GetMesh ( )
2012-12-13 17:41:29 +06:00
Functor = self . smeshpyD . GetFunctor ( theCriterion )
return self . editor . TriToQuadObject ( theObject , Functor , MaxAngle )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Splits quadrangles into triangles.
2008-03-07 12:47:05 +05:00
# @param IDsOfElements the faces to be splitted.
2012-12-13 17:41:29 +06:00
# @param theCriterion is a numerical functor, in terms of enum SMESH.FunctorType, used to
# choose a diagonal for splitting. If @a theCriterion is None, which is a default
# value, then quadrangles will be split by the smallest diagonal.
2008-03-07 12:47:05 +05:00
# @return TRUE in case of success, FALSE otherwise.
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_cutquadr
2012-12-13 17:41:29 +06:00
def QuadToTri ( self , IDsOfElements , theCriterion = None ) :
2008-03-07 12:47:05 +05:00
if IDsOfElements == [ ] :
IDsOfElements = self . GetElementsId ( )
2012-12-13 17:41:29 +06:00
if theCriterion is None :
theCriterion = FT_MaxElementLength2D
Functor = self . smeshpyD . GetFunctor ( theCriterion )
return self . editor . QuadToTri ( IDsOfElements , Functor )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Splits quadrangles into triangles.
2012-12-13 17:41:29 +06:00
# @param theObject the object from which the list of elements is taken,
# this is mesh, submesh or group
# @param theCriterion is a numerical functor, in terms of enum SMESH.FunctorType, used to
# choose a diagonal for splitting. If @a theCriterion is None, which is a default
# value, then quadrangles will be split by the smallest diagonal.
2008-03-07 12:47:05 +05:00
# @return TRUE in case of success, FALSE otherwise.
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_cutquadr
2012-12-13 17:41:29 +06:00
def QuadToTriObject ( self , theObject , theCriterion = None ) :
2008-03-07 12:47:05 +05:00
if ( isinstance ( theObject , Mesh ) ) :
theObject = theObject . GetMesh ( )
2012-12-13 17:41:29 +06:00
if theCriterion is None :
theCriterion = FT_MaxElementLength2D
Functor = self . smeshpyD . GetFunctor ( theCriterion )
return self . editor . QuadToTriObject ( theObject , Functor )
2008-03-07 12:47:05 +05:00
2013-05-22 21:35:28 +06:00
## Splits each of given quadrangles into 4 triangles. A node is added at the center of
# a quadrangle.
# @param theElements the faces to be splitted. This can be either mesh, sub-mesh,
# group or a list of face IDs. By default all quadrangles are split
# @ingroup l2_modif_cutquadr
def QuadTo4Tri ( self , theElements = [ ] ) :
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2013-05-22 21:35:28 +06:00
if isinstance ( theElements , Mesh ) :
theElements = theElements . mesh
elif not theElements :
theElements = self . mesh
elif isinstance ( theElements , list ) :
theElements = self . GetIDSource ( theElements , SMESH . FACE )
2013-08-07 20:06:39 +06:00
unRegister . set ( theElements )
2013-05-22 21:35:28 +06:00
return self . editor . QuadTo4Tri ( theElements )
2009-02-17 10:27:49 +05:00
## Splits quadrangles into triangles.
# @param IDsOfElements the faces to be splitted
# @param Diag13 is used to choose a diagonal for splitting.
2008-03-07 12:47:05 +05:00
# @return TRUE in case of success, FALSE otherwise.
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_cutquadr
2008-03-07 12:47:05 +05:00
def SplitQuad ( self , IDsOfElements , Diag13 ) :
if IDsOfElements == [ ] :
IDsOfElements = self . GetElementsId ( )
return self . editor . SplitQuad ( IDsOfElements , Diag13 )
2009-02-17 10:27:49 +05:00
## Splits quadrangles into triangles.
2012-12-13 17:41:29 +06:00
# @param theObject the object from which the list of elements is taken,
# this is mesh, submesh or group
2009-02-17 10:27:49 +05:00
# @param Diag13 is used to choose a diagonal for splitting.
2008-03-07 12:47:05 +05:00
# @return TRUE in case of success, FALSE otherwise.
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_cutquadr
2008-03-07 12:47:05 +05:00
def SplitQuadObject ( self , theObject , Diag13 ) :
if ( isinstance ( theObject , Mesh ) ) :
theObject = theObject . GetMesh ( )
return self . editor . SplitQuadObject ( theObject , Diag13 )
2009-02-17 10:27:49 +05:00
## Finds a better splitting of the given quadrangle.
# @param IDOfQuad the ID of the quadrangle to be splitted.
2012-12-13 17:41:29 +06:00
# @param theCriterion is a numerical functor, in terms of enum SMESH.FunctorType, used to
# choose a diagonal for splitting.
2008-03-07 12:47:05 +05:00
# @return 1 if 1-3 diagonal is better, 2 if 2-4
# diagonal is better, 0 if error occurs.
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_cutquadr
2008-03-07 12:47:05 +05:00
def BestSplit ( self , IDOfQuad , theCriterion ) :
return self . editor . BestSplit ( IDOfQuad , self . smeshpyD . GetFunctor ( theCriterion ) )
2012-08-09 16:03:55 +06:00
## Splits volumic elements into tetrahedrons
2014-01-20 16:31:23 +06:00
# @param elems either a list of elements or a mesh or a group or a submesh or a filter
# @param method flags passing splitting method:
# smesh.Hex_5Tet, smesh.Hex_6Tet, smesh.Hex_24Tet.
# smesh.Hex_5Tet - to split the hexahedron into 5 tetrahedrons, etc.
# @ingroup l2_modif_cutquadr
def SplitVolumesIntoTetra ( self , elems , method = smeshBuilder . Hex_5Tet ) :
unRegister = genObjUnRegister ( )
if isinstance ( elems , Mesh ) :
elems = elems . GetMesh ( )
if ( isinstance ( elems , list ) ) :
elems = self . editor . MakeIDSource ( elems , SMESH . VOLUME )
unRegister . set ( elems )
self . editor . SplitVolumesIntoTetra ( elems , method )
## Splits hexahedra into prisms
# @param elems either a list of elements or a mesh or a group or a submesh or a filter
# @param startHexPoint a point used to find a hexahedron for which @a facetNormal
# gives a normal vector defining facets to split into triangles.
# @a startHexPoint can be either a triple of coordinates or a vertex.
# @param facetNormal a normal to a facet to split into triangles of a
# hexahedron found by @a startHexPoint.
# @a facetNormal can be either a triple of coordinates or an edge.
# @param method flags passing splitting method: smesh.Hex_2Prisms, smesh.Hex_4Prisms.
# smesh.Hex_2Prisms - to split the hexahedron into 2 prisms, etc.
# @param allDomains if @c False, only hexahedra adjacent to one closest
# to @a startHexPoint are split, else @a startHexPoint
# is used to find the facet to split in all domains present in @a elems.
2012-08-09 16:03:55 +06:00
# @ingroup l2_modif_cutquadr
2014-01-20 16:31:23 +06:00
def SplitHexahedraIntoPrisms ( self , elems , startHexPoint , facetNormal ,
method = smeshBuilder . Hex_2Prisms , allDomains = False ) :
# IDSource
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2014-01-20 16:31:23 +06:00
if isinstance ( elems , Mesh ) :
elems = elems . GetMesh ( )
if ( isinstance ( elems , list ) ) :
elems = self . editor . MakeIDSource ( elems , SMESH . VOLUME )
unRegister . set ( elems )
pass
# axis
if isinstance ( startHexPoint , geomBuilder . GEOM . _objref_GEOM_Object ) :
2014-01-21 22:37:16 +06:00
startHexPoint = self . smeshpyD . GetPointStruct ( startHexPoint )
elif isinstance ( startHexPoint , list ) :
startHexPoint = SMESH . PointStruct ( startHexPoint [ 0 ] ,
startHexPoint [ 1 ] ,
startHexPoint [ 2 ] )
2014-01-20 16:31:23 +06:00
if isinstance ( facetNormal , geomBuilder . GEOM . _objref_GEOM_Object ) :
2014-01-21 22:37:16 +06:00
facetNormal = self . smeshpyD . GetDirStruct ( facetNormal )
elif isinstance ( facetNormal , list ) :
facetNormal = self . smeshpyD . MakeDirStruct ( facetNormal [ 0 ] ,
facetNormal [ 1 ] ,
facetNormal [ 2 ] )
self . mesh . SetParameters ( startHexPoint . parameters + facetNormal . PS . parameters )
self . editor . SplitHexahedraIntoPrisms ( elems , startHexPoint , facetNormal , method , allDomains )
2012-08-09 16:03:55 +06:00
2009-02-17 10:27:49 +05:00
## Splits quadrangle faces near triangular facets of volumes
2008-03-07 12:47:05 +05:00
#
2009-02-17 10:27:49 +05:00
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def SplitQuadsNearTriangularFacets ( self ) :
faces_array = self . GetElementsByType ( SMESH . FACE )
for face_id in faces_array :
if self . GetElemNbNodes ( face_id ) == 4 : # quadrangle
quad_nodes = self . mesh . GetElemNodes ( face_id )
node1_elems = self . GetNodeInverseElements ( quad_nodes [ 1 - 1 ] )
isVolumeFound = False
for node1_elem in node1_elems :
if not isVolumeFound :
if self . GetElementType ( node1_elem , True ) == SMESH . VOLUME :
nb_nodes = self . GetElemNbNodes ( node1_elem )
if 3 < nb_nodes and nb_nodes < 7 : # tetra or penta, or prism
volume_elem = node1_elem
volume_nodes = self . mesh . GetElemNodes ( volume_elem )
if volume_nodes . count ( quad_nodes [ 2 - 1 ] ) > 0 : # 1,2
if volume_nodes . count ( quad_nodes [ 4 - 1 ] ) > 0 : # 1,2,4
isVolumeFound = True
if volume_nodes . count ( quad_nodes [ 3 - 1 ] ) == 0 : # 1,2,4 & !3
self . SplitQuad ( [ face_id ] , False ) # diagonal 2-4
elif volume_nodes . count ( quad_nodes [ 3 - 1 ] ) > 0 : # 1,2,3 & !4
isVolumeFound = True
self . SplitQuad ( [ face_id ] , True ) # diagonal 1-3
elif volume_nodes . count ( quad_nodes [ 4 - 1 ] ) > 0 : # 1,4 & !2
if volume_nodes . count ( quad_nodes [ 3 - 1 ] ) > 0 : # 1,4,3 & !2
isVolumeFound = True
self . SplitQuad ( [ face_id ] , True ) # diagonal 1-3
2009-02-17 10:27:49 +05:00
## @brief Splits hexahedrons into tetrahedrons.
2008-03-07 12:47:05 +05:00
#
2009-02-17 10:27:49 +05:00
# This operation uses pattern mapping functionality for splitting.
# @param theObject the object from which the list of hexahedrons is taken; this is mesh, submesh or group.
# @param theNode000,theNode001 within the range [0,7]; gives the orientation of the
# pattern relatively each hexahedron: the (0,0,0) key-point of the pattern
# will be mapped into <VAR>theNode000</VAR>-th node of each volume, the (0,0,1)
# key-point will be mapped into <VAR>theNode001</VAR>-th node of each volume.
# The (0,0,0) key-point of the used pattern corresponds to a non-split corner.
2008-03-07 12:47:05 +05:00
# @return TRUE in case of success, FALSE otherwise.
2009-02-17 10:27:49 +05:00
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def SplitHexaToTetras ( self , theObject , theNode000 , theNode001 ) :
# Pattern: 5.---------.6
# /|#* /|
# / | #* / |
# / | # * / |
# / | # /* |
# (0,0,1) 4.---------.7 * |
# |#* |1 | # *|
# | # *.----|---#.2
# | #/ * | /
# | /# * | /
# | / # * | /
# |/ #*|/
# (0,0,0) 0.---------.3
pattern_tetra = " !!! Nb of points: \n 8 \n \
! ! ! Points : \n \
0 0 0 ! - 0 \n \
0 1 0 ! - 1 \n \
1 1 0 ! - 2 \n \
1 0 0 ! - 3 \n \
0 0 1 ! - 4 \n \
0 1 1 ! - 5 \n \
1 1 1 ! - 6 \n \
1 0 1 ! - 7 \n \
! ! ! Indices of points of 6 tetras : \n \
0 3 4 1 \n \
7 4 3 1 \n \
4 7 5 1 \n \
6 2 5 7 \n \
1 5 2 7 \n \
2 3 1 7 \n "
pattern = self . smeshpyD . GetPattern ( )
isDone = pattern . LoadFromFile ( pattern_tetra )
if not isDone :
print ' Pattern.LoadFromFile : ' , pattern . GetErrorCode ( )
return isDone
pattern . ApplyToHexahedrons ( self . mesh , theObject . GetIDs ( ) , theNode000 , theNode001 )
isDone = pattern . MakeMesh ( self . mesh , False , False )
if not isDone : print ' Pattern.MakeMesh : ' , pattern . GetErrorCode ( )
# split quafrangle faces near triangular facets of volumes
self . SplitQuadsNearTriangularFacets ( )
return isDone
## @brief Split hexahedrons into prisms.
#
2009-02-17 10:27:49 +05:00
# Uses the pattern mapping functionality for splitting.
# @param theObject the object (mesh, submesh or group) from where the list of hexahedrons is taken;
# @param theNode000,theNode001 (within the range [0,7]) gives the orientation of the
# pattern relatively each hexahedron: keypoint (0,0,0) of the pattern
# will be mapped into the <VAR>theNode000</VAR>-th node of each volume, keypoint (0,0,1)
# will be mapped into the <VAR>theNode001</VAR>-th node of each volume.
# Edge (0,0,0)-(0,0,1) of used pattern connects two not split corners.
2008-03-07 12:47:05 +05:00
# @return TRUE in case of success, FALSE otherwise.
2009-02-17 10:27:49 +05:00
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def SplitHexaToPrisms ( self , theObject , theNode000 , theNode001 ) :
# Pattern: 5.---------.6
# /|# /|
# / | # / |
# / | # / |
# / | # / |
# (0,0,1) 4.---------.7 |
# | | | |
# | 1.----|----.2
# | / * | /
# | / * | /
# | / * | /
# |/ *|/
# (0,0,0) 0.---------.3
pattern_prism = " !!! Nb of points: \n 8 \n \
! ! ! Points : \n \
0 0 0 ! - 0 \n \
0 1 0 ! - 1 \n \
1 1 0 ! - 2 \n \
1 0 0 ! - 3 \n \
0 0 1 ! - 4 \n \
0 1 1 ! - 5 \n \
1 1 1 ! - 6 \n \
1 0 1 ! - 7 \n \
! ! ! Indices of points of 2 prisms : \n \
0 1 3 4 5 7 \n \
2 3 1 6 7 5 \n "
pattern = self . smeshpyD . GetPattern ( )
isDone = pattern . LoadFromFile ( pattern_prism )
if not isDone :
print ' Pattern.LoadFromFile : ' , pattern . GetErrorCode ( )
return isDone
pattern . ApplyToHexahedrons ( self . mesh , theObject . GetIDs ( ) , theNode000 , theNode001 )
isDone = pattern . MakeMesh ( self . mesh , False , False )
if not isDone : print ' Pattern.MakeMesh : ' , pattern . GetErrorCode ( )
2009-02-17 10:27:49 +05:00
# Splits quafrangle faces near triangular facets of volumes
2008-03-07 12:47:05 +05:00
self . SplitQuadsNearTriangularFacets ( )
return isDone
2009-02-17 10:27:49 +05:00
## Smoothes elements
# @param IDsOfElements the list if ids of elements to smooth
# @param IDsOfFixedNodes the list of ids of fixed nodes.
2008-03-07 12:47:05 +05:00
# Note that nodes built on edges and boundary nodes are always fixed.
2009-02-17 10:27:49 +05:00
# @param MaxNbOfIterations the maximum number of iterations
2008-03-07 12:47:05 +05:00
# @param MaxAspectRatio varies in range [1.0, inf]
2014-01-20 16:31:23 +06:00
# @param Method is either Laplacian (smesh.LAPLACIAN_SMOOTH)
# or Centroidal (smesh.CENTROIDAL_SMOOTH)
2008-03-07 12:47:05 +05:00
# @return TRUE in case of success, FALSE otherwise.
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_smooth
2008-03-07 12:47:05 +05:00
def Smooth ( self , IDsOfElements , IDsOfFixedNodes ,
MaxNbOfIterations , MaxAspectRatio , Method ) :
if IDsOfElements == [ ] :
IDsOfElements = self . GetElementsId ( )
2012-08-09 16:03:55 +06:00
MaxNbOfIterations , MaxAspectRatio , Parameters , hasVars = ParseParameters ( MaxNbOfIterations , MaxAspectRatio )
2009-02-17 10:27:49 +05:00
self . mesh . SetParameters ( Parameters )
2008-03-07 12:47:05 +05:00
return self . editor . Smooth ( IDsOfElements , IDsOfFixedNodes ,
MaxNbOfIterations , MaxAspectRatio , Method )
2009-02-17 10:27:49 +05:00
## Smoothes elements which belong to the given object
# @param theObject the object to smooth
# @param IDsOfFixedNodes the list of ids of fixed nodes.
2008-03-07 12:47:05 +05:00
# Note that nodes built on edges and boundary nodes are always fixed.
2009-02-17 10:27:49 +05:00
# @param MaxNbOfIterations the maximum number of iterations
2008-03-07 12:47:05 +05:00
# @param MaxAspectRatio varies in range [1.0, inf]
2014-01-20 16:31:23 +06:00
# @param Method is either Laplacian (smesh.LAPLACIAN_SMOOTH)
# or Centroidal (smesh.CENTROIDAL_SMOOTH)
2008-03-07 12:47:05 +05:00
# @return TRUE in case of success, FALSE otherwise.
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_smooth
2008-03-07 12:47:05 +05:00
def SmoothObject ( self , theObject , IDsOfFixedNodes ,
2009-02-17 10:27:49 +05:00
MaxNbOfIterations , MaxAspectRatio , Method ) :
2008-03-07 12:47:05 +05:00
if ( isinstance ( theObject , Mesh ) ) :
theObject = theObject . GetMesh ( )
return self . editor . SmoothObject ( theObject , IDsOfFixedNodes ,
2009-02-17 10:27:49 +05:00
MaxNbOfIterations , MaxAspectRatio , Method )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Parametrically smoothes the given elements
# @param IDsOfElements the list if ids of elements to smooth
# @param IDsOfFixedNodes the list of ids of fixed nodes.
2008-03-07 12:47:05 +05:00
# Note that nodes built on edges and boundary nodes are always fixed.
2009-02-17 10:27:49 +05:00
# @param MaxNbOfIterations the maximum number of iterations
2008-03-07 12:47:05 +05:00
# @param MaxAspectRatio varies in range [1.0, inf]
2014-01-20 16:31:23 +06:00
# @param Method is either Laplacian (smesh.LAPLACIAN_SMOOTH)
# or Centroidal (smesh.CENTROIDAL_SMOOTH)
2008-03-07 12:47:05 +05:00
# @return TRUE in case of success, FALSE otherwise.
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_smooth
2008-03-07 12:47:05 +05:00
def SmoothParametric ( self , IDsOfElements , IDsOfFixedNodes ,
MaxNbOfIterations , MaxAspectRatio , Method ) :
if IDsOfElements == [ ] :
IDsOfElements = self . GetElementsId ( )
2012-08-09 16:03:55 +06:00
MaxNbOfIterations , MaxAspectRatio , Parameters , hasVars = ParseParameters ( MaxNbOfIterations , MaxAspectRatio )
2009-02-17 10:27:49 +05:00
self . mesh . SetParameters ( Parameters )
2008-03-07 12:47:05 +05:00
return self . editor . SmoothParametric ( IDsOfElements , IDsOfFixedNodes ,
MaxNbOfIterations , MaxAspectRatio , Method )
2009-02-17 10:27:49 +05:00
## Parametrically smoothes the elements which belong to the given object
# @param theObject the object to smooth
# @param IDsOfFixedNodes the list of ids of fixed nodes.
2008-03-07 12:47:05 +05:00
# Note that nodes built on edges and boundary nodes are always fixed.
2009-02-17 10:27:49 +05:00
# @param MaxNbOfIterations the maximum number of iterations
2008-03-07 12:47:05 +05:00
# @param MaxAspectRatio varies in range [1.0, inf]
2014-01-20 16:31:23 +06:00
# @param Method is either Laplacian (smesh.LAPLACIAN_SMOOTH)
# or Centroidal (smesh.CENTROIDAL_SMOOTH)
2008-03-07 12:47:05 +05:00
# @return TRUE in case of success, FALSE otherwise.
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_smooth
2008-03-07 12:47:05 +05:00
def SmoothParametricObject ( self , theObject , IDsOfFixedNodes ,
MaxNbOfIterations , MaxAspectRatio , Method ) :
if ( isinstance ( theObject , Mesh ) ) :
theObject = theObject . GetMesh ( )
return self . editor . SmoothParametricObject ( theObject , IDsOfFixedNodes ,
MaxNbOfIterations , MaxAspectRatio , Method )
2013-03-06 19:57:01 +06:00
## Converts the mesh to quadratic or bi-quadratic, deletes old elements, replacing
2009-02-17 10:27:49 +05:00
# them with quadratic with the same id.
2012-08-09 16:03:55 +06:00
# @param theForce3d new node creation method:
# 0 - the medium node lies at the geometrical entity from which the mesh element is built
2015-01-23 20:49:49 +05:00
# 1 - the medium node lies at the middle of the line segments connecting two nodes of a mesh element
2012-08-09 16:03:55 +06:00
# @param theSubMesh a group or a sub-mesh to convert; WARNING: in this case the mesh can become not conformal
2013-03-06 19:57:01 +06:00
# @param theToBiQuad If True, converts the mesh to bi-quadratic
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_tofromqu
2014-12-08 22:18:59 +05:00
def ConvertToQuadratic ( self , theForce3d = False , theSubMesh = None , theToBiQuad = False ) :
2013-05-22 21:35:28 +06:00
if isinstance ( theSubMesh , Mesh ) :
theSubMesh = theSubMesh . mesh
2013-03-06 19:57:01 +06:00
if theToBiQuad :
self . editor . ConvertToBiQuadratic ( theForce3d , theSubMesh )
2012-08-09 16:03:55 +06:00
else :
2013-03-06 19:57:01 +06:00
if theSubMesh :
self . editor . ConvertToQuadraticObject ( theForce3d , theSubMesh )
else :
self . editor . ConvertToQuadratic ( theForce3d )
2013-05-22 21:35:28 +06:00
error = self . editor . GetLastError ( )
if error and error . comment :
print error . comment
2013-03-06 19:57:01 +06:00
2009-02-17 10:27:49 +05:00
## Converts the mesh from quadratic to ordinary,
2008-03-07 12:47:05 +05:00
# deletes old quadratic elements, \n replacing
# them with ordinary mesh elements with the same id.
2012-08-09 16:03:55 +06:00
# @param theSubMesh a group or a sub-mesh to convert; WARNING: in this case the mesh can become not conformal
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_tofromqu
2012-08-09 16:03:55 +06:00
def ConvertFromQuadratic ( self , theSubMesh = None ) :
if theSubMesh :
self . editor . ConvertFromQuadraticObject ( theSubMesh )
else :
return self . editor . ConvertFromQuadratic ( )
## Creates 2D mesh as skin on boundary faces of a 3D mesh
# @return TRUE if operation has been completed successfully, FALSE otherwise
# @ingroup l2_modif_edit
def Make2DMeshFrom3D ( self ) :
return self . editor . Make2DMeshFrom3D ( )
## Creates missing boundary elements
# @param elements - elements whose boundary is to be checked:
# mesh, group, sub-mesh or list of elements
# if elements is mesh, it must be the mesh whose MakeBoundaryMesh() is called
# @param dimension - defines type of boundary elements to create:
# SMESH.BND_2DFROM3D, SMESH.BND_1DFROM3D, SMESH.BND_1DFROM2D
# SMESH.BND_1DFROM3D creates mesh edges on all borders of free facets of 3D cells
# @param groupName - a name of group to store created boundary elements in,
# "" means not to create the group
# @param meshName - a name of new mesh to store created boundary elements in,
# "" means not to create the new mesh
# @param toCopyElements - if true, the checked elements will be copied into
# the new mesh else only boundary elements will be copied into the new mesh
# @param toCopyExistingBondary - if true, not only new but also pre-existing
# boundary elements will be copied into the new mesh
2013-08-23 19:36:41 +06:00
# @return tuple (mesh, group) where boundary elements were added to
2012-08-09 16:03:55 +06:00
# @ingroup l2_modif_edit
def MakeBoundaryMesh ( self , elements , dimension = SMESH . BND_2DFROM3D , groupName = " " , meshName = " " ,
toCopyElements = False , toCopyExistingBondary = False ) :
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2012-08-09 16:03:55 +06:00
if isinstance ( elements , Mesh ) :
elements = elements . GetMesh ( )
if ( isinstance ( elements , list ) ) :
elemType = SMESH . ALL
if elements : elemType = self . GetElementType ( elements [ 0 ] , iselem = True )
elements = self . editor . MakeIDSource ( elements , elemType )
2013-08-07 20:06:39 +06:00
unRegister . set ( elements )
2012-08-09 16:03:55 +06:00
mesh , group = self . editor . MakeBoundaryMesh ( elements , dimension , groupName , meshName ,
toCopyElements , toCopyExistingBondary )
if mesh : mesh = self . smeshpyD . Mesh ( mesh )
return mesh , group
##
# @brief Creates missing boundary elements around either the whole mesh or
2014-10-22 18:15:00 +06:00
# groups of elements
2012-08-09 16:03:55 +06:00
# @param dimension - defines type of boundary elements to create
# @param groupName - a name of group to store all boundary elements in,
# "" means not to create the group
# @param meshName - a name of a new mesh, which is a copy of the initial
# mesh + created boundary elements; "" means not to create the new mesh
# @param toCopyAll - if true, the whole initial mesh will be copied into
# the new mesh else only boundary elements will be copied into the new mesh
2014-10-22 18:15:00 +06:00
# @param groups - groups of elements to make boundary around
2012-08-09 16:03:55 +06:00
# @retval tuple( long, mesh, groups )
# long - number of added boundary elements
# mesh - the mesh where elements were added to
# group - the group of boundary elements or None
#
def MakeBoundaryElements ( self , dimension = SMESH . BND_2DFROM3D , groupName = " " , meshName = " " ,
toCopyAll = False , groups = [ ] ) :
nb , mesh , group = self . editor . MakeBoundaryElements ( dimension , groupName , meshName ,
toCopyAll , groups )
if mesh : mesh = self . smeshpyD . Mesh ( mesh )
return nb , mesh , group
2008-03-07 12:47:05 +05:00
2014-10-22 19:21:15 +06:00
## Renumber mesh nodes (Obsolete, does nothing)
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_renumber
2008-03-07 12:47:05 +05:00
def RenumberNodes ( self ) :
self . editor . RenumberNodes ( )
2014-10-22 19:21:15 +06:00
## Renumber mesh elements (Obsole, does nothing)
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_renumber
2008-03-07 12:47:05 +05:00
def RenumberElements ( self ) :
self . editor . RenumberElements ( )
2015-03-17 17:06:56 +05:00
## Private method converting \a arg into a list of SMESH_IdSource's
def _getIdSourceList ( self , arg , idType , unRegister ) :
if arg and isinstance ( arg , list ) :
if isinstance ( arg [ 0 ] , int ) :
arg = self . GetIDSource ( arg , idType )
unRegister . set ( arg )
elif isinstance ( arg [ 0 ] , Mesh ) :
arg [ 0 ] = arg [ 0 ] . GetMesh ( )
elif isinstance ( arg , Mesh ) :
arg = arg . GetMesh ( )
if arg and isinstance ( arg , SMESH . _objref_SMESH_IDSource ) :
arg = [ arg ]
return arg
## Generates new elements by rotation of the given elements and nodes around the axis
# @param nodes - nodes to revolve: a list including ids, groups, sub-meshes or a mesh
# @param edges - edges to revolve: a list including ids, groups, sub-meshes or a mesh
# @param faces - faces to revolve: a list including ids, groups, sub-meshes or a mesh
# @param Axis the axis of rotation: AxisStruct, line (geom object) or [x,y,z,dx,dy,dz]
# @param AngleInRadians the angle of Rotation (in radians) or a name of variable
# which defines angle in degrees
# @param NbOfSteps the number of steps
# @param Tolerance tolerance
# @param MakeGroups forces the generation of new groups from existing ones
# @param TotalAngle gives meaning of AngleInRadians: if True then it is an angular size
# of all steps, else - size of each step
# @return the list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
# @ingroup l2_modif_extrurev
def RotationSweepObjects ( self , nodes , edges , faces , Axis , AngleInRadians , NbOfSteps , Tolerance ,
MakeGroups = False , TotalAngle = False ) :
unRegister = genObjUnRegister ( )
nodes = self . _getIdSourceList ( nodes , SMESH . NODE , unRegister )
edges = self . _getIdSourceList ( edges , SMESH . EDGE , unRegister )
faces = self . _getIdSourceList ( faces , SMESH . FACE , unRegister )
if isinstance ( Axis , geomBuilder . GEOM . _objref_GEOM_Object ) :
2015-03-18 21:07:40 +05:00
Axis = self . smeshpyD . GetAxisStruct ( Axis )
2015-03-17 17:06:56 +05:00
if isinstance ( Axis , list ) :
Axis = SMESH . AxisStruct ( * Axis )
AngleInRadians , AngleParameters , hasVars = ParseAngles ( AngleInRadians )
NbOfSteps , Tolerance , Parameters , hasVars = ParseParameters ( NbOfSteps , Tolerance )
Parameters = Axis . parameters + var_separator + AngleParameters + var_separator + Parameters
self . mesh . SetParameters ( Parameters )
if TotalAngle and NbOfSteps :
AngleInRadians / = NbOfSteps
return self . editor . RotationSweepObjects ( nodes , edges , faces ,
Axis , AngleInRadians ,
NbOfSteps , Tolerance , MakeGroups )
2009-02-17 10:27:49 +05:00
## Generates new elements by rotation of the elements around the axis
# @param IDsOfElements the list of ids of elements to sweep
# @param Axis the axis of rotation, AxisStruct or line(geom object)
# @param AngleInRadians the angle of Rotation (in radians) or a name of variable which defines angle in degrees
# @param NbOfSteps the number of steps
2008-03-07 12:47:05 +05:00
# @param Tolerance tolerance
2009-02-17 10:27:49 +05:00
# @param MakeGroups forces the generation of new groups from existing ones
# @param TotalAngle gives meaning of AngleInRadians: if True then it is an angular size
# of all steps, else - size of each step
# @return the list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
# @ingroup l2_modif_extrurev
def RotationSweep ( self , IDsOfElements , Axis , AngleInRadians , NbOfSteps , Tolerance ,
MakeGroups = False , TotalAngle = False ) :
2015-03-18 21:07:40 +05:00
return self . RotationSweepObjects ( [ ] , IDsOfElements , IDsOfElements , Axis ,
AngleInRadians , NbOfSteps , Tolerance ,
MakeGroups , TotalAngle )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Generates new elements by rotation of the elements of object around the axis
2012-08-09 16:03:55 +06:00
# @param theObject object which elements should be sweeped.
# It can be a mesh, a sub mesh or a group.
2009-02-17 10:27:49 +05:00
# @param Axis the axis of rotation, AxisStruct or line(geom object)
# @param AngleInRadians the angle of Rotation
2008-03-07 12:47:05 +05:00
# @param NbOfSteps number of steps
# @param Tolerance tolerance
2009-02-17 10:27:49 +05:00
# @param MakeGroups forces the generation of new groups from existing ones
# @param TotalAngle gives meaning of AngleInRadians: if True then it is an angular size
# of all steps, else - size of each step
# @return the list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
# @ingroup l2_modif_extrurev
def RotationSweepObject ( self , theObject , Axis , AngleInRadians , NbOfSteps , Tolerance ,
MakeGroups = False , TotalAngle = False ) :
2015-03-18 21:07:40 +05:00
return self . RotationSweepObjects ( [ ] , theObject , theObject , Axis ,
AngleInRadians , NbOfSteps , Tolerance ,
MakeGroups , TotalAngle )
2009-02-17 10:27:49 +05:00
## Generates new elements by rotation of the elements of object around the axis
2012-08-09 16:03:55 +06:00
# @param theObject object which elements should be sweeped.
# It can be a mesh, a sub mesh or a group.
2009-02-17 10:27:49 +05:00
# @param Axis the axis of rotation, AxisStruct or line(geom object)
# @param AngleInRadians the angle of Rotation
# @param NbOfSteps number of steps
# @param Tolerance tolerance
# @param MakeGroups forces the generation of new groups from existing ones
# @param TotalAngle gives meaning of AngleInRadians: if True then it is an angular size
# of all steps, else - size of each step
# @return the list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
# @ingroup l2_modif_extrurev
def RotationSweepObject1D ( self , theObject , Axis , AngleInRadians , NbOfSteps , Tolerance ,
MakeGroups = False , TotalAngle = False ) :
2015-03-18 21:07:40 +05:00
return self . RotationSweepObjects ( [ ] , theObject , [ ] , Axis ,
AngleInRadians , NbOfSteps , Tolerance ,
MakeGroups , TotalAngle )
2009-02-17 10:27:49 +05:00
## Generates new elements by rotation of the elements of object around the axis
2012-08-09 16:03:55 +06:00
# @param theObject object which elements should be sweeped.
# It can be a mesh, a sub mesh or a group.
2009-02-17 10:27:49 +05:00
# @param Axis the axis of rotation, AxisStruct or line(geom object)
# @param AngleInRadians the angle of Rotation
# @param NbOfSteps number of steps
# @param Tolerance tolerance
# @param MakeGroups forces the generation of new groups from existing ones
# @param TotalAngle gives meaning of AngleInRadians: if True then it is an angular size
# of all steps, else - size of each step
# @return the list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
# @ingroup l2_modif_extrurev
def RotationSweepObject2D ( self , theObject , Axis , AngleInRadians , NbOfSteps , Tolerance ,
MakeGroups = False , TotalAngle = False ) :
2015-03-18 21:07:40 +05:00
return self . RotationSweepObjects ( [ ] , [ ] , theObject , Axis , AngleInRadians ,
NbOfSteps , Tolerance , MakeGroups , TotalAngle )
2008-03-07 12:47:05 +05:00
2015-03-17 17:06:56 +05:00
## Generates new elements by extrusion of the given elements and nodes
# @param nodes - nodes to extrude: a list including ids, groups, sub-meshes or a mesh
# @param edges - edges to extrude: a list including ids, groups, sub-meshes or a mesh
# @param faces - faces to extrude: a list including ids, groups, sub-meshes or a mesh
2013-02-12 20:37:44 +06:00
# @param StepVector vector or DirStruct or 3 vector components, defining
# the direction and value of extrusion for one step (the total extrusion
# length will be NbOfSteps * ||StepVector||)
2008-03-07 12:47:05 +05:00
# @param NbOfSteps the number of steps
2009-02-17 10:27:49 +05:00
# @param MakeGroups forces the generation of new groups from existing ones
# @return the list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
# @ingroup l2_modif_extrurev
2015-03-17 17:06:56 +05:00
def ExtrusionSweepObjects ( self , nodes , edges , faces , StepVector , NbOfSteps , MakeGroups = False ) :
unRegister = genObjUnRegister ( )
nodes = self . _getIdSourceList ( nodes , SMESH . NODE , unRegister )
edges = self . _getIdSourceList ( edges , SMESH . EDGE , unRegister )
faces = self . _getIdSourceList ( faces , SMESH . FACE , unRegister )
2013-04-04 13:08:19 +06:00
if isinstance ( StepVector , geomBuilder . GEOM . _objref_GEOM_Object ) :
2008-03-07 12:47:05 +05:00
StepVector = self . smeshpyD . GetDirStruct ( StepVector )
2013-02-12 20:37:44 +06:00
if isinstance ( StepVector , list ) :
StepVector = self . smeshpyD . MakeDirStruct ( * StepVector )
2015-03-17 17:06:56 +05:00
2012-08-09 16:03:55 +06:00
NbOfSteps , Parameters , hasVars = ParseParameters ( NbOfSteps )
Parameters = StepVector . PS . parameters + var_separator + Parameters
2009-02-17 10:27:49 +05:00
self . mesh . SetParameters ( Parameters )
2015-03-17 17:06:56 +05:00
2015-03-18 21:07:40 +05:00
return self . editor . ExtrusionSweepObjects ( nodes , edges , faces ,
StepVector , NbOfSteps , MakeGroups )
2015-03-17 17:06:56 +05:00
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Generates new elements by extrusion of the elements with given ids
2015-03-17 17:06:56 +05:00
# @param IDsOfElements the list of elements ids for extrusion
2013-02-12 20:37:44 +06:00
# @param StepVector vector or DirStruct or 3 vector components, defining
# the direction and value of extrusion for one step (the total extrusion
# length will be NbOfSteps * ||StepVector||)
2008-03-07 12:47:05 +05:00
# @param NbOfSteps the number of steps
2009-02-17 10:27:49 +05:00
# @param MakeGroups forces the generation of new groups from existing ones
2015-03-17 17:06:56 +05:00
# @param IsNodes is True if elements with given ids are nodes
# @return the list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_extrurev
2015-03-17 17:06:56 +05:00
def ExtrusionSweep ( self , IDsOfElements , StepVector , NbOfSteps , MakeGroups = False , IsNodes = False ) :
n , e , f = [ ] , [ ] , [ ]
2015-03-18 21:07:40 +05:00
if IsNodes : n = IDsOfElements
else : e , f , = IDsOfElements , IDsOfElements
return self . ExtrusionSweepObjects ( n , e , f , StepVector , NbOfSteps , MakeGroups )
2008-03-07 12:47:05 +05:00
2015-01-23 20:49:49 +05:00
## Generates new elements by extrusion along the normal to a discretized surface or wire
2015-03-17 17:06:56 +05:00
# @param Elements elements to extrude - a list including ids, groups, sub-meshes or a mesh
# Only faces can be extruded so far. Sub-mesh should be a sub-mesh on geom faces.
2015-01-23 20:49:49 +05:00
# @param StepSize length of one extrusion step (the total extrusion
# length will be \a NbOfSteps * \a StepSize ).
# @param NbOfSteps number of extrusion steps.
# @param ByAverageNormal if True each node is translated by \a StepSize
# along the average of the normal vectors to the faces sharing the node;
# else each node is translated along the same average normal till
# intersection with the plane got by translation of the face sharing
# the node along its own normal by \a StepSize.
# @param UseInputElemsOnly to use only \a Elements when computing extrusion direction
# for every node of \a Elements.
# @param MakeGroups forces generation of new groups from existing ones.
# @param Dim dimension of elements to extrude: 2 - faces or 1 - edges. Extrusion of edges
# is not yet implemented. This parameter is used if \a Elements contains
# both faces and edges, i.e. \a Elements is a Mesh.
# @return the list of created groups (SMESH_GroupBase) if \a MakeGroups=True,
# empty list otherwise.
# @ingroup l2_modif_extrurev
def ExtrusionByNormal ( self , Elements , StepSize , NbOfSteps ,
ByAverageNormal = False , UseInputElemsOnly = True , MakeGroups = False , Dim = 2 ) :
unRegister = genObjUnRegister ( )
if isinstance ( Elements , Mesh ) :
2015-03-17 17:06:56 +05:00
Elements = [ Elements . GetMesh ( ) ]
2015-01-23 20:49:49 +05:00
if isinstance ( Elements , list ) :
if not Elements :
2015-03-17 17:06:56 +05:00
raise RuntimeError , " Elements empty! "
if isinstance ( Elements [ 0 ] , int ) :
Elements = self . GetIDSource ( Elements , SMESH . ALL )
unRegister . set ( Elements )
2015-03-18 21:07:40 +05:00
if not isinstance ( Elements , list ) :
2015-03-17 17:06:56 +05:00
Elements = [ Elements ]
2015-01-23 20:49:49 +05:00
StepSize , NbOfSteps , Parameters , hasVars = ParseParameters ( StepSize , NbOfSteps )
self . mesh . SetParameters ( Parameters )
return self . editor . ExtrusionByNormal ( Elements , StepSize , NbOfSteps ,
2015-03-18 21:07:40 +05:00
ByAverageNormal , UseInputElemsOnly , MakeGroups , Dim )
2015-01-23 20:49:49 +05:00
2009-02-17 10:27:49 +05:00
## Generates new elements by extrusion of the elements which belong to the object
2012-08-09 16:03:55 +06:00
# @param theObject the object which elements should be processed.
# It can be a mesh, a sub mesh or a group.
2013-02-12 20:37:44 +06:00
# @param StepVector vector or DirStruct or 3 vector components, defining
# the direction and value of extrusion for one step (the total extrusion
# length will be NbOfSteps * ||StepVector||)
2008-03-07 12:47:05 +05:00
# @param NbOfSteps the number of steps
2009-02-17 10:27:49 +05:00
# @param MakeGroups forces the generation of new groups from existing ones
2015-03-17 17:06:56 +05:00
# @param IsNodes is True if elements to extrude are nodes
2008-03-07 12:47:05 +05:00
# @return list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_extrurev
2012-08-09 16:03:55 +06:00
def ExtrusionSweepObject ( self , theObject , StepVector , NbOfSteps , MakeGroups = False , IsNodes = False ) :
2015-03-17 17:06:56 +05:00
n , e , f = [ ] , [ ] , [ ]
2015-03-18 21:07:40 +05:00
if IsNodes : n = theObject
else : e , f , = theObject , theObject
return self . ExtrusionSweepObjects ( n , e , f , StepVector , NbOfSteps , MakeGroups )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Generates new elements by extrusion of the elements which belong to the object
2012-08-09 16:03:55 +06:00
# @param theObject object which elements should be processed.
# It can be a mesh, a sub mesh or a group.
2013-02-12 20:37:44 +06:00
# @param StepVector vector or DirStruct or 3 vector components, defining
# the direction and value of extrusion for one step (the total extrusion
# length will be NbOfSteps * ||StepVector||)
2008-03-07 12:47:05 +05:00
# @param NbOfSteps the number of steps
# @param MakeGroups to generate new groups from existing ones
# @return list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_extrurev
2008-03-07 12:47:05 +05:00
def ExtrusionSweepObject1D ( self , theObject , StepVector , NbOfSteps , MakeGroups = False ) :
2015-03-18 21:07:40 +05:00
return self . ExtrusionSweepObjects ( [ ] , theObject , [ ] , StepVector , NbOfSteps , MakeGroups )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Generates new elements by extrusion of the elements which belong to the object
2012-08-09 16:03:55 +06:00
# @param theObject object which elements should be processed.
# It can be a mesh, a sub mesh or a group.
2013-02-12 20:37:44 +06:00
# @param StepVector vector or DirStruct or 3 vector components, defining
# the direction and value of extrusion for one step (the total extrusion
# length will be NbOfSteps * ||StepVector||)
2008-03-07 12:47:05 +05:00
# @param NbOfSteps the number of steps
2009-02-17 10:27:49 +05:00
# @param MakeGroups forces the generation of new groups from existing ones
2008-03-07 12:47:05 +05:00
# @return list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_extrurev
2008-03-07 12:47:05 +05:00
def ExtrusionSweepObject2D ( self , theObject , StepVector , NbOfSteps , MakeGroups = False ) :
2015-03-18 21:07:40 +05:00
return self . ExtrusionSweepObjects ( [ ] , [ ] , theObject , StepVector , NbOfSteps , MakeGroups )
2008-03-07 12:47:05 +05:00
2015-03-17 17:06:56 +05:00
## Generates new elements by extrusion of the elements with given ids
# @param IDsOfElements is ids of elements
# @param StepVector vector or DirStruct or 3 vector components, defining
# the direction and value of extrusion for one step (the total extrusion
# length will be NbOfSteps * ||StepVector||)
# @param NbOfSteps the number of steps
# @param ExtrFlags sets flags for extrusion
# @param SewTolerance uses for comparing locations of nodes if flag
# EXTRUSION_FLAG_SEW is set
# @param MakeGroups forces the generation of new groups from existing ones
# @return list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
# @ingroup l2_modif_extrurev
def AdvancedExtrusion ( self , IDsOfElements , StepVector , NbOfSteps ,
ExtrFlags , SewTolerance , MakeGroups = False ) :
if isinstance ( StepVector , geomBuilder . GEOM . _objref_GEOM_Object ) :
StepVector = self . smeshpyD . GetDirStruct ( StepVector )
if isinstance ( StepVector , list ) :
StepVector = self . smeshpyD . MakeDirStruct ( * StepVector )
return self . editor . AdvancedExtrusion ( IDsOfElements , StepVector , NbOfSteps ,
ExtrFlags , SewTolerance , MakeGroups )
## Generates new elements by extrusion of the given elements and nodes along the path.
# The path of extrusion must be a meshed edge.
# @param Nodes nodes to extrude: a list including ids, groups, sub-meshes or a mesh
# @param Edges edges to extrude: a list including ids, groups, sub-meshes or a mesh
# @param Faces faces to extrude: a list including ids, groups, sub-meshes or a mesh
# @param PathMesh 1D mesh or 1D sub-mesh, along which proceeds the extrusion
# @param PathShape shape (edge) defines the sub-mesh of PathMesh if PathMesh
# contains not only path segments, else it can be None
# @param NodeStart the first or the last node on the path. Defines the direction of extrusion
# @param HasAngles allows the shape to be rotated around the path
# to get the resulting mesh in a helical fashion
# @param Angles list of angles
2015-03-17 22:40:17 +05:00
# @param LinearVariation forces the computation of rotation angles as linear
# variation of the given Angles along path steps
2015-03-17 17:06:56 +05:00
# @param HasRefPoint allows using the reference point
# @param RefPoint the point around which the shape is rotated (the mass center of the
# shape by default). The User can specify any point as the Reference Point.
# @param MakeGroups forces the generation of new groups from existing ones
# @return list of created groups (SMESH_GroupBase) and SMESH::Extrusion_Error
# @ingroup l2_modif_extrurev
def ExtrusionAlongPathObjects ( self , Nodes , Edges , Faces , PathMesh , PathShape = None ,
2015-03-17 22:40:17 +05:00
NodeStart = 1 , HasAngles = False , Angles = [ ] , LinearVariation = False ,
HasRefPoint = False , RefPoint = [ 0 , 0 , 0 ] , MakeGroups = False ) :
2015-03-17 17:06:56 +05:00
unRegister = genObjUnRegister ( )
Nodes = self . _getIdSourceList ( Nodes , SMESH . NODE , unRegister )
Edges = self . _getIdSourceList ( Edges , SMESH . EDGE , unRegister )
Faces = self . _getIdSourceList ( Faces , SMESH . FACE , unRegister )
2012-08-09 16:03:55 +06:00
2015-03-17 17:06:56 +05:00
if isinstance ( RefPoint , geomBuilder . GEOM . _objref_GEOM_Object ) :
RefPoint = self . smeshpyD . GetPointStruct ( RefPoint )
if isinstance ( RefPoint , list ) :
RefPoint = SMESH . PointStruct ( * RefPoint )
if isinstance ( PathMesh , Mesh ) :
PathMesh = PathMesh . GetMesh ( )
Angles , AnglesParameters , hasVars = ParseAngles ( Angles )
Parameters = AnglesParameters + var_separator + RefPoint . parameters
self . mesh . SetParameters ( Parameters )
return self . editor . ExtrusionAlongPathObjects ( Nodes , Edges , Faces ,
PathMesh , PathShape , NodeStart ,
HasAngles , Angles , LinearVariation ,
HasRefPoint , RefPoint , MakeGroups )
2012-08-09 16:03:55 +06:00
## Generates new elements by extrusion of the given elements
# The path of extrusion must be a meshed edge.
# @param Base mesh or group, or submesh, or list of ids of elements for extrusion
# @param Path - 1D mesh or 1D sub-mesh, along which proceeds the extrusion
# @param NodeStart the start node from Path. Defines the direction of extrusion
# @param HasAngles allows the shape to be rotated around the path
# to get the resulting mesh in a helical fashion
# @param Angles list of angles in radians
# @param LinearVariation forces the computation of rotation angles as linear
# variation of the given Angles along path steps
# @param HasRefPoint allows using the reference point
2013-07-17 20:38:25 +06:00
# @param RefPoint the point around which the elements are rotated (the mass
# center of the elements by default).
2012-08-09 16:03:55 +06:00
# The User can specify any point as the Reference Point.
2013-07-17 20:38:25 +06:00
# RefPoint can be either GEOM Vertex, [x,y,z] or SMESH.PointStruct
2012-08-09 16:03:55 +06:00
# @param MakeGroups forces the generation of new groups from existing ones
# @param ElemType type of elements for extrusion (if param Base is a mesh)
# @return list of created groups (SMESH_GroupBase) and SMESH::Extrusion_Error if MakeGroups=True,
# only SMESH::Extrusion_Error otherwise
# @ingroup l2_modif_extrurev
def ExtrusionAlongPathX ( self , Base , Path , NodeStart ,
HasAngles , Angles , LinearVariation ,
HasRefPoint , RefPoint , MakeGroups , ElemType ) :
2015-03-18 21:07:40 +05:00
n , e , f = [ ] , [ ] , [ ]
if ElemType == SMESH . NODE : n = Base
if ElemType == SMESH . EDGE : e = Base
if ElemType == SMESH . FACE : f = Base
gr , er = self . ExtrusionAlongPathObjects ( n , e , f , Path , None , NodeStart ,
HasAngles , Angles , LinearVariation ,
HasRefPoint , RefPoint , MakeGroups )
if MakeGroups : return gr , er
return er
2012-08-09 16:03:55 +06:00
2009-02-17 10:27:49 +05:00
## Generates new elements by extrusion of the given elements
# The path of extrusion must be a meshed edge.
# @param IDsOfElements ids of elements
2008-03-07 12:47:05 +05:00
# @param PathMesh mesh containing a 1D sub-mesh on the edge, along which proceeds the extrusion
2009-02-17 10:27:49 +05:00
# @param PathShape shape(edge) defines the sub-mesh for the path
# @param NodeStart the first or the last node on the edge. Defines the direction of extrusion
# @param HasAngles allows the shape to be rotated around the path
# to get the resulting mesh in a helical fashion
2012-08-09 16:03:55 +06:00
# @param Angles list of angles in radians
2009-02-17 10:27:49 +05:00
# @param HasRefPoint allows using the reference point
# @param RefPoint the point around which the shape is rotated (the mass center of the shape by default).
# The User can specify any point as the Reference Point.
# @param MakeGroups forces the generation of new groups from existing ones
# @param LinearVariation forces the computation of rotation angles as linear
# variation of the given Angles along path steps
2008-03-07 12:47:05 +05:00
# @return list of created groups (SMESH_GroupBase) and SMESH::Extrusion_Error if MakeGroups=True,
# only SMESH::Extrusion_Error otherwise
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_extrurev
2008-03-07 12:47:05 +05:00
def ExtrusionAlongPath ( self , IDsOfElements , PathMesh , PathShape , NodeStart ,
HasAngles , Angles , HasRefPoint , RefPoint ,
MakeGroups = False , LinearVariation = False ) :
2015-03-18 21:07:40 +05:00
n , e , f = [ ] , IDsOfElements , IDsOfElements
gr , er = self . ExtrusionAlongPathObjects ( n , e , f , PathMesh , PathShape ,
NodeStart , HasAngles , Angles ,
LinearVariation ,
HasRefPoint , RefPoint , MakeGroups )
2015-03-17 17:06:56 +05:00
if MakeGroups : return gr , er
return er
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Generates new elements by extrusion of the elements which belong to the object
# The path of extrusion must be a meshed edge.
2012-08-09 16:03:55 +06:00
# @param theObject the object which elements should be processed.
2015-03-17 17:06:56 +05:00
# It can be a mesh, a sub-mesh or a group.
2009-02-17 10:27:49 +05:00
# @param PathMesh mesh containing a 1D sub-mesh on the edge, along which the extrusion proceeds
# @param PathShape shape(edge) defines the sub-mesh for the path
# @param NodeStart the first or the last node on the edge. Defines the direction of extrusion
# @param HasAngles allows the shape to be rotated around the path
# to get the resulting mesh in a helical fashion
2008-03-07 12:47:05 +05:00
# @param Angles list of angles
2009-02-17 10:27:49 +05:00
# @param HasRefPoint allows using the reference point
# @param RefPoint the point around which the shape is rotated (the mass center of the shape by default).
# The User can specify any point as the Reference Point.
# @param MakeGroups forces the generation of new groups from existing ones
# @param LinearVariation forces the computation of rotation angles as linear
# variation of the given Angles along path steps
2008-03-07 12:47:05 +05:00
# @return list of created groups (SMESH_GroupBase) and SMESH::Extrusion_Error if MakeGroups=True,
# only SMESH::Extrusion_Error otherwise
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_extrurev
2008-03-07 12:47:05 +05:00
def ExtrusionAlongPathObject ( self , theObject , PathMesh , PathShape , NodeStart ,
HasAngles , Angles , HasRefPoint , RefPoint ,
MakeGroups = False , LinearVariation = False ) :
2015-03-18 21:07:40 +05:00
n , e , f = [ ] , theObject , theObject
gr , er = self . ExtrusionAlongPathObjects ( n , e , f , PathMesh , PathShape , NodeStart ,
HasAngles , Angles , LinearVariation ,
HasRefPoint , RefPoint , MakeGroups )
2015-03-17 17:06:56 +05:00
if MakeGroups : return gr , er
return er
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Generates new elements by extrusion of the elements which belong to the object
# The path of extrusion must be a meshed edge.
2012-08-09 16:03:55 +06:00
# @param theObject the object which elements should be processed.
# It can be a mesh, a sub mesh or a group.
2009-02-17 10:27:49 +05:00
# @param PathMesh mesh containing a 1D sub-mesh on the edge, along which the extrusion proceeds
# @param PathShape shape(edge) defines the sub-mesh for the path
# @param NodeStart the first or the last node on the edge. Defines the direction of extrusion
# @param HasAngles allows the shape to be rotated around the path
# to get the resulting mesh in a helical fashion
# @param Angles list of angles
# @param HasRefPoint allows using the reference point
# @param RefPoint the point around which the shape is rotated (the mass center of the shape by default).
# The User can specify any point as the Reference Point.
# @param MakeGroups forces the generation of new groups from existing ones
# @param LinearVariation forces the computation of rotation angles as linear
# variation of the given Angles along path steps
# @return list of created groups (SMESH_GroupBase) and SMESH::Extrusion_Error if MakeGroups=True,
# only SMESH::Extrusion_Error otherwise
# @ingroup l2_modif_extrurev
def ExtrusionAlongPathObject1D ( self , theObject , PathMesh , PathShape , NodeStart ,
HasAngles , Angles , HasRefPoint , RefPoint ,
MakeGroups = False , LinearVariation = False ) :
2015-03-18 21:07:40 +05:00
n , e , f = [ ] , theObject , [ ]
gr , er = self . ExtrusionAlongPathObjects ( n , e , f , PathMesh , PathShape , NodeStart ,
HasAngles , Angles , LinearVariation ,
HasRefPoint , RefPoint , MakeGroups )
2015-03-17 17:06:56 +05:00
if MakeGroups : return gr , er
return er
2009-02-17 10:27:49 +05:00
## Generates new elements by extrusion of the elements which belong to the object
# The path of extrusion must be a meshed edge.
2012-08-09 16:03:55 +06:00
# @param theObject the object which elements should be processed.
# It can be a mesh, a sub mesh or a group.
2009-02-17 10:27:49 +05:00
# @param PathMesh mesh containing a 1D sub-mesh on the edge, along which the extrusion proceeds
# @param PathShape shape(edge) defines the sub-mesh for the path
# @param NodeStart the first or the last node on the edge. Defines the direction of extrusion
# @param HasAngles allows the shape to be rotated around the path
# to get the resulting mesh in a helical fashion
# @param Angles list of angles
# @param HasRefPoint allows using the reference point
# @param RefPoint the point around which the shape is rotated (the mass center of the shape by default).
# The User can specify any point as the Reference Point.
# @param MakeGroups forces the generation of new groups from existing ones
# @param LinearVariation forces the computation of rotation angles as linear
# variation of the given Angles along path steps
# @return list of created groups (SMESH_GroupBase) and SMESH::Extrusion_Error if MakeGroups=True,
# only SMESH::Extrusion_Error otherwise
# @ingroup l2_modif_extrurev
def ExtrusionAlongPathObject2D ( self , theObject , PathMesh , PathShape , NodeStart ,
HasAngles , Angles , HasRefPoint , RefPoint ,
MakeGroups = False , LinearVariation = False ) :
2015-03-18 21:07:40 +05:00
n , e , f = [ ] , [ ] , theObject
gr , er = self . ExtrusionAlongPathObjects ( n , e , f , PathMesh , PathShape , NodeStart ,
HasAngles , Angles , LinearVariation ,
HasRefPoint , RefPoint , MakeGroups )
2015-03-17 17:06:56 +05:00
if MakeGroups : return gr , er
return er
2009-02-17 10:27:49 +05:00
## Creates a symmetrical copy of mesh elements
2008-03-07 12:47:05 +05:00
# @param IDsOfElements list of elements ids
# @param Mirror is AxisStruct or geom object(point, line, plane)
2015-06-24 14:17:07 +05:00
# @param theMirrorType smeshBuilder.POINT, smeshBuilder.AXIS or smeshBuilder.PLANE
# If the Mirror is a geom object this parameter is unnecessary
2009-02-17 10:27:49 +05:00
# @param Copy allows to copy element (Copy is 1) or to replace with its mirroring (Copy is 0)
# @param MakeGroups forces the generation of new groups from existing ones (if Copy)
2008-03-07 12:47:05 +05:00
# @return list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2014-06-26 18:15:06 +06:00
def Mirror ( self , IDsOfElements , Mirror , theMirrorType = None , Copy = 0 , MakeGroups = False ) :
2008-03-07 12:47:05 +05:00
if IDsOfElements == [ ] :
IDsOfElements = self . GetElementsId ( )
2013-04-04 13:08:19 +06:00
if ( isinstance ( Mirror , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2014-06-26 18:15:06 +06:00
Mirror = self . smeshpyD . GetAxisStruct ( Mirror )
theMirrorType = Mirror . _mirrorType
else :
self . mesh . SetParameters ( Mirror . parameters )
2008-03-07 12:47:05 +05:00
if Copy and MakeGroups :
return self . editor . MirrorMakeGroups ( IDsOfElements , Mirror , theMirrorType )
self . editor . Mirror ( IDsOfElements , Mirror , theMirrorType , Copy )
return [ ]
2009-02-17 10:27:49 +05:00
## Creates a new mesh by a symmetrical copy of mesh elements
# @param IDsOfElements the list of elements ids
# @param Mirror is AxisStruct or geom object (point, line, plane)
2015-06-24 14:17:07 +05:00
# @param theMirrorType smeshBuilder.POINT, smeshBuilder.AXIS or smeshBuilder.PLANE
# If the Mirror is a geom object this parameter is unnecessary
2008-03-07 12:47:05 +05:00
# @param MakeGroups to generate new groups from existing ones
2009-02-17 10:27:49 +05:00
# @param NewMeshName a name of the new mesh to create
2008-03-07 12:47:05 +05:00
# @return instance of Mesh class
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2014-06-26 18:15:06 +06:00
def MirrorMakeMesh ( self , IDsOfElements , Mirror , theMirrorType = 0 , MakeGroups = 0 , NewMeshName = " " ) :
2008-03-07 12:47:05 +05:00
if IDsOfElements == [ ] :
IDsOfElements = self . GetElementsId ( )
2013-04-04 13:08:19 +06:00
if ( isinstance ( Mirror , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2014-06-26 18:15:06 +06:00
Mirror = self . smeshpyD . GetAxisStruct ( Mirror )
theMirrorType = Mirror . _mirrorType
else :
self . mesh . SetParameters ( Mirror . parameters )
2008-03-07 12:47:05 +05:00
mesh = self . editor . MirrorMakeMesh ( IDsOfElements , Mirror , theMirrorType ,
MakeGroups , NewMeshName )
return Mesh ( self . smeshpyD , self . geompyD , mesh )
2009-02-17 10:27:49 +05:00
## Creates a symmetrical copy of the object
2008-03-07 12:47:05 +05:00
# @param theObject mesh, submesh or group
2009-02-17 10:27:49 +05:00
# @param Mirror AxisStruct or geom object (point, line, plane)
2015-06-24 14:17:07 +05:00
# @param theMirrorType smeshBuilder.POINT, smeshBuilder.AXIS or smeshBuilder.PLANE
# If the Mirror is a geom object this parameter is unnecessary
2009-02-17 10:27:49 +05:00
# @param Copy allows copying the element (Copy is 1) or replacing it with its mirror (Copy is 0)
# @param MakeGroups forces the generation of new groups from existing ones (if Copy)
2008-03-07 12:47:05 +05:00
# @return list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2014-06-26 18:15:06 +06:00
def MirrorObject ( self , theObject , Mirror , theMirrorType = None , Copy = 0 , MakeGroups = False ) :
2008-03-07 12:47:05 +05:00
if ( isinstance ( theObject , Mesh ) ) :
theObject = theObject . GetMesh ( )
2013-04-04 13:08:19 +06:00
if ( isinstance ( Mirror , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2014-06-26 18:15:06 +06:00
Mirror = self . smeshpyD . GetAxisStruct ( Mirror )
theMirrorType = Mirror . _mirrorType
else :
self . mesh . SetParameters ( Mirror . parameters )
2008-03-07 12:47:05 +05:00
if Copy and MakeGroups :
return self . editor . MirrorObjectMakeGroups ( theObject , Mirror , theMirrorType )
self . editor . MirrorObject ( theObject , Mirror , theMirrorType , Copy )
return [ ]
2009-02-17 10:27:49 +05:00
## Creates a new mesh by a symmetrical copy of the object
2008-03-07 12:47:05 +05:00
# @param theObject mesh, submesh or group
2009-02-17 10:27:49 +05:00
# @param Mirror AxisStruct or geom object (point, line, plane)
2015-06-24 14:17:07 +05:00
# @param theMirrorType smeshBuilder.POINT, smeshBuilder.AXIS or smeshBuilder.PLANE
# If the Mirror is a geom object this parameter is unnecessary
2009-02-17 10:27:49 +05:00
# @param MakeGroups forces the generation of new groups from existing ones
# @param NewMeshName the name of the new mesh to create
2008-03-07 12:47:05 +05:00
# @return instance of Mesh class
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2014-06-26 18:15:06 +06:00
def MirrorObjectMakeMesh ( self , theObject , Mirror , theMirrorType = 0 , MakeGroups = 0 , NewMeshName = " " ) :
2008-03-07 12:47:05 +05:00
if ( isinstance ( theObject , Mesh ) ) :
theObject = theObject . GetMesh ( )
2014-06-26 18:15:06 +06:00
if ( isinstance ( Mirror , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
Mirror = self . smeshpyD . GetAxisStruct ( Mirror )
theMirrorType = Mirror . _mirrorType
else :
self . mesh . SetParameters ( Mirror . parameters )
2008-03-07 12:47:05 +05:00
mesh = self . editor . MirrorObjectMakeMesh ( theObject , Mirror , theMirrorType ,
MakeGroups , NewMeshName )
return Mesh ( self . smeshpyD , self . geompyD , mesh )
## Translates the elements
# @param IDsOfElements list of elements ids
2013-03-15 20:59:29 +06:00
# @param Vector the direction of translation (DirStruct or vector or 3 vector components)
2009-02-17 10:27:49 +05:00
# @param Copy allows copying the translated elements
# @param MakeGroups forces the generation of new groups from existing ones (if Copy)
2008-03-07 12:47:05 +05:00
# @return list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2008-03-07 12:47:05 +05:00
def Translate ( self , IDsOfElements , Vector , Copy , MakeGroups = False ) :
if IDsOfElements == [ ] :
IDsOfElements = self . GetElementsId ( )
2013-04-04 13:08:19 +06:00
if ( isinstance ( Vector , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2008-03-07 12:47:05 +05:00
Vector = self . smeshpyD . GetDirStruct ( Vector )
2013-03-15 20:59:29 +06:00
if isinstance ( Vector , list ) :
Vector = self . smeshpyD . MakeDirStruct ( * Vector )
2012-08-09 16:03:55 +06:00
self . mesh . SetParameters ( Vector . PS . parameters )
2008-03-07 12:47:05 +05:00
if Copy and MakeGroups :
return self . editor . TranslateMakeGroups ( IDsOfElements , Vector )
self . editor . Translate ( IDsOfElements , Vector , Copy )
return [ ]
2009-02-17 10:27:49 +05:00
## Creates a new mesh of translated elements
2008-03-07 12:47:05 +05:00
# @param IDsOfElements list of elements ids
2013-03-15 20:59:29 +06:00
# @param Vector the direction of translation (DirStruct or vector or 3 vector components)
2009-02-17 10:27:49 +05:00
# @param MakeGroups forces the generation of new groups from existing ones
# @param NewMeshName the name of the newly created mesh
2008-03-07 12:47:05 +05:00
# @return instance of Mesh class
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2008-03-07 12:47:05 +05:00
def TranslateMakeMesh ( self , IDsOfElements , Vector , MakeGroups = False , NewMeshName = " " ) :
if IDsOfElements == [ ] :
IDsOfElements = self . GetElementsId ( )
2013-04-04 13:08:19 +06:00
if ( isinstance ( Vector , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2008-03-07 12:47:05 +05:00
Vector = self . smeshpyD . GetDirStruct ( Vector )
2013-03-15 20:59:29 +06:00
if isinstance ( Vector , list ) :
Vector = self . smeshpyD . MakeDirStruct ( * Vector )
2012-08-09 16:03:55 +06:00
self . mesh . SetParameters ( Vector . PS . parameters )
2008-03-07 12:47:05 +05:00
mesh = self . editor . TranslateMakeMesh ( IDsOfElements , Vector , MakeGroups , NewMeshName )
return Mesh ( self . smeshpyD , self . geompyD , mesh )
## Translates the object
2009-02-17 10:27:49 +05:00
# @param theObject the object to translate (mesh, submesh, or group)
2013-03-15 20:59:29 +06:00
# @param Vector direction of translation (DirStruct or geom vector or 3 vector components)
2009-02-17 10:27:49 +05:00
# @param Copy allows copying the translated elements
# @param MakeGroups forces the generation of new groups from existing ones (if Copy)
2008-03-07 12:47:05 +05:00
# @return list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2008-03-07 12:47:05 +05:00
def TranslateObject ( self , theObject , Vector , Copy , MakeGroups = False ) :
if ( isinstance ( theObject , Mesh ) ) :
theObject = theObject . GetMesh ( )
2013-04-04 13:08:19 +06:00
if ( isinstance ( Vector , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2008-03-07 12:47:05 +05:00
Vector = self . smeshpyD . GetDirStruct ( Vector )
2013-03-15 20:59:29 +06:00
if isinstance ( Vector , list ) :
Vector = self . smeshpyD . MakeDirStruct ( * Vector )
2012-08-09 16:03:55 +06:00
self . mesh . SetParameters ( Vector . PS . parameters )
2008-03-07 12:47:05 +05:00
if Copy and MakeGroups :
return self . editor . TranslateObjectMakeGroups ( theObject , Vector )
self . editor . TranslateObject ( theObject , Vector , Copy )
return [ ]
2009-02-17 10:27:49 +05:00
## Creates a new mesh from the translated object
# @param theObject the object to translate (mesh, submesh, or group)
2013-03-15 20:59:29 +06:00
# @param Vector the direction of translation (DirStruct or geom vector or 3 vector components)
2009-02-17 10:27:49 +05:00
# @param MakeGroups forces the generation of new groups from existing ones
# @param NewMeshName the name of the newly created mesh
2008-03-07 12:47:05 +05:00
# @return instance of Mesh class
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2008-03-07 12:47:05 +05:00
def TranslateObjectMakeMesh ( self , theObject , Vector , MakeGroups = False , NewMeshName = " " ) :
2013-03-15 20:59:29 +06:00
if isinstance ( theObject , Mesh ) :
2008-03-07 12:47:05 +05:00
theObject = theObject . GetMesh ( )
2013-04-04 13:08:19 +06:00
if isinstance ( Vector , geomBuilder . GEOM . _objref_GEOM_Object ) :
2008-03-07 12:47:05 +05:00
Vector = self . smeshpyD . GetDirStruct ( Vector )
2013-03-15 20:59:29 +06:00
if isinstance ( Vector , list ) :
Vector = self . smeshpyD . MakeDirStruct ( * Vector )
2012-08-09 16:03:55 +06:00
self . mesh . SetParameters ( Vector . PS . parameters )
2008-03-07 12:47:05 +05:00
mesh = self . editor . TranslateObjectMakeMesh ( theObject , Vector , MakeGroups , NewMeshName )
return Mesh ( self . smeshpyD , self . geompyD , mesh )
2012-08-09 16:03:55 +06:00
## Scales the object
# @param theObject - the object to translate (mesh, submesh, or group)
2015-02-11 18:52:57 +05:00
# @param thePoint - base point for scale (SMESH.PointStruct or list of 3 coordinates)
2012-08-09 16:03:55 +06:00
# @param theScaleFact - list of 1-3 scale factors for axises
# @param Copy - allows copying the translated elements
# @param MakeGroups - forces the generation of new groups from existing
# ones (if Copy)
# @return list of created groups (SMESH_GroupBase) if MakeGroups=True,
# empty list otherwise
def Scale ( self , theObject , thePoint , theScaleFact , Copy , MakeGroups = False ) :
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2012-08-09 16:03:55 +06:00
if ( isinstance ( theObject , Mesh ) ) :
theObject = theObject . GetMesh ( )
if ( isinstance ( theObject , list ) ) :
theObject = self . GetIDSource ( theObject , SMESH . ALL )
2013-08-07 20:06:39 +06:00
unRegister . set ( theObject )
2015-02-11 18:52:57 +05:00
if ( isinstance ( thePoint , list ) ) :
thePoint = PointStruct ( thePoint [ 0 ] , thePoint [ 1 ] , thePoint [ 2 ] )
2012-12-13 17:41:29 +06:00
if ( isinstance ( theScaleFact , float ) ) :
theScaleFact = [ theScaleFact ]
if ( isinstance ( theScaleFact , int ) ) :
theScaleFact = [ float ( theScaleFact ) ]
2012-08-09 16:03:55 +06:00
self . mesh . SetParameters ( thePoint . parameters )
if Copy and MakeGroups :
return self . editor . ScaleMakeGroups ( theObject , thePoint , theScaleFact )
self . editor . Scale ( theObject , thePoint , theScaleFact , Copy )
return [ ]
## Creates a new mesh from the translated object
# @param theObject - the object to translate (mesh, submesh, or group)
2015-02-11 18:52:57 +05:00
# @param thePoint - base point for scale (SMESH.PointStruct or list of 3 coordinates)
2012-08-09 16:03:55 +06:00
# @param theScaleFact - list of 1-3 scale factors for axises
# @param MakeGroups - forces the generation of new groups from existing ones
# @param NewMeshName - the name of the newly created mesh
# @return instance of Mesh class
def ScaleMakeMesh ( self , theObject , thePoint , theScaleFact , MakeGroups = False , NewMeshName = " " ) :
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2012-08-09 16:03:55 +06:00
if ( isinstance ( theObject , Mesh ) ) :
theObject = theObject . GetMesh ( )
if ( isinstance ( theObject , list ) ) :
theObject = self . GetIDSource ( theObject , SMESH . ALL )
2013-08-07 20:06:39 +06:00
unRegister . set ( theObject )
2015-02-11 18:52:57 +05:00
if ( isinstance ( thePoint , list ) ) :
thePoint = PointStruct ( thePoint [ 0 ] , thePoint [ 1 ] , thePoint [ 2 ] )
2012-12-13 17:41:29 +06:00
if ( isinstance ( theScaleFact , float ) ) :
theScaleFact = [ theScaleFact ]
if ( isinstance ( theScaleFact , int ) ) :
theScaleFact = [ float ( theScaleFact ) ]
2012-08-09 16:03:55 +06:00
self . mesh . SetParameters ( thePoint . parameters )
mesh = self . editor . ScaleMakeMesh ( theObject , thePoint , theScaleFact ,
MakeGroups , NewMeshName )
return Mesh ( self . smeshpyD , self . geompyD , mesh )
2008-03-07 12:47:05 +05:00
## Rotates the elements
# @param IDsOfElements list of elements ids
2009-02-17 10:27:49 +05:00
# @param Axis the axis of rotation (AxisStruct or geom line)
# @param AngleInRadians the angle of rotation (in radians) or a name of variable which defines angle in degrees
# @param Copy allows copying the rotated elements
# @param MakeGroups forces the generation of new groups from existing ones (if Copy)
2008-03-07 12:47:05 +05:00
# @return list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2008-03-07 12:47:05 +05:00
def Rotate ( self , IDsOfElements , Axis , AngleInRadians , Copy , MakeGroups = False ) :
if IDsOfElements == [ ] :
IDsOfElements = self . GetElementsId ( )
2013-04-04 13:08:19 +06:00
if ( isinstance ( Axis , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2008-03-07 12:47:05 +05:00
Axis = self . smeshpyD . GetAxisStruct ( Axis )
2012-08-09 16:03:55 +06:00
AngleInRadians , Parameters , hasVars = ParseAngles ( AngleInRadians )
Parameters = Axis . parameters + var_separator + Parameters
2009-02-17 10:27:49 +05:00
self . mesh . SetParameters ( Parameters )
2008-03-07 12:47:05 +05:00
if Copy and MakeGroups :
return self . editor . RotateMakeGroups ( IDsOfElements , Axis , AngleInRadians )
self . editor . Rotate ( IDsOfElements , Axis , AngleInRadians , Copy )
return [ ]
2009-02-17 10:27:49 +05:00
## Creates a new mesh of rotated elements
2008-03-07 12:47:05 +05:00
# @param IDsOfElements list of element ids
2009-02-17 10:27:49 +05:00
# @param Axis the axis of rotation (AxisStruct or geom line)
# @param AngleInRadians the angle of rotation (in radians) or a name of variable which defines angle in degrees
# @param MakeGroups forces the generation of new groups from existing ones
# @param NewMeshName the name of the newly created mesh
2008-03-07 12:47:05 +05:00
# @return instance of Mesh class
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2008-03-07 12:47:05 +05:00
def RotateMakeMesh ( self , IDsOfElements , Axis , AngleInRadians , MakeGroups = 0 , NewMeshName = " " ) :
if IDsOfElements == [ ] :
IDsOfElements = self . GetElementsId ( )
2013-04-04 13:08:19 +06:00
if ( isinstance ( Axis , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2008-03-07 12:47:05 +05:00
Axis = self . smeshpyD . GetAxisStruct ( Axis )
2012-08-09 16:03:55 +06:00
AngleInRadians , Parameters , hasVars = ParseAngles ( AngleInRadians )
Parameters = Axis . parameters + var_separator + Parameters
self . mesh . SetParameters ( Parameters )
2008-03-07 12:47:05 +05:00
mesh = self . editor . RotateMakeMesh ( IDsOfElements , Axis , AngleInRadians ,
MakeGroups , NewMeshName )
return Mesh ( self . smeshpyD , self . geompyD , mesh )
## Rotates the object
2009-02-17 10:27:49 +05:00
# @param theObject the object to rotate( mesh, submesh, or group)
# @param Axis the axis of rotation (AxisStruct or geom line)
# @param AngleInRadians the angle of rotation (in radians) or a name of variable which defines angle in degrees
# @param Copy allows copying the rotated elements
# @param MakeGroups forces the generation of new groups from existing ones (if Copy)
2008-03-07 12:47:05 +05:00
# @return list of created groups (SMESH_GroupBase) if MakeGroups=True, empty list otherwise
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2008-03-07 12:47:05 +05:00
def RotateObject ( self , theObject , Axis , AngleInRadians , Copy , MakeGroups = False ) :
if ( isinstance ( theObject , Mesh ) ) :
theObject = theObject . GetMesh ( )
2013-04-04 13:08:19 +06:00
if ( isinstance ( Axis , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2008-03-07 12:47:05 +05:00
Axis = self . smeshpyD . GetAxisStruct ( Axis )
2012-08-09 16:03:55 +06:00
AngleInRadians , Parameters , hasVars = ParseAngles ( AngleInRadians )
Parameters = Axis . parameters + " : " + Parameters
2009-02-17 10:27:49 +05:00
self . mesh . SetParameters ( Parameters )
2008-03-07 12:47:05 +05:00
if Copy and MakeGroups :
return self . editor . RotateObjectMakeGroups ( theObject , Axis , AngleInRadians )
self . editor . RotateObject ( theObject , Axis , AngleInRadians , Copy )
return [ ]
2009-02-17 10:27:49 +05:00
## Creates a new mesh from the rotated object
# @param theObject the object to rotate (mesh, submesh, or group)
# @param Axis the axis of rotation (AxisStruct or geom line)
# @param AngleInRadians the angle of rotation (in radians) or a name of variable which defines angle in degrees
# @param MakeGroups forces the generation of new groups from existing ones
# @param NewMeshName the name of the newly created mesh
2008-03-07 12:47:05 +05:00
# @return instance of Mesh class
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2008-03-07 12:47:05 +05:00
def RotateObjectMakeMesh ( self , theObject , Axis , AngleInRadians , MakeGroups = 0 , NewMeshName = " " ) :
if ( isinstance ( theObject , Mesh ) ) :
theObject = theObject . GetMesh ( )
2013-04-04 13:08:19 +06:00
if ( isinstance ( Axis , geomBuilder . GEOM . _objref_GEOM_Object ) ) :
2008-03-07 12:47:05 +05:00
Axis = self . smeshpyD . GetAxisStruct ( Axis )
2012-08-09 16:03:55 +06:00
AngleInRadians , Parameters , hasVars = ParseAngles ( AngleInRadians )
Parameters = Axis . parameters + " : " + Parameters
2008-03-07 12:47:05 +05:00
mesh = self . editor . RotateObjectMakeMesh ( theObject , Axis , AngleInRadians ,
MakeGroups , NewMeshName )
2012-08-09 16:03:55 +06:00
self . mesh . SetParameters ( Parameters )
2008-03-07 12:47:05 +05:00
return Mesh ( self . smeshpyD , self . geompyD , mesh )
2013-10-28 21:32:04 +06:00
## Finds groups of adjacent nodes within Tolerance.
2009-02-17 10:27:49 +05:00
# @param Tolerance the value of tolerance
2015-07-01 16:59:24 +05:00
# @param SeparateCornerAndMediumNodes if @c True, in quadratic mesh puts
# corner and medium nodes in separate groups thus preventing
# their further merge.
# @return the list of groups of nodes IDs (e.g. [[1,12,13],[4,25]])
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2015-07-01 16:59:24 +05:00
def FindCoincidentNodes ( self , Tolerance , SeparateCornerAndMediumNodes = False ) :
return self . editor . FindCoincidentNodes ( Tolerance , SeparateCornerAndMediumNodes )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Finds groups of ajacent nodes within Tolerance.
# @param Tolerance the value of tolerance
2008-03-07 12:47:05 +05:00
# @param SubMeshOrGroup SubMesh or Group
2012-08-09 16:03:55 +06:00
# @param exceptNodes list of either SubMeshes, Groups or node IDs to exclude from search
2015-07-01 16:59:24 +05:00
# @param SeparateCornerAndMediumNodes if @c True, in quadratic mesh puts
# corner and medium nodes in separate groups thus preventing
# their further merge.
# @return the list of groups of nodes IDs (e.g. [[1,12,13],[4,25]])
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2015-07-01 16:59:24 +05:00
def FindCoincidentNodesOnPart ( self , SubMeshOrGroup , Tolerance ,
exceptNodes = [ ] , SeparateCornerAndMediumNodes = False ) :
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2012-08-09 16:03:55 +06:00
if ( isinstance ( SubMeshOrGroup , Mesh ) ) :
SubMeshOrGroup = SubMeshOrGroup . GetMesh ( )
2015-07-01 16:59:24 +05:00
if not isinstance ( exceptNodes , list ) :
2012-08-09 16:03:55 +06:00
exceptNodes = [ exceptNodes ]
2015-07-01 16:59:24 +05:00
if exceptNodes and isinstance ( exceptNodes [ 0 ] , int ) :
exceptNodes = [ self . GetIDSource ( exceptNodes , SMESH . NODE ) ]
2013-08-07 20:06:39 +06:00
unRegister . set ( exceptNodes )
2015-07-01 16:59:24 +05:00
return self . editor . FindCoincidentNodesOnPartBut ( SubMeshOrGroup , Tolerance ,
exceptNodes , SeparateCornerAndMediumNodes )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Merges nodes
2015-07-01 16:59:24 +05:00
# @param GroupsOfNodes a list of groups of nodes IDs for merging
# (e.g. [[1,12,13],[25,4]], then nodes 12, 13 and 4 will be removed and replaced
2015-03-17 17:06:56 +05:00
# by nodes 1 and 25 correspondingly in all elements and groups
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2008-03-07 12:47:05 +05:00
def MergeNodes ( self , GroupsOfNodes ) :
self . editor . MergeNodes ( GroupsOfNodes )
2009-02-17 10:27:49 +05:00
## Finds the elements built on the same nodes.
2008-03-07 12:47:05 +05:00
# @param MeshOrSubMeshOrGroup Mesh or SubMesh, or Group of elements for searching
2015-07-01 16:59:24 +05:00
# @return the list of groups of equal elements IDs (e.g. [[1,12,13],[4,25]])
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2015-03-17 17:06:56 +05:00
def FindEqualElements ( self , MeshOrSubMeshOrGroup = None ) :
if not MeshOrSubMeshOrGroup :
MeshOrSubMeshOrGroup = self . mesh
elif isinstance ( MeshOrSubMeshOrGroup , Mesh ) :
2012-08-09 16:03:55 +06:00
MeshOrSubMeshOrGroup = MeshOrSubMeshOrGroup . GetMesh ( )
2015-03-17 17:06:56 +05:00
return self . editor . FindEqualElements ( MeshOrSubMeshOrGroup )
2008-03-07 12:47:05 +05:00
2009-02-17 10:27:49 +05:00
## Merges elements in each given group.
2015-07-01 16:59:24 +05:00
# @param GroupsOfElementsID a list of groups of elements IDs for merging
# (e.g. [[1,12,13],[25,4]], then elements 12, 13 and 4 will be removed and
2015-03-17 17:06:56 +05:00
# replaced by elements 1 and 25 in all groups)
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2008-03-07 12:47:05 +05:00
def MergeElements ( self , GroupsOfElementsID ) :
self . editor . MergeElements ( GroupsOfElementsID )
2009-02-17 10:27:49 +05:00
## Leaves one element and removes all other elements built on the same nodes.
# @ingroup l2_modif_trsf
2008-03-07 12:47:05 +05:00
def MergeEqualElements ( self ) :
self . editor . MergeEqualElements ( )
2009-02-17 10:27:49 +05:00
## Sews free borders
2008-03-07 12:47:05 +05:00
# @return SMESH::Sew_Error
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2008-03-07 12:47:05 +05:00
def SewFreeBorders ( self , FirstNodeID1 , SecondNodeID1 , LastNodeID1 ,
FirstNodeID2 , SecondNodeID2 , LastNodeID2 ,
CreatePolygons , CreatePolyedrs ) :
return self . editor . SewFreeBorders ( FirstNodeID1 , SecondNodeID1 , LastNodeID1 ,
FirstNodeID2 , SecondNodeID2 , LastNodeID2 ,
CreatePolygons , CreatePolyedrs )
2009-02-17 10:27:49 +05:00
## Sews conform free borders
2008-03-07 12:47:05 +05:00
# @return SMESH::Sew_Error
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2008-03-07 12:47:05 +05:00
def SewConformFreeBorders ( self , FirstNodeID1 , SecondNodeID1 , LastNodeID1 ,
FirstNodeID2 , SecondNodeID2 ) :
return self . editor . SewConformFreeBorders ( FirstNodeID1 , SecondNodeID1 , LastNodeID1 ,
FirstNodeID2 , SecondNodeID2 )
2009-02-17 10:27:49 +05:00
## Sews border to side
2008-03-07 12:47:05 +05:00
# @return SMESH::Sew_Error
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2008-03-07 12:47:05 +05:00
def SewBorderToSide ( self , FirstNodeIDOnFreeBorder , SecondNodeIDOnFreeBorder , LastNodeIDOnFreeBorder ,
FirstNodeIDOnSide , LastNodeIDOnSide , CreatePolygons , CreatePolyedrs ) :
return self . editor . SewBorderToSide ( FirstNodeIDOnFreeBorder , SecondNodeIDOnFreeBorder , LastNodeIDOnFreeBorder ,
FirstNodeIDOnSide , LastNodeIDOnSide , CreatePolygons , CreatePolyedrs )
2009-02-17 10:27:49 +05:00
## Sews two sides of a mesh. The nodes belonging to Side1 are
# merged with the nodes of elements of Side2.
# The number of elements in theSide1 and in theSide2 must be
# equal and they should have similar nodal connectivity.
# The nodes to merge should belong to side borders and
2008-03-07 12:47:05 +05:00
# the first node should be linked to the second.
# @return SMESH::Sew_Error
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_trsf
2008-03-07 12:47:05 +05:00
def SewSideElements ( self , IDsOfSide1Elements , IDsOfSide2Elements ,
NodeID1OfSide1ToMerge , NodeID1OfSide2ToMerge ,
NodeID2OfSide1ToMerge , NodeID2OfSide2ToMerge ) :
return self . editor . SewSideElements ( IDsOfSide1Elements , IDsOfSide2Elements ,
NodeID1OfSide1ToMerge , NodeID1OfSide2ToMerge ,
NodeID2OfSide1ToMerge , NodeID2OfSide2ToMerge )
2009-02-17 10:27:49 +05:00
## Sets new nodes for the given element.
2008-03-07 12:47:05 +05:00
# @param ide the element id
# @param newIDs nodes ids
2009-02-17 10:27:49 +05:00
# @return If the number of nodes does not correspond to the type of element - returns false
# @ingroup l2_modif_edit
2008-03-07 12:47:05 +05:00
def ChangeElemNodes ( self , ide , newIDs ) :
return self . editor . ChangeElemNodes ( ide , newIDs )
2009-02-17 10:27:49 +05:00
## If during the last operation of MeshEditor some nodes were
# created, this method returns the list of their IDs, \n
# if new nodes were not created - returns empty list
# @return the list of integer values (can be empty)
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def GetLastCreatedNodes ( self ) :
return self . editor . GetLastCreatedNodes ( )
2009-02-17 10:27:49 +05:00
## If during the last operation of MeshEditor some elements were
# created this method returns the list of their IDs, \n
# if new elements were not created - returns empty list
# @return the list of integer values (can be empty)
# @ingroup l1_auxiliary
2008-03-07 12:47:05 +05:00
def GetLastCreatedElems ( self ) :
return self . editor . GetLastCreatedElems ( )
2012-08-09 16:03:55 +06:00
2013-05-28 22:49:24 +06:00
## Clears sequences of nodes and elements created by mesh edition oparations
2013-05-16 22:55:14 +06:00
# @ingroup l1_auxiliary
def ClearLastCreated ( self ) :
self . editor . ClearLastCreated ( )
2013-05-28 22:49:24 +06:00
## Creates Duplicates given elements, i.e. creates new elements based on the
# same nodes as the given ones.
# @param theElements - container of elements to duplicate. It can be a Mesh,
2015-06-24 14:17:07 +05:00
# sub-mesh, group, filter or a list of element IDs. If \a theElements is
# a Mesh, elements of highest dimension are duplicated
# @param theGroupName - a name of group to contain the generated elements.
2013-05-28 22:49:24 +06:00
# If a group with such a name already exists, the new elements
# are added to the existng group, else a new group is created.
# If \a theGroupName is empty, new elements are not added
# in any group.
# @return a group where the new elements are added. None if theGroupName == "".
# @ingroup l2_modif_edit
def DoubleElements ( self , theElements , theGroupName = " " ) :
2013-08-07 20:06:39 +06:00
unRegister = genObjUnRegister ( )
2013-05-28 22:49:24 +06:00
if isinstance ( theElements , Mesh ) :
theElements = theElements . mesh
elif isinstance ( theElements , list ) :
theElements = self . GetIDSource ( theElements , SMESH . ALL )
2013-08-07 20:06:39 +06:00
unRegister . set ( theElements )
2013-05-28 22:49:24 +06:00
return self . editor . DoubleElements ( theElements , theGroupName )
## Creates a hole in a mesh by doubling the nodes of some particular elements
2009-02-17 10:27:49 +05:00
# @param theNodes identifiers of nodes to be doubled
2012-08-09 16:03:55 +06:00
# @param theModifiedElems identifiers of elements to be updated by the new (doubled)
# nodes. If list of element identifiers is empty then nodes are doubled but
2009-02-17 10:27:49 +05:00
# they not assigned to elements
# @return TRUE if operation has been completed successfully, FALSE otherwise
# @ingroup l2_modif_edit
def DoubleNodes ( self , theNodes , theModifiedElems ) :
return self . editor . DoubleNodes ( theNodes , theModifiedElems )
2012-08-09 16:03:55 +06:00
2009-02-17 10:27:49 +05:00
## Creates a hole in a mesh by doubling the nodes of some particular elements
# This method provided for convenience works as DoubleNodes() described above.
2012-08-09 16:03:55 +06:00
# @param theNodeId identifiers of node to be doubled
2009-02-17 10:27:49 +05:00
# @param theModifiedElems identifiers of elements to be updated
# @return TRUE if operation has been completed successfully, FALSE otherwise
# @ingroup l2_modif_edit
def DoubleNode ( self , theNodeId , theModifiedElems ) :
return self . editor . DoubleNode ( theNodeId , theModifiedElems )
2012-08-09 16:03:55 +06:00
2009-02-17 10:27:49 +05:00
## Creates a hole in a mesh by doubling the nodes of some particular elements
# This method provided for convenience works as DoubleNodes() described above.
# @param theNodes group of nodes to be doubled
# @param theModifiedElems group of elements to be updated.
2012-08-09 16:03:55 +06:00
# @param theMakeGroup forces the generation of a group containing new nodes.
# @return TRUE or a created group if operation has been completed successfully,
# FALSE or None otherwise
2009-02-17 10:27:49 +05:00
# @ingroup l2_modif_edit
2012-08-09 16:03:55 +06:00
def DoubleNodeGroup ( self , theNodes , theModifiedElems , theMakeGroup = False ) :
if theMakeGroup :
return self . editor . DoubleNodeGroupNew ( theNodes , theModifiedElems )
2009-02-17 10:27:49 +05:00
return self . editor . DoubleNodeGroup ( theNodes , theModifiedElems )
2012-08-09 16:03:55 +06:00
2009-02-17 10:27:49 +05:00
## Creates a hole in a mesh by doubling the nodes of some particular elements
# This method provided for convenience works as DoubleNodes() described above.
# @param theNodes list of groups of nodes to be doubled
# @param theModifiedElems list of groups of elements to be updated.
2012-08-09 16:03:55 +06:00
# @param theMakeGroup forces the generation of a group containing new nodes.
2009-02-17 10:27:49 +05:00
# @return TRUE if operation has been completed successfully, FALSE otherwise
# @ingroup l2_modif_edit
2012-08-09 16:03:55 +06:00
def DoubleNodeGroups ( self , theNodes , theModifiedElems , theMakeGroup = False ) :
if theMakeGroup :
return self . editor . DoubleNodeGroupsNew ( theNodes , theModifiedElems )
2009-02-17 10:27:49 +05:00
return self . editor . DoubleNodeGroups ( theNodes , theModifiedElems )
2012-08-09 16:03:55 +06:00
## Creates a hole in a mesh by doubling the nodes of some particular elements
# @param theElems - the list of elements (edges or faces) to be replicated
# The nodes for duplication could be found from these elements
# @param theNodesNot - list of nodes to NOT replicate
# @param theAffectedElems - the list of elements (cells and edges) to which the
# replicated nodes should be associated to.
# @return TRUE if operation has been completed successfully, FALSE otherwise
# @ingroup l2_modif_edit
def DoubleNodeElem ( self , theElems , theNodesNot , theAffectedElems ) :
return self . editor . DoubleNodeElem ( theElems , theNodesNot , theAffectedElems )
## Creates a hole in a mesh by doubling the nodes of some particular elements
# @param theElems - the list of elements (edges or faces) to be replicated
# The nodes for duplication could be found from these elements
# @param theNodesNot - list of nodes to NOT replicate
# @param theShape - shape to detect affected elements (element which geometric center
# located on or inside shape).
# The replicated nodes should be associated to affected elements.
# @return TRUE if operation has been completed successfully, FALSE otherwise
# @ingroup l2_modif_edit
def DoubleNodeElemInRegion ( self , theElems , theNodesNot , theShape ) :
return self . editor . DoubleNodeElemInRegion ( theElems , theNodesNot , theShape )
## Creates a hole in a mesh by doubling the nodes of some particular elements
# This method provided for convenience works as DoubleNodes() described above.
# @param theElems - group of of elements (edges or faces) to be replicated
# @param theNodesNot - group of nodes not to replicated
# @param theAffectedElems - group of elements to which the replicated nodes
# should be associated to.
# @param theMakeGroup forces the generation of a group containing new elements.
# @param theMakeNodeGroup forces the generation of a group containing new nodes.
# @return TRUE or created groups (one or two) if operation has been completed successfully,
# FALSE or None otherwise
# @ingroup l2_modif_edit
def DoubleNodeElemGroup ( self , theElems , theNodesNot , theAffectedElems ,
theMakeGroup = False , theMakeNodeGroup = False ) :
if theMakeGroup or theMakeNodeGroup :
twoGroups = self . editor . DoubleNodeElemGroup2New ( theElems , theNodesNot ,
theAffectedElems ,
theMakeGroup , theMakeNodeGroup )
if theMakeGroup and theMakeNodeGroup :
return twoGroups
else :
return twoGroups [ int ( theMakeNodeGroup ) ]
return self . editor . DoubleNodeElemGroup ( theElems , theNodesNot , theAffectedElems )
## Creates a hole in a mesh by doubling the nodes of some particular elements
# This method provided for convenience works as DoubleNodes() described above.
# @param theElems - group of of elements (edges or faces) to be replicated
# @param theNodesNot - group of nodes not to replicated
# @param theShape - shape to detect affected elements (element which geometric center
# located on or inside shape).
# The replicated nodes should be associated to affected elements.
# @ingroup l2_modif_edit
def DoubleNodeElemGroupInRegion ( self , theElems , theNodesNot , theShape ) :
return self . editor . DoubleNodeElemGroupInRegion ( theElems , theNodesNot , theShape )
## Creates a hole in a mesh by doubling the nodes of some particular elements
# This method provided for convenience works as DoubleNodes() described above.
# @param theElems - list of groups of elements (edges or faces) to be replicated
# @param theNodesNot - list of groups of nodes not to replicated
# @param theAffectedElems - group of elements to which the replicated nodes
# should be associated to.
# @param theMakeGroup forces the generation of a group containing new elements.
# @param theMakeNodeGroup forces the generation of a group containing new nodes.
# @return TRUE or created groups (one or two) if operation has been completed successfully,
# FALSE or None otherwise
# @ingroup l2_modif_edit
def DoubleNodeElemGroups ( self , theElems , theNodesNot , theAffectedElems ,
theMakeGroup = False , theMakeNodeGroup = False ) :
if theMakeGroup or theMakeNodeGroup :
twoGroups = self . editor . DoubleNodeElemGroups2New ( theElems , theNodesNot ,
theAffectedElems ,
theMakeGroup , theMakeNodeGroup )
if theMakeGroup and theMakeNodeGroup :
return twoGroups
else :
return twoGroups [ int ( theMakeNodeGroup ) ]
return self . editor . DoubleNodeElemGroups ( theElems , theNodesNot , theAffectedElems )
## Creates a hole in a mesh by doubling the nodes of some particular elements
# This method provided for convenience works as DoubleNodes() described above.
# @param theElems - list of groups of elements (edges or faces) to be replicated
# @param theNodesNot - list of groups of nodes not to replicated
# @param theShape - shape to detect affected elements (element which geometric center
# located on or inside shape).
# The replicated nodes should be associated to affected elements.
# @return TRUE if operation has been completed successfully, FALSE otherwise
# @ingroup l2_modif_edit
def DoubleNodeElemGroupsInRegion ( self , theElems , theNodesNot , theShape ) :
return self . editor . DoubleNodeElemGroupsInRegion ( theElems , theNodesNot , theShape )
2012-10-08 17:56:59 +06:00
## Identify the elements that will be affected by node duplication (actual duplication is not performed.
# This method is the first step of DoubleNodeElemGroupsInRegion.
# @param theElems - list of groups of elements (edges or faces) to be replicated
# @param theNodesNot - list of groups of nodes not to replicated
# @param theShape - shape to detect affected elements (element which geometric center
# located on or inside shape).
# The replicated nodes should be associated to affected elements.
# @return groups of affected elements
# @ingroup l2_modif_edit
def AffectedElemGroupsInRegion ( self , theElems , theNodesNot , theShape ) :
return self . editor . AffectedElemGroupsInRegion ( theElems , theNodesNot , theShape )
2012-08-09 16:03:55 +06:00
## Double nodes on shared faces between groups of volumes and create flat elements on demand.
# The list of groups must describe a partition of the mesh volumes.
# The nodes of the internal faces at the boundaries of the groups are doubled.
# In option, the internal faces are replaced by flat elements.
# Triangles are transformed in prisms, and quadrangles in hexahedrons.
# @param theDomains - list of groups of volumes
# @param createJointElems - if TRUE, create the elements
2014-03-19 20:29:49 +06:00
# @param onAllBoundaries - if TRUE, the nodes and elements are also created on
# the boundary between \a theDomains and the rest mesh
2012-08-09 16:03:55 +06:00
# @return TRUE if operation has been completed successfully, FALSE otherwise
2014-03-19 20:29:49 +06:00
def DoubleNodesOnGroupBoundaries ( self , theDomains , createJointElems , onAllBoundaries = False ) :
return self . editor . DoubleNodesOnGroupBoundaries ( theDomains , createJointElems , onAllBoundaries )
2012-08-09 16:03:55 +06:00
## Double nodes on some external faces and create flat elements.
# Flat elements are mainly used by some types of mechanic calculations.
#
# Each group of the list must be constituted of faces.
# Triangles are transformed in prisms, and quadrangles in hexahedrons.
# @param theGroupsOfFaces - list of groups of faces
# @return TRUE if operation has been completed successfully, FALSE otherwise
def CreateFlatElementsOnFacesGroups ( self , theGroupsOfFaces ) :
return self . editor . CreateFlatElementsOnFacesGroups ( theGroupsOfFaces )
2012-10-08 17:56:59 +06:00
## identify all the elements around a geom shape, get the faces delimiting the hole
#
def CreateHoleSkin ( self , radius , theShape , groupName , theNodesCoords ) :
return self . editor . CreateHoleSkin ( radius , theShape , groupName , theNodesCoords )
2012-08-09 16:03:55 +06:00
2012-12-13 17:41:29 +06:00
def _getFunctor ( self , funcType ) :
fn = self . functors [ funcType . _v ]
if not fn :
fn = self . smeshpyD . GetFunctor ( funcType )
fn . SetMesh ( self . mesh )
self . functors [ funcType . _v ] = fn
return fn
2015-03-17 22:40:17 +05:00
## Returns value of a functor for a given element
# @param funcType an item of SMESH.FunctorType enum
# @param elemId element or node ID
# @param isElem @a elemId is ID of element or node
# @return the functor value or zero in case of invalid arguments
def FunctorValue ( self , funcType , elemId , isElem = True ) :
2012-12-13 17:41:29 +06:00
fn = self . _getFunctor ( funcType )
2015-03-17 22:40:17 +05:00
if fn . GetElementType ( ) == self . GetElementType ( elemId , isElem ) :
2012-08-09 16:03:55 +06:00
val = fn . GetValue ( elemId )
else :
val = 0
return val
2013-08-20 19:48:54 +06:00
## Get length of 1D element or sum of lengths of all 1D mesh elements
2013-08-08 21:17:00 +06:00
# @param elemId mesh element ID (if not defined - sum of length of all 1D elements will be calculated)
2013-08-20 19:48:54 +06:00
# @return element's length value if \a elemId is specified or sum of all 1D mesh elements' lengths otherwise
2012-08-09 16:03:55 +06:00
# @ingroup l1_measurements
2013-08-08 21:17:00 +06:00
def GetLength ( self , elemId = None ) :
length = 0
if elemId == None :
2013-08-20 19:48:54 +06:00
length = self . smeshpyD . GetLength ( self )
2013-08-08 21:17:00 +06:00
else :
2015-03-17 22:40:17 +05:00
length = self . FunctorValue ( SMESH . FT_Length , elemId )
2013-08-08 21:17:00 +06:00
return length
2012-08-09 16:03:55 +06:00
2013-08-20 19:48:54 +06:00
## Get area of 2D element or sum of areas of all 2D mesh elements
# @param elemId mesh element ID (if not defined - sum of areas of all 2D elements will be calculated)
# @return element's area value if \a elemId is specified or sum of all 2D mesh elements' areas otherwise
2012-08-09 16:03:55 +06:00
# @ingroup l1_measurements
2013-08-08 21:17:00 +06:00
def GetArea ( self , elemId = None ) :
area = 0
if elemId == None :
2013-08-20 19:48:54 +06:00
area = self . smeshpyD . GetArea ( self )
2013-08-08 21:17:00 +06:00
else :
2015-03-17 22:40:17 +05:00
area = self . FunctorValue ( SMESH . FT_Area , elemId )
2013-08-08 21:17:00 +06:00
return area
2012-08-09 16:03:55 +06:00
2013-08-20 19:48:54 +06:00
## Get volume of 3D element or sum of volumes of all 3D mesh elements
# @param elemId mesh element ID (if not defined - sum of volumes of all 3D elements will be calculated)
# @return element's volume value if \a elemId is specified or sum of all 3D mesh elements' volumes otherwise
2012-08-09 16:03:55 +06:00
# @ingroup l1_measurements
2013-08-08 21:17:00 +06:00
def GetVolume ( self , elemId = None ) :
volume = 0
if elemId == None :
2013-08-20 19:48:54 +06:00
volume = self . smeshpyD . GetVolume ( self )
2013-08-08 21:17:00 +06:00
else :
2015-03-17 22:40:17 +05:00
volume = self . FunctorValue ( SMESH . FT_Volume3D , elemId )
2013-08-08 21:17:00 +06:00
return volume
2012-08-09 16:03:55 +06:00
## Get maximum element length.
# @param elemId mesh element ID
# @return element's maximum length value
# @ingroup l1_measurements
def GetMaxElementLength ( self , elemId ) :
if self . GetElementType ( elemId , True ) == SMESH . VOLUME :
ftype = SMESH . FT_MaxElementLength3D
else :
ftype = SMESH . FT_MaxElementLength2D
2015-03-17 22:40:17 +05:00
return self . FunctorValue ( ftype , elemId )
2012-08-09 16:03:55 +06:00
## Get aspect ratio of 2D or 3D element.
# @param elemId mesh element ID
# @return element's aspect ratio value
# @ingroup l1_measurements
def GetAspectRatio ( self , elemId ) :
if self . GetElementType ( elemId , True ) == SMESH . VOLUME :
ftype = SMESH . FT_AspectRatio3D
else :
ftype = SMESH . FT_AspectRatio
2015-03-17 22:40:17 +05:00
return self . FunctorValue ( ftype , elemId )
2012-08-09 16:03:55 +06:00
## Get warping angle of 2D element.
# @param elemId mesh element ID
# @return element's warping angle value
# @ingroup l1_measurements
def GetWarping ( self , elemId ) :
2015-03-17 22:40:17 +05:00
return self . FunctorValue ( SMESH . FT_Warping , elemId )
2012-08-09 16:03:55 +06:00
## Get minimum angle of 2D element.
# @param elemId mesh element ID
# @return element's minimum angle value
# @ingroup l1_measurements
def GetMinimumAngle ( self , elemId ) :
2015-03-17 22:40:17 +05:00
return self . FunctorValue ( SMESH . FT_MinimumAngle , elemId )
2012-08-09 16:03:55 +06:00
## Get taper of 2D element.
# @param elemId mesh element ID
# @return element's taper value
# @ingroup l1_measurements
def GetTaper ( self , elemId ) :
2015-03-17 22:40:17 +05:00
return self . FunctorValue ( SMESH . FT_Taper , elemId )
2012-08-09 16:03:55 +06:00
## Get skew of 2D element.
# @param elemId mesh element ID
# @return element's skew value
# @ingroup l1_measurements
def GetSkew ( self , elemId ) :
2015-03-17 22:40:17 +05:00
return self . FunctorValue ( SMESH . FT_Skew , elemId )
2012-08-09 16:03:55 +06:00
2014-04-17 17:56:40 +06:00
## Return minimal and maximal value of a given functor.
# @param funType a functor type, an item of SMESH.FunctorType enum
# (one of SMESH.FunctorType._items)
2014-05-30 22:24:08 +06:00
# @param meshPart a part of mesh (group, sub-mesh) to treat
2014-04-17 17:56:40 +06:00
# @return tuple (min,max)
# @ingroup l1_measurements
2014-05-30 22:24:08 +06:00
def GetMinMax ( self , funType , meshPart = None ) :
unRegister = genObjUnRegister ( )
if isinstance ( meshPart , list ) :
meshPart = self . GetIDSource ( meshPart , SMESH . ALL )
unRegister . set ( meshPart )
if isinstance ( meshPart , Mesh ) :
meshPart = meshPart . mesh
2014-04-17 17:56:40 +06:00
fun = self . _getFunctor ( funType )
if fun :
2014-05-30 22:24:08 +06:00
if meshPart :
hist = fun . GetLocalHistogram ( 1 , False , meshPart )
else :
hist = fun . GetHistogram ( 1 , False )
2014-04-17 17:56:40 +06:00
if hist :
return hist [ 0 ] . min , hist [ 0 ] . max
return None
2012-10-08 17:56:59 +06:00
pass # end of Mesh class
2014-02-05 14:08:10 +06:00
2015-03-19 19:08:42 +05:00
## class used to add to SMESH_MeshEditor methods removed from its CORBA API
#
class meshEditor ( SMESH . _objref_SMESH_MeshEditor ) :
def __init__ ( self ) :
2015-03-19 20:26:38 +05:00
SMESH . _objref_SMESH_MeshEditor . __init__ ( self )
2015-03-19 19:08:42 +05:00
self . mesh = None
def __getattr__ ( self , name ) : # method called if an attribute not found
2015-03-19 20:26:38 +05:00
if not self . mesh : # look for name() method in Mesh class
2015-03-19 19:08:42 +05:00
self . mesh = Mesh ( None , None , SMESH . _objref_SMESH_MeshEditor . GetMesh ( self ) )
if hasattr ( self . mesh , name ) :
return getattr ( self . mesh , name )
if name == " ExtrusionAlongPathObjX " :
return getattr ( self . mesh , " ExtrusionAlongPathX " )
2015-03-19 20:26:38 +05:00
print name , " NOT FOUND "
2015-03-19 19:08:42 +05:00
return None
pass
omniORB . registerObjref ( SMESH . _objref_SMESH_MeshEditor . _NP_RepositoryId , meshEditor )
2012-10-08 17:56:59 +06:00
## Helper class for wrapping of SMESH.SMESH_Pattern CORBA class
2008-03-07 12:47:05 +05:00
#
2012-08-09 16:03:55 +06:00
class Pattern ( SMESH . _objref_SMESH_Pattern ) :
2008-03-07 12:47:05 +05:00
2012-08-09 16:03:55 +06:00
def ApplyToMeshFaces ( self , theMesh , theFacesIDs , theNodeIndexOnKeyPoint1 , theReverse ) :
decrFun = lambda i : i - 1
theNodeIndexOnKeyPoint1 , Parameters , hasVars = ParseParameters ( theNodeIndexOnKeyPoint1 , decrFun )
theMesh . SetParameters ( Parameters )
return SMESH . _objref_SMESH_Pattern . ApplyToMeshFaces ( self , theMesh , theFacesIDs , theNodeIndexOnKeyPoint1 , theReverse )
2008-03-07 12:47:05 +05:00
2012-08-09 16:03:55 +06:00
def ApplyToHexahedrons ( self , theMesh , theVolumesIDs , theNode000Index , theNode001Index ) :
decrFun = lambda i : i - 1
theNode000Index , theNode001Index , Parameters , hasVars = ParseParameters ( theNode000Index , theNode001Index , decrFun )
theMesh . SetParameters ( Parameters )
return SMESH . _objref_SMESH_Pattern . ApplyToHexahedrons ( self , theMesh , theVolumesIDs , theNode000Index , theNode001Index )
2008-03-07 12:47:05 +05:00
2012-10-08 17:56:59 +06:00
# Registering the new proxy for Pattern
2012-08-09 16:03:55 +06:00
omniORB . registerObjref ( SMESH . _objref_SMESH_Pattern . _NP_RepositoryId , Pattern )
2008-03-07 12:47:05 +05:00
2012-08-09 16:03:55 +06:00
## Private class used to bind methods creating algorithms to the class Mesh
2008-03-07 12:47:05 +05:00
#
2012-08-09 16:03:55 +06:00
class algoCreator :
def __init__ ( self ) :
self . mesh = None
self . defaultAlgoType = " "
self . algoTypeToClass = { }
# Stores a python class of algorithm
def add ( self , algoClass ) :
if type ( algoClass ) . __name__ == ' classobj ' and \
hasattr ( algoClass , " algoType " ) :
self . algoTypeToClass [ algoClass . algoType ] = algoClass
if not self . defaultAlgoType and \
hasattr ( algoClass , " isDefault " ) and algoClass . isDefault :
self . defaultAlgoType = algoClass . algoType
#print "Add",algoClass.algoType, "dflt",self.defaultAlgoType
# creates a copy of self and assign mesh to the copy
def copy ( self , mesh ) :
other = algoCreator ( )
other . defaultAlgoType = self . defaultAlgoType
other . algoTypeToClass = self . algoTypeToClass
other . mesh = mesh
return other
# creates an instance of algorithm
def __call__ ( self , algo = " " , geom = 0 , * args ) :
algoType = self . defaultAlgoType
for arg in args + ( algo , geom ) :
2013-04-04 13:08:19 +06:00
if isinstance ( arg , geomBuilder . GEOM . _objref_GEOM_Object ) :
2012-08-09 16:03:55 +06:00
geom = arg
if isinstance ( arg , str ) and arg :
algoType = arg
if not algoType and self . algoTypeToClass :
algoType = self . algoTypeToClass . keys ( ) [ 0 ]
if self . algoTypeToClass . has_key ( algoType ) :
#print "Create algo",algoType
return self . algoTypeToClass [ algoType ] ( self . mesh , geom )
raise RuntimeError , " No class found for algo type %s " % algoType
2009-02-17 10:27:49 +05:00
return None
2012-08-09 16:03:55 +06:00
# Private class used to substitute and store variable parameters of hypotheses.
2012-10-08 17:56:59 +06:00
#
2012-08-09 16:03:55 +06:00
class hypMethodWrapper :
def __init__ ( self , hyp , method ) :
self . hyp = hyp
self . method = method
#print "REBIND:", method.__name__
return
2009-02-17 10:27:49 +05:00
2012-08-09 16:03:55 +06:00
# call a method of hypothesis with calling SetVarParameter() before
def __call__ ( self , * args ) :
if not args :
return self . method ( self . hyp , * args ) # hypothesis method with no args
2009-02-17 10:27:49 +05:00
2012-08-09 16:03:55 +06:00
#print "MethWrapper.__call__",self.method.__name__, args
try :
parsed = ParseParameters ( * args ) # replace variables with their values
self . hyp . SetVarParameter ( parsed [ - 2 ] , self . method . __name__ )
result = self . method ( self . hyp , * parsed [ : - 2 ] ) # call hypothesis method
except omniORB . CORBA . BAD_PARAM : # raised by hypothesis method call
# maybe there is a replaced string arg which is not variable
result = self . method ( self . hyp , * args )
except ValueError , detail : # raised by ParseParameters()
try :
result = self . method ( self . hyp , * args )
except omniORB . CORBA . BAD_PARAM :
raise ValueError , detail # wrong variable name
2009-02-17 10:27:49 +05:00
2012-08-09 16:03:55 +06:00
return result
2013-08-07 20:06:39 +06:00
pass
# A helper class that call UnRegister() of SALOME.GenericObj'es stored in it
class genObjUnRegister :
def __init__ ( self , genObj = None ) :
self . genObjList = [ ]
self . set ( genObj )
return
def set ( self , genObj ) :
" Store one or a list of of SALOME.GenericObj ' es "
if isinstance ( genObj , list ) :
self . genObjList . extend ( genObj )
else :
self . genObjList . append ( genObj )
return
def __del__ ( self ) :
for genObj in self . genObjList :
if genObj and hasattr ( genObj , " UnRegister " ) :
genObj . UnRegister ( )
2013-04-04 13:08:19 +06:00
for pluginName in os . environ [ " SMESH_MeshersList " ] . split ( " : " ) :
#
#print "pluginName: ", pluginName
pluginBuilderName = pluginName + " Builder "
try :
exec ( " from salome. %s . %s import * " % ( pluginName , pluginBuilderName ) )
except Exception , e :
2013-12-18 21:08:18 +06:00
from salome_utils import verbose
if verbose ( ) : print " Exception while loading %s : %s " % ( pluginBuilderName , e )
2013-04-04 13:08:19 +06:00
continue
exec ( " from salome. %s import %s " % ( pluginName , pluginBuilderName ) )
plugin = eval ( pluginBuilderName )
#print " plugin:" , str(plugin)
# add methods creating algorithms to Mesh
for k in dir ( plugin ) :
if k [ 0 ] == ' _ ' : continue
algo = getattr ( plugin , k )
#print " algo:", str(algo)
if type ( algo ) . __name__ == ' classobj ' and hasattr ( algo , " meshMethod " ) :
#print " meshMethod:" , str(algo.meshMethod)
if not hasattr ( Mesh , algo . meshMethod ) :
setattr ( Mesh , algo . meshMethod , algoCreator ( ) )
pass
getattr ( Mesh , algo . meshMethod ) . add ( algo )
pass
pass
pass
del pluginName