Salome HOME
bos #17015 [CEA 17008] Body fitting with Viscous Layers for CFD meshing
[modules/smesh.git] / doc / examples / filters_ex25.py
1 # Over-constrained volumes
2
3 # create mesh
4 from mechanic import *
5
6 # get all over-constrained volumes
7 filter = smesh_builder.GetFilter(SMESH.VOLUME, SMESH.FT_OverConstrainedVolume)
8 ids = mesh.GetIdsFromFilter(filter)
9 print("Over-constrained volumes:", ids)