🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

Element projection

User: "sagar_20757"
Altair Community Member
Updated by sagar_20757

Hi,

After generating mesh for any assembly, it will be very difficult to check which elements are not projcted to surface.

This is even more difficult to check when Geometry and CDB files are imported seperately.

Is there is any script or a method to hilight the elements/node which are not on the surfaces/not projected to surfaces.
 

Regards,

Sagar

Find more posts tagged with

Sort by:
1 - 4 of 41
    User: "tinh"
    Altair Community Member
    Updated by tinh

    If you mesh it by automesh, there is a way:

    Shift F2 >add temp nodes for all

    Click button 'nodes'>by geom>surfs, select all surfs> add to selection> clear

    Remained nodes are not projected to surfs.

     

    If you import mesh & cad separatedly, you must have a script to check distance from each node to cad surfs.

    Roughly, try pulldown menu Mesh>Check>Elements>Comparison

     

     

     

    User: "sagar_20757"
    Altair Community Member
    OP
    Updated by sagar_20757

    For option 2: is it possible to develop a script for same purpose i.e importing CAD and mesh separately.(since am new to scripting) 

    User: "tinh"
    Altair Community Member
    Updated by tinh

    Yes, make a loop for each node id, use hm_measureshortestdistance to calculate distance to surfs then mark yellow it if d > a certain value

    User: "sagar_20757"
    Altair Community Member
    OP
    Updated by sagar_20757

    Thanks