2013-02-12 20:37:44 +06:00
|
|
|
# Free Edges
|
|
|
|
|
2022-04-11 18:28:01 +05:00
|
|
|
from mechanic import *
|
2013-02-12 20:37:44 +06:00
|
|
|
|
2022-04-11 18:28:01 +05:00
|
|
|
aFilterMgr = smesh_builder.CreateFilterManager()
|
2013-02-12 20:37:44 +06:00
|
|
|
|
|
|
|
# Remove some elements to obtain free edges
|
|
|
|
# Criterion : AREA > 95.
|
|
|
|
area_margin = 95.
|
|
|
|
|
2022-04-11 18:28:01 +05:00
|
|
|
aFilter = smesh_builder.GetFilter(SMESH.FACE, SMESH.FT_Area, SMESH.FT_MoreThan, area_margin)
|
2013-02-12 20:37:44 +06:00
|
|
|
|
|
|
|
anIds = mesh.GetIdsFromFilter(aFilter)
|
|
|
|
|
|
|
|
mesh.RemoveElements(anIds)
|
|
|
|
|
|
|
|
# Criterion : Free Edges
|
|
|
|
aBorders = mesh.GetFreeBorders()
|
|
|
|
|
|
|
|
# create groups
|
2013-04-04 13:08:19 +06:00
|
|
|
aGroupF = mesh.CreateEmptyGroup(SMESH.FACE, "Faces with free edges")
|
|
|
|
aGroupN = mesh.CreateEmptyGroup(SMESH.NODE, "Nodes on free edges")
|
2013-02-12 20:37:44 +06:00
|
|
|
|
|
|
|
# fill groups with elements, corresponding to the criterion
|
2017-03-20 17:27:30 +05:00
|
|
|
print("")
|
|
|
|
print("Criterion: Free edges Nb = ", len(aBorders))
|
2013-02-12 20:37:44 +06:00
|
|
|
for i in range(len(aBorders)):
|
|
|
|
aBorder = aBorders[i]
|
2017-03-20 17:27:30 +05:00
|
|
|
print("Face # ", aBorder.myElemId, " : Edge between nodes (", end=' ')
|
|
|
|
print(aBorder.myPnt1, ", ", aBorder.myPnt2, ")")
|
2013-02-12 20:37:44 +06:00
|
|
|
|
|
|
|
aGroupF.Add([aBorder.myElemId])
|
|
|
|
aGroupN.Add([aBorder.myPnt1, aBorder.myPnt2])
|