smesh/doc/examples/quality_controls_ex20.py

26 lines
573 B
Python
Raw Normal View History

2013-02-12 20:37:44 +06:00
# Aspect Ratio 3D
2022-04-11 18:28:01 +05:00
from mechanic import *
2013-02-12 20:37:44 +06:00
# Criterion : ASPECT RATIO 3D > 4.5
ar_margin = 4.5
2022-04-11 18:28:01 +05:00
aFilter = smesh_builder.GetFilter(SMESH.VOLUME, SMESH.FT_AspectRatio3D, SMESH.FT_MoreThan, ar_margin)
2013-02-12 20:37:44 +06:00
anIds = mesh.GetIdsFromFilter(aFilter)
# print the result
2017-03-20 17:27:30 +05:00
print("Criterion: Aspect Ratio 3D > ", ar_margin, " Nb = ", len(anIds))
2013-02-12 20:37:44 +06:00
j = 1
for i in range(len(anIds)):
2017-03-20 17:27:30 +05:00
if j > 20: j = 1; print("")
print(anIds[i], end=' ')
2013-02-12 20:37:44 +06:00
j = j + 1
pass
2017-03-20 17:27:30 +05:00
print("")
2013-02-12 20:37:44 +06:00
# create a group
2017-03-20 17:27:30 +05:00
aGroup = mesh.CreateEmptyGroup(SMESH.VOLUME, "Aspect Ratio 3D > " + repr(ar_margin))
2013-02-12 20:37:44 +06:00
aGroup.Add(anIds)