hm_getfilletfacesfrommark

Returns the faces containing fillets with a radius inside a range, only considering specific faces.

Syntax

hm_getfilletfacesfrommark entity_type mark_id radius_min radius_max

Type

HyperMesh Tcl Query Command

Description

Returns the faces containing fillets with a radius inside a range, only considering specific faces.

Inputs

entity_type
The type of entity to consider. Currently supported values are:
assems - finds fillet faces only from the surfaces based on the assembly structure of the specified assems.
comps - finds fillet faces only from the surfaces in the specified comps.
surfs - finds fillet faces only from the specified surfs.
mark_id
The ID of the mark containing the entities to consider. Valid values are 1 and 2.
radius_min
The minimum radius value.
radius_max
The maximum radius value.

Example

To get the faces with fillets with a radius between 5 and 15 only for surfaces in the assembly assem1:

*createmark assems 1 assem1
hm_getfilletfacesfrommark assems 1 5 15

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

9.0