Hello Friends,
I have lets say 100 components and I need to display each collector's mass, volume individually, can you please help me out.
With the piece of code shown below i am able to get net mass, volume of all the collectors which are displayed but not able to get individual collectors'
*createmark components 1 'displayed'
set i [hm_getmark comps 1]
foreach j $i {
set a [hm_getmass comps 1 'by comp id' $i]
puts $a
}
Thanks in advance.