Clean all variables in HyperMesh
Altair Forum User
Altair Employee
Answers
-
Hello,
yes, there is
but some variables is essential for hm running, if you clear them means hm will be malfunctional
try:
foreach var [info vars *] {catch {unset $var}}
so you should put your variables in your own namespace so you can clean it properly
foreach yourvar [info vars ::yournamespace::*] {catch {unset $yourvar}}
or just delete your namespace, the vars will be freed from interp
0