*fill_fe_gaps_nodeid
Fills gaps in FE from a node selected on both sides of the gap.
Syntax
*fill_fe_gaps_nodeid node_id1 node_id2 max_width string_array number_of_strings
Type
HyperMesh Tcl Modify Command
Description
Fills gaps in FE from a node selected on both sides of the gap.
Inputs
- node_id1
- The node ID on the first boundary.
- node_id2
- The node ID on the secondary boundary.
- max_width
- Maximum allowed gap width to be filled.
- 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 gaps defined by nodes 50 and 70, including
remeshing:
*createstringarray 2 "Remesh: 1" "DefineMaxWidth: 1"
*fill_fe_gaps_nodeid 50 70 100.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