hm_estimategeomthicknesslimits
Returns the minimum and maximum thickness limits for thin solid geometry.
Syntax
hm_estimategeomthicknesslimits entity_type mark_id ?elem_size?
Type
HyperMesh Tcl Query Command
Description
Returns the minimum and maximum thickness limits for thin solid geometry.
Inputs
- entity_type
 - The type of entity to query. Valid values are surfaces and solids.
 - mark_id
 - The ID of the mark containing the input entities.
 - elem_size (optional)
 - The element size to be used for internal meshing.
 
Example
To find the thickness limits for solid ID 100:
*createmark solids 1 100
foreach {min max} [hm_estimategeomthicknesslimits solids 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
12.0.110