top of page

TCL file for showing element configuras

  • Admin
  • Feb 14, 2024
  • 1 min read

This code helps you to find element configuration in Hypermesh

*createmarkpanel elems 1 'Select Elems'
set elems [hm_getmark elems 1] 
*clearmark elems 1
foreach elemID $elems {
    set typename [hm_getvalue elems id=$elemID dataname=typename]
    puts [format "elementID=%6d Typename=%s" $elemID $typename]
}

Recent Posts

See All
Spring elements in NASTRAN

In structural analysis, spring elements play a key role in simulating flexible connections, supports, joints, and contact interactions....

 
 
 

Comentários

Avaliado com 0 de 5 estrelas.
Ainda sem avaliações

Adicione uma avaliação

© 2023

 
bottom of page