hm_get2delemchecktestval

Returns the test values from the Check Elems panel.

Syntax

hm_get2delemchecktestval check_type

Type

HyperMesh Tcl Query Command

Description

Returns the test values from the Check Elems panel.

Inputs

check_type
The type of check to query. Valid values are:
  • length1d
  • lengthmore1d
  • aspect2d
  • chordal2d
  • jacobian2d
  • length2d
  • lengthmore2d
  • minanglequad2d
  • maxanglequad2d
  • minangletria2d
  • maxangletria2d
  • skew2d
  • equiaskew2d
  • areaskew2d
  • cellsquish2d
  • taper2d
  • warpage2d
  • aspect3d
  • tetcollapse3d
  • jacobian3d
  • length3d
  • lengthmore3d
  • minanglequad3d
  • maxanglequad3d
  • minangletria3d
  • maxangletria3d
  • skew3d
  • equiaskew3d
  • volskew3d
  • cellsquish3d
  • volAR3d
  • warpage3d

Example

To get the value of the 2D aspect test value:

hm_get2delemchecktestval aspect2d

Errors

Incorrect usage results in a Tcl error. To detect errors, you can use the catch command:
if { [ catch {command_name...} ] } {
   # Handle error
}