how to get limits of quality checks.

Altair Forum User
Altair Forum User
Altair Employee
edited October 2020 in Community Q&A

Hi,

I am trying to get the Limits of quality checks(F10) for 1d, 2d and 3d elements,

for 2D we can use the below code to get warpage limit.

set checklimit_warpage [hm_get2delemchecktestval warpage]

like wise we can get for the jacobian ,length, taper etc.,

but for 1d and 3d elements how to get the same not only for warpage for remaining also.

can any one help me.

looking forward for your replies.

thankyou very much

B.Ramu

Answers

  • Altair Forum User
    Altair Forum User
    Altair Employee
    edited September 2009

    Can you be specific?

    you can use hm_getinputentry and dumppanel to get ids.

    for e.g. hm_dumppanel 'check elems'

    will give you lot of info on panel. figure out ids.

    then hm_getinputentry 'check elems' 48 (for max angle 2D)

  • Altair Forum User
    Altair Forum User
    Altair Employee
    edited September 2009

    Hi u can use

    command: hm_dumppanel 'check elems'

    will give u the identifiers for the respective like warpage etc ...

    by using the id's you can get required.

    for example : to get skew for 3D elems use the following...

    command: hm_getinputentry 'check elems' 68 ''

    hm_getinputentry 'check elems' 65 '' ---> aspect for 3d

    Regards

    Ramu B

  • Altair Forum User
    Altair Forum User
    Altair Employee
    edited September 2009

    Thanks. I think, mentioned same in above reply