top of page

Creating multiple properties in Hypermesh with TCL

  • Admin
  • Feb 12, 2024
  • 1 min read

You can create shell properties with the code belowMaterial id is 1001 and thickness is 1.

Before the running code , create a material with 1001 id.

for {set i 1000} {$i < 1250} {incr i} {
*createentity props cardimage=PSHELL name=pshell.$i
*setvalue props name=pshell.$i id=$i
*setvalue props name=pshell.$i materialid={mats 1001}
*setvalue props name=pshell.$i STATUS=1 95=1}

Recent Posts

See All
List the files in the folder by using TCL

Here is a simple script to list all the files in a folder with or without file extension. set folder [tk_chooseDirectory -title "Select a folder"] if {$folder eq ""} { puts "No folder selected."

 
 
 
Solutions in Nastran

Here's a concise definition table for every solution type (SOL) in NASTRAN, focusing on commonly used ones. Each entry includes the SOL number, solution type, and a brief description. SOL Number Name

 
 
 

Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating

© 2023

 
bottom of page