Find duplicate Surfaces
Hi all,
I am trying to find duplicate surfaces in a model.
I couldn't find any Tcl command for searching duplicate surfaces, however there is following Tcl command from HyperMesh Desktop Reference Guide which searches faces:
*createmark faces 1 all
*facepreviewduplicates 1 0.1
In the status message bar, the message '5 faces are duplicate' appears.
However my target is to find out the pairs of duplicate surfaces.
Is it possible using HyperMesh Tcl?
Best regards,
Mubeen
Find more posts tagged with
Hello,
Can you please try this
*createmark surfs 1 all
*surfacemark_duplicate_check 1 1 4 0 0 0.1
hm_getmark surfs 1
thankyou
Hi,
thanks for the valuable information.
I tried this Tcl command. I have surfaces 1,2,3,4,5,6 in model 1.
Then I have imported another geometry model with surfaces 7,8,9,10,11,12 ..,15.
Surfaces 1-4 and 7-10 are identical, but these commands (*surfacemark_duplicate_check) returned
7 8 9 10
only.
I checked the documentation for this command, but couldn't find any reason why it is not returning the duplicates of these 7 8 9 10 surfaces.
Hello,
Can you please try this
*createmark surfs 1 all
*surfacemark_duplicate_check 1 1 4 0 0 0.1
hm_getmark surfs 1
thankyou