how to get limits of quality checks.
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
-
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)
0 -
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
0 -
Thanks. I think, mentioned same in above reply
0