How to create a node in the center by selecting one circular curve?
Hi all,
In hypermesh, we can create a node in the center by selecting three node on a circular curve. How can we script this?
Roy
Answers
-
Open command.tcl file you will see the script
0 -
Altair Forum User said:
Open command.tcl file you will see the script
Hi tinh,
I know your meaning. When using GUI, the center node can be created by selecting three nodes. How can we create the center node directly by only selecting one circular line not three nodes by using script?
Roy
0 -
-
Altair Forum User said:
Hi tinh,
I know your meaning. When using GUI, the center node can be created by selecting three nodes. How can we create the center node directly by only selecting one circular line not three nodes by using script?
Roy
F8>create node at 'circle center'
0 -
*createmarkpanel lines 1 'Select Line to get center';
*createbestcirclecenternode lines 1 0 1 0;*clearmark lines 1
1 -
#
# to loop trough many crucial lines at one selection :
*createmarkpanel lines 1 'Select all lines to put temp-node at center';
set line_sh [ hm_getmark lines 1 ];
set ile_li [ llength $line_sh ]
if { ! [ Null line_list ] } {
for {set i 0} {$i <$ile_li} {incr i} {
set liID [ lindex $line_sh $i ] ;
eval *createmark lines 1 $liID
*createbestcirclecenternode lines 1 0 1 0;
*clearmark lines 1
}
};
puts "Enter: tcl is harder than you think"0