mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2024-11-12 00:29:17 +05:00
23 lines
603 B
Python
23 lines
603 B
Python
# Create a Standalone Group
|
|
|
|
import SMESH_mechanic
|
|
import SMESH
|
|
|
|
smesh = SMESH_mechanic.smesh
|
|
mesh = SMESH_mechanic.mesh
|
|
salome = SMESH_mechanic.salome
|
|
|
|
# Get ids of all faces with area > 100
|
|
aFilter = smesh.GetFilter(SMESH.FACE, SMESH.FT_Area, SMESH.FT_MoreThan, 100.)
|
|
|
|
anIds = mesh.GetIdsFromFilter(aFilter)
|
|
|
|
# create a group consisting of faces with area > 100
|
|
aGroup1 = mesh.MakeGroupByIds("Area > 100", SMESH.FACE, anIds)
|
|
|
|
# create a group that contains all nodes from the mesh
|
|
aGroup2 = mesh.CreateEmptyGroup(SMESH.NODE, "all nodes")
|
|
aGroup2.AddFrom(mesh.mesh)
|
|
|
|
salome.sg.updateObjBrowser(1)
|