top of page

get the dependent node of rbe3 element list

  • Admin
  • Mar 25, 2024
  • 1 min read
# Select the rbe3 elements only
*createmarkpanel elements 1 "Select the rbe3 elements"
set rbelist [hm_getmark elememts 1]
# get the dependent node
foreach elemID $rbelist {
set dependentnodeID [hm_getvalue elems id=$elemID dataname=dependentnode ]
puts "RBE3 element id=$elemID dependent node id=$dependentnodeID"
}
#RBE3 element id=203 dependent node id=106

Recent Posts

See All
List the files in the folder by using TCL

Here is a simple script to list all the files in a folder with or without file extension. set folder [tk_chooseDirectory -title "Select a folder"] if {$folder eq ""} { puts "No folder selected."

 
 
 
Solutions in Nastran

Here's a concise definition table for every solution type (SOL) in NASTRAN, focusing on commonly used ones. Each entry includes the SOL number, solution type, and a brief description. SOL Number Name

 
 
 

Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating

© 2023

 
bottom of page