hm_setmodelcheckcheckstatus

Sets the run status for the specified Model Check check display name.

Syntax

hm_setmodelcheckcheckstatus display_name status

Type

HyperMesh Tcl GUI Command

Description

Sets the run status for the specified Model Check check display name.

Inputs

display_name
The check display name.
status
  • 0 - Not run
  • 1- Run and found failed entities
  • 2 -Run and found no failed entities
  • 3 - No relevant entities found in the model

Example

To set the run status for the check named "Unused Materials" to run (1):

hm_setmodelcheckcheckstatus "Unused Materials" 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

11.0.101

2019 - Added new status value 3.