🎉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

get component name from a line or surface

User: "Altair Forum User"
Altair Employee
Updated by Altair Forum User

hi, there!

how can I get the component name of a line or surface using tcl? is there a hm function that I could use.

example. If I select a surface with its number, how I could get its component name or ID

thanks!

Find more posts tagged with

Sort by:
1 - 8 of 81
    User: "Altair Forum User"
    Altair Employee
    OP
    Updated by Altair Forum User

    Try this:

    *createmark surfaces 1 999

    (where '999' is the id of the surface)

    to get the component id use then:

    hm_getentityvalue surfaces 1 'collector.id' 0

    to get the component name use then:

    hm_getentityvalue surfaces 1 'collector.name' 1

    Regards,

    Stefan

    --

    Stefan Hettel

    Manager HyperWorks Support

    Altair Engineering GmbH

    Calwer Strasse 7

    D-71034 Boeblingen, Germany

    Tel.: +49 (0)7031 6208-46

    Fax : +49 (0)7031 6208-99

    mailto:hettel@altair.de

    User: "Altair Forum User"
    Altair Employee
    OP
    Updated by Altair Forum User

    Stefan,

    thanks a lot, that was easier than expected

    ~ cesar

    User: "Upadhyay"
    Altair Community Member
    Updated by Upadhyay

    I don' think that this method works anymore. Is there an alternate solution?

    User: "tinh"
    Altair Community Member
    Updated by tinh

    You don't think that, but yet actually it still works

    User: "Upadhyay"
    Altair Community Member
    Updated by Upadhyay

    Hi tinh,

     

    I tried the following code:

     

        *createmarkpanel line 1 'Please select the Line on the SAME component';
        set line1 [hm_getmark line 1]
        set compId [hm_getentityvalue lines 1 'by comp id' 0]

        hm_usermessage $compId

     

    When I run this, it gives 1 as the output which is not the component id. Can you please tell where I am going wrong

    User: "Upadhyay"
    Altair Community Member
    Updated by Upadhyay

     Sorry, the code is :  

     

       *createmarkpanel line 1 'Please select the Line on the SAME component';
        set line1 [hm_getmark line 1]
        set compId [hm_getentityvalue lines 1 'collector.id' 0]

        hm_usermessage $compId

    User: "tinh"
    Altair Community Member
    Updated by tinh

     Sorry, the code is :  

     

       *createmarkpanel line 1 'Please select the Line on the SAME component';
        set line1 [hm_getmark line 1]
        set compId [hm_getentityvalue lines 1 'collector.id' 0]

        hm_usermessage $compId

     

    It should be:

    *createmarkpanel line 1 'Please select the Line on the SAME component';
        set line1 [hm_getmark line 1]
        set compId [hm_getentityvalue lines $line1 'collector.id' 0]

        hm_usermessage $compId

    User: "Upadhyay"
    Altair Community Member
    Updated by Upadhyay

    Hello tinh,

     

    Sorry for the late reply. Thank you very much. It works great.