smesh/doc/examples/quality_controls_ex19.py

25 lines
609 B
Python
Raw Normal View History

2013-02-12 20:37:44 +06:00
# Element Diameter 2D
2022-04-11 18:28:01 +05:00
from mechanic import *
2013-02-12 20:37:44 +06:00
# Criterion : ELEMENT DIAMETER 2D > 10
mel_2d_margin = 10
2022-04-11 18:28:01 +05:00
aFilter = smesh_builder.GetFilter(SMESH.FACE, SMESH.FT_MaxElementLength2D, SMESH.FT_MoreThan, mel_2d_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: Element Diameter 2D Ratio > ", mel_2d_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.FACE, "Element Diameter 2D > " + repr(mel_2d_margin))
2013-02-12 20:37:44 +06:00
aGroup.Add(anIds)