*fill_fe_gaps_nodelist
Fills gaps in FE from node lists selected on both sides of the gap.
Syntax
*fill_fe_gaps_nodelist list_id1 list_id2 max_width string_array number_of_strings
Type
HyperMesh Tcl Modify
Description
Fills gaps in FE from node lists selected on both sides of the gap.
Inputs
- list_id1
- The list ID containing the nodes on the first boundary. Valid values are 1 and 2.
- list_id2
- The list ID containing the nodes on the second boundary. Valid values are 1 and 2.
- max_width
- Maximum allowed gap width to be filled.
- number_of_strings
- Integer indicating the size (number of strings) in the string array created using *createstringarray.
- 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 gaps less than 100 between node lists 1 and 2, including
remeshing:
*createlist nodes 1 1 2 3 4 5
*createlist nodes 2 6 7 8 9 10
*createstringarray 2 "Remesh: 1" "DefineMaxWidth: 1"
*fill_fe_gaps_nodelist 1 2 100.0 1 2
To fill multiple gaps, where the input list contains nodes from all gaps at
once:
*createlist nodes 1 18 19 22 36 56 23 34 45 20 21 67 89 71 72 73 74 75 76
*createlist nodes 2 57 98 43 13 16 17 42 43 44 48 46 49 91 92 93 94 95 96
*createstringarray 2 "Remesh:0" "DefineMaxWidth:0" "DetectClusters:1"
*fill_fe_gaps_nodelist 1 2 0 1 2
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