top of page
Admin

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 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}

0 views0 comments

Recent Posts

See All

Comments

Rated 0 out of 5 stars.
No ratings yet

Add a rating
bottom of page