AdminSep 281 min readObtain components dimensions with hm_getboundingboxIn hypermesh getting the values of the panel dimension are important for hand calculations or reporting the comps properties....
AdminMar 241 min readObtain bar element thickness and width values *createmarkpanel elems 1 "onyl select bar elements" set barlist [hm_getmark elems 1] foreach elemID $barlist {...
AdminFeb 191 min readRename all properties with component nameThis codes gets the names of selected components and assign these names to their properties. *createmarkpanel comps 1 "Select the...
AdminFeb 141 min readWhile loop for TCLUntil 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 =...
AdminFeb 141 min readTCL file for showing element configurasThis code helps you to find element configuration in Hypermesh *createmarkpanel elems 1 'Select Elems' set elems [hm_getmark elems 1]...
AdminFeb 111 min readCreating components with TCL in HypermeshFor creating multiple components in HYPERMESH with TCL, you can use the code below. for {set i 1000} {$i <1250} {incr i} {*createentity...