TCL Command to get dependent nodes of RBE2 Elements

sanket_patil
sanket_patil Altair Community Member
edited October 2020 in Community Q&A

Hello Everyone,

 

is there any command to get dependent nodes of RBE2 elements?

 

Regards,

Sanket

Answers

  • Q.Nguyen-Dai
    Q.Nguyen-Dai Altair Community Member
    edited March 2020

    Try:

     set dependent_Nodes [hm_nodelist $eid]

     

  • DEEPAKSREEDHARK
    DEEPAKSREEDHARK Altair Community Member
    edited March 2020

    Hi @sanket_patil

     

    First query all node ids. Now one of this is the independent node

     

    hm_getvalue elems id=6804209 dataname=nodes
    807424 795935 795947 795965 807150 807423 807428 807518 807521

     

    Query the independent node:
    hm_getvalue elems id=6804209 dataname=independentnode.id
    807424
     

    Now you can remove the independent node from the list and take the rest of'em. Those are your dependent nodes!

  • sanket_patil
    sanket_patil Altair Community Member
    edited April 2020

    @DEEPAKSREEDHARKThank yo so much for the help :)

     

    Regards,

    Sanket