hm_getcriteria

Query the values of global mesh quality criteria.

Syntax

hm_getcriteria criteria

Type

HyperMesh Tcl Query Command

Description

Query the values of global mesh quality criteria.

Inputs

criteria
The name of the criteria to query. Valid values can be found in *criteria_update.
There are also a few special criteria names:
global_solver
The global calculation method to be used for all quality parameters.
legend_colors
The legend colors for all thresholds.
If no criteria value is given, all criteria values are returned.

Examples

To get the 2D min size:

hm_getcriteria min_size_2d

To get the 3D aspect ratio:

hm_getcriteria aspect_ratio_3d

To get all values:

hm_getcriteria

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

2021