*fill_fe_holes_nodelist
Fills FE holes from a node list defining the hole.
Syntax
*fill_fe_holes_nodelist list_id max_width string_array number_of_strings
Type
HyperMesh Tcl Modify
Description
Fills FE holes from a node list defining the hole.
Inputs
- list_id
- The list ID containing the nodes on the hole boundary.
- max_width
- Maximum allowed hole width.
- string_array
- The string array ID that contains the additional input parameters. The string array is created using the *createstringarray command. This should always be set to 1.
- number_of_strings
- Integer indicating the size (number of strings) in the string array created using *createstringarray.
Example
To fill the hole defined by node list 1, using a max width of 20.5, remeshing filled
elements, and create the elements in the adjacent
component:
*createlist nodes 1 1 2 3 4 5
*createstringarray 3 "Remesh: 1" "AdjacentComp: 1" "DefineMaxWidth: 1"
*fill_fe_holes_nodelist 1 20.5 1 3
Use guide node pairs (17,22) and (45,16) for complex hole
loops:
*createstringarray 4 "DefineMaxWidth:0" "Remesh:0" "AdjacentComp:0" "GuideNodePairs: 17 22 45 16"
*createlist nodes 1 22 23 27 17 66 34 88 26 22 1 99 4 45 12 43 16 99
*fill_fe_holes_nodelist 1 0 1 4
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
14.0