top of page


Creating RF plot in hypermesh
After doing analytical calculations, the RF plots will be useful for reports and presentation. Here is the tcl codes for creating RF plot...
Admin
Jun 241 min read
Creating a 2d load envelope with python
Acting loads on a part or an aircraft component could be huge numbers. Therefore in initaial sizing process the load cases with low...
Admin
Apr 252 min read
Reading a csv file by using tcl
Reading a csv file procedure is similar to the other programming languages. # Open the CSV file in read mode set filePath...
Admin
Jan 171 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....
Admin
Sep 29, 20241 min read


Hypermesh Batch Mode
Hypermesh can be used in batch mode. Here is an example of creating a surface in batch mode. It means withouth opening hypermesh, you can...
Admin
Jun 16, 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 {...
Admin
Mar 25, 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...
Admin
Feb 12, 20241 min read
bottom of page