Creating for loop in tclAdminFeb 12, 20241 min readRated NaN out of 5 stars.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 : 1Loop number is : 1Loop number is : 1Loop number is : 1Loop number is : 1
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 : 1Loop number is : 1Loop number is : 1Loop number is : 1Loop number is : 1
Comparison CROD, CBAR and CBEAMCROD, CBAR and CBEAM are one of the most popular 1d elements in Nastran. Reflecting real behaviour of structural is crucial for FEM. So,...
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...
Comments