hm_proximitygetcomponentpair
Returns a specific proximity component pair.
Syntax
hm_proximitygetcomponentpair component_pair_index
Type
HyperMesh Tcl Query Command
Description
Returns a specific proximity component pair.
This must be preceded by a call to hm_proximityinit and followed by a call to hm_proximityend.
Inputs
- component_pair_index
- The index of the component pair. This starts from 0 and must be less that the value returned by hm_proximitygetcomponentpaircount.
Example
To calculate the proximity between all comps using a max distance of 2.5 and to query the component pairs:
*createmark comps 1 all
hm_proximityinit comps 1 2.5
set comp_pair_count [hm_proximitygetcomponentpaircount]
for {set i 0} {$i < $comp_pair_count} {incr i} {
set comp_pair [hm_proximitygetcomponentpair $i]
puts "Component pair $i: $comp_pair"
set elem_pair_count [hm_proximitygetcomponentelementpaircount $i]
for {set j 0} {$j < $elem_pair_count} {incr j} {
set elem_pair [hm_proximitygetcomponentpair $i $j]
puts " Element pair $j: $elem_pair"
}
}
hm_proximityend
Errors
if { [ catch {command_name...} ] } {
# Handle error
}
Version History
14.0