hm_comparewriteresults

Writes the current comparison results to a file.

Syntax

hm_comparewriteresults filename

Type

HyperMesh Tcl Query

Description

Writes the current comparison results to a file. This must be preceded by a call to a relevant hm_compareentities* command.

Inputs

filename
The full name and path of the file to write the results to.

Example

To write the detailed comparison results file to C:/temp/my_compare.txt for the same side comparison of surfs 1-20 and 101-120:

*createmark surfs 1 1-20
*createmark surfs 2 101-120
hm_compareinit
hm_compareentitiessameside surfs 1 surfs 2 0.1 2 0
hm_comparewriteresults C:/temp/my_compare.txt
hm_compareend

Errors

Incorrect usage results in a Tcl error. To detect errors, you can use the catch command:
if { [ catch {command_name...} ] } {
   # Handle error
}

Version History

12.0