Salome HOME
bos #29171 Refactor testing procedure
[modules/smesh.git] / doc / examples / quality_controls_ex19.py
diff --git a/doc/examples/quality_controls_ex19.py b/doc/examples/quality_controls_ex19.py
new file mode 100644 (file)
index 0000000..daf2f83
--- /dev/null
@@ -0,0 +1,24 @@
+# Element Diameter 2D
+
+from mechanic import *
+
+# Criterion : ELEMENT DIAMETER 2D > 10
+mel_2d_margin = 10
+
+aFilter = smesh_builder.GetFilter(SMESH.FACE, SMESH.FT_MaxElementLength2D, SMESH.FT_MoreThan, mel_2d_margin)
+
+anIds = mesh.GetIdsFromFilter(aFilter) 
+
+# print the result
+print("Criterion: Element Diameter 2D Ratio > ", mel_2d_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.FACE, "Element Diameter 2D > " + repr(mel_2d_margin))
+aGroup.Add(anIds)