Create Sidesets by grouping all surfaces on the z face

I have a geometry/mesh (see below) that has multiple surfaces on the Z face.

image

How do I group all of them into a sideset, without having to manually select them ? Is there a way to select all surfaces using the face normal ?

This is to apply BCs in FEM simulation.

Hi @aeromechie,

in this case you could make use of the extended parsing in the command line.

sideset 1 add surface all with z_coord = 0

This would add all surfaces with z coord = 0 to a sideset. For more selection criterias take a look into the documentation of the extended parsing syntax.

https://coreform.com/cubit_help/cubithelp.htm#t=environment_control%2Fentity_selection_and_filtering%2Fextended_entity_specification.htm

Fantastic, thanks! It worked, and I didnt know this option before