*fill_circular_holes
Fill flat circular holes on 2D elements.
Syntax
*fill_circular_holes mark_id radius_limit
Type
HyperMesh Tcl Modify
Description
This command is used to fill flat circular holes on 2D elements.
Inputs
- mark_id
- The mark of nodes on the holes to be filled. Valid values are 1 and 2.
- radius_limit
- The radius limit for holes to be filled. If set to a positive value, then all circular flat holes with radii less than this limit are filled. In this case, mark_id can be set to 0 and is ignored. Otherwise, all flat holes containing nodes marked are filled.
Examples
To fill the hole containing node
7989:
*createmark nodes 1 7989
*fill_circular_holes 1 -1.0
To fill the holes with a radius less than
5.0:
*fill_circular_holes 0 5.0
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
10.0