top of page
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 views0 comments
Admin
Feb 12, 20242 min read
Understanding RBE2 vs. RBE3 in NASTRAN
Rigid Body Elements (RBEs) play a crucial role in finite element analysis, especially in structural simulations. In NASTRAN, two commonly...
303 views0 comments
Admin
Feb 12, 20241 min read
NASTRAN SOLVER
Nastran solver has a specific code number foreach type of analysis. Model input file (bdf, dat) starts with these code.
9 views0 comments
Admin
Feb 12, 20241 min read
NASTRAN Output Files
When the run button on tthe NASTRAN solver is clicked, many files are created in the result folder. f06 and f04 are main files. These...
38 views0 comments
Admin
Feb 12, 20241 min read
Creating for loop in tcl
You can create a for loop in TCL like below; for {set i 0} { $i < 5} {incr i} { puts “Loop number is : $i” } Output: Loop number is : 1...
6 views0 comments
Admin
Feb 12, 20241 min read
Creating multiple properties in Hypermesh with TCL
You can create shell properties with the code belowMaterial id is 1001 and thickness is 1. Before the running code , create a material...
14 views0 comments
Admin
Feb 12, 20241 min read
Adding Tab to GUI by TCL
You can add tab to your toplevel window with notebook command. destroy .tool toplevel .tool -width 900 -height 900 wm title .tool "tool...
2 views0 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...
34 views0 comments
bottom of page