🎉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

How to output the node numbers of elements in Hypermesh?

User: "LIMING LI_21655"
Altair Community Member
Updated by LIMING LI_21655

Hi,everyone!

I have a text with the element numbers stored in it.

How do I query and output the node number of each element?

Is there any convenient way?

Thanks in advance.

Find more posts tagged with

Sort by:
1 - 1 of 11
    User: "QuyNguyenDai"
    Altair Community Member
    Updated by QuyNguyenDai

    Here's my code. Hope give you some idea:

    set elems [list 1 2 3] foreach eid $elems { 	set nodes [hm_getvalue elems id=$eid dataname=nodes] 	puts [format "E= %d; Nodes= %s" $eid $nodes] }