*setelemqualityparamactive

Sets the on/off state for a specified element quality parameter.

Syntax

*setelemqualityparamactive param_id activ

Type

HyperMesh Tcl Modify Command

Description

This command is related to the element quality view mode. It sets the on/off state for a specified element quality parameter.

Inputs

param_id
Specifies the element quality check parameter ID to update. Valid values are:
  • 0 - min size
  • 1 - max size
  • 2 - aspect ratio
  • 3 - warpage
  • 4 - max interior angle quad
  • 5 - min interior angle quad
  • 6 - max interior angle tria
  • 7 - min interior angle tria
  • 8 - skew
  • 9 - Jacobian
  • 10 - chordal deviation
active
  • 0 - Inactive/off
  • 1 - Active/on

Examples

To activate "warpage" parameter:

*setelemqualityparamactive 3 1

To disable "Jacobian" parameter:

*setelemqualityparamactive 9 0

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.110