*writemodelcheckresultfile

Writes out model check results to a file.

Syntax

*writemodelcheckresultfile filename filetype

Type

HyperMesh Tcl Modify

Description

Writes out model check results to a file.

Inputs

filename
The full path and name of the file to write. By default it will be given a .txt extention if not specified.
filetype
0 or 1 – Only the failed count associated with the checks is written out
2 - Entity type, failed count and count of entities in the model are written against the check
3 - Along with the above information, the time taken to run each check is also written out

Examples

To write results to the file C:/temp/check_results.txt

*writemodelcheckresultfile C:/temp/check_resutls.txt 1 

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

2019