mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-12 00:29:17 +05:00
33 lines
685 B
Python
33 lines
685 B
Python
# Minimum Angle
|
|
|
|
import SMESH_mechanic
|
|
import SMESH
|
|
|
|
smesh = SMESH_mechanic.smesh
|
|
mesh = SMESH_mechanic.mesh
|
|
salome = SMESH_mechanic.salome
|
|
|
|
# Criterion : MINIMUM ANGLE < 35.
|
|
min_angle = 35.
|
|
|
|
aFilter = smesh.GetFilter(SMESH.FACE, SMESH.FT_MinimumAngle, SMESH.FT_LessThan, min_angle)
|
|
|
|
anIds = mesh.GetIdsFromFilter(aFilter)
|
|
|
|
# print the result
|
|
print("Criterion: Minimum Angle < ", min_angle, " Nb = ", len(anIds))
|
|
j = 1
|
|
for i in range(len(anIds)):
|
|
if j > 20: j = 1; print("")
|
|
print(anIds[i], end=' ')
|
|
j = j + 1
|
|
pass
|
|
print("")
|
|
|
|
# create a group
|
|
aGroup = mesh.CreateEmptyGroup(SMESH.FACE, "Minimum Angle < " + repr(min_angle))
|
|
|
|
aGroup.Add(anIds)
|
|
|
|
salome.sg.updateObjBrowser()
|