mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-12 00:29:17 +05:00
34 lines
709 B
Python
34 lines
709 B
Python
# Volume
|
|
|
|
import SMESH_mechanic_tetra
|
|
import SMESH
|
|
|
|
smesh = SMESH_mechanic_tetra.smesh
|
|
mesh = SMESH_mechanic_tetra.mesh
|
|
salome = SMESH_mechanic_tetra.salome
|
|
|
|
# Criterion : VOLUME < 7.
|
|
volume_margin = 7.
|
|
|
|
aFilter = smesh.GetFilter(SMESH.VOLUME, SMESH.FT_Volume3D, SMESH.FT_LessThan, volume_margin)
|
|
|
|
anIds = mesh.GetIdsFromFilter(aFilter)
|
|
|
|
# print the result
|
|
print("")
|
|
print("Criterion: Volume < ", volume_margin, " 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.VOLUME, "Volume < " + repr(volume_margin))
|
|
|
|
aGroup.Add(anIds)
|
|
|
|
salome.sg.updateObjBrowser(True)
|