top of page
Admin
Jan 191 min read
Comparison CROD, CBAR and CBEAM
CROD, CBAR and CBEAM are one of the most popular 1d elements in Nastran. Reflecting real behaviour of structural is crucial for FEM. So,...
22 views
0 comments

Admin
Jan 22 min read
Understanding tk_messagebox in Tcl
The tk_messagebox module in Tcl is a versatile tool used to display dialog boxes in graphical user interface (GUI) applications. Whether...
9 views
0 comments

Admin
Sep 28, 20241 min read
Obtain components dimensions with hm_getboundingbox
In hypermesh getting the values of the panel dimension are important for hand calculations or reporting the comps properties....
6 views
0 comments
Admin
Mar 24, 20241 min read
Obtain bar element thickness and width values
*createmarkpanel elems 1 "onyl select bar elements" set barlist [hm_getmark elems 1] foreach elemID $barlist {...
14 views
0 comments
Admin
Feb 19, 20241 min read
Rename all properties with component name
This codes gets the names of selected components and assign these names to their properties. *createmarkpanel comps 1 "Select the...
3 views
0 comments
Admin
Feb 14, 20241 min read
While loop for TCL
Until i becomes 11 the loop continue to puts $i set i 1 while {$i < 11} { puts "i = $i" incr i } Output i = 1 i = 2 i = 3 i = 4 i = 5 i =...
1 view
0 comments
Admin
Feb 14, 20241 min read
TCL file for showing element configuras
This code helps you to find element configuration in Hypermesh *createmarkpanel elems 1 'Select Elems' set elems [hm_getmark elems 1]...
0 views
0 comments
Admin
Feb 11, 20241 min read
Creating components with TCL in Hypermesh
For creating multiple components in HYPERMESH with TCL, you can use the code below. for {set i 1000} {$i <1250} {incr i} {*createentity...
38 views
0 comments
bottom of page