hm_proximityend

Clears the proximity calculation data and memory.

Syntax

hm_proximityend

Type

HyperMesh Tcl Query

Description

Clears the proximity calculation data and memory.

This must be preceded by a call to hm_proximityinit.

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

None.

Version History

14.0