Hi,
Is there a python command that check whether all the internal surfaces have been successfully merged?
I have been using ‘draw surface all with not is_merged’ and visually inspecting the internal surfaces.
Thanks
Hi,
Is there a python command that check whether all the internal surfaces have been successfully merged?
I have been using ‘draw surface all with not is_merged’ and visually inspecting the internal surfaces.
Thanks
You can use overlap to find mergable surfaces that aren’t merged.
cubit.cmd('find overlap')
This puts the surface pair in a group called ‘surf_overlap’ and you can get the entity IDs in the group.
Thank you.