*setelemparamsvisualpriorities

Sets the priority for all element quality parameters when reviewing multiple criteria.

Syntax

*setelemparamsvisualpriorities double_array number_of_doubles

Type

HyperMesh Tcl Modify Command

Description

This command is related to the element quality view mode. It sets the priority for all element quality parameters when reviewing multiple criteria.

Inputs

double_array
The ID of the double array containing the priority values for each quality parameter. Must always be set to 1.
There are currently 11 quality parameters that can be set. The priority for each parameter must be specified, using a unique value of 0-10. The order of the parameters is:
  • 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
number_of_doubles
Must currently be set to 11.

Example

To set the priorities for all parameters:

*createdoublearray 11 3 4 7 2 1 10 8 9 0 5 6 
*setelemparamvisualpriorities 1 11

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