*aligntoedges
Aligns nodes of mesh edges along geometric edges.
Syntax
*aligntoedges line_mark_id node_mark_id string_array number_of_strings
Type
HyperMesh Tcl Modify Command
Description
This command attempts to move nodes near edges to align them with the geometry of the edge. It further takes arguments that control the quality of the resulting mesh so that quality does not become too bad. When it cannot move nodes to an entire edge, it then attempts to move nodes to end vertices of that edge, performing smoothing where necessary on elements around those nodes. The command requires that quality criteria have been set already.
Inputs
- line_mark_id
- The ID of the mark containing the lines to which to align FE edges to. Valid values are 1 and 2.
- node_mark_id
- The ID of the mark containing the node to align to lines. Valid values are 1 and 2.
- string_array
- The ID of the string array 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) of the string array created using *createstringarray.
Examples
To attempt to align all nodes to all lines, using a failure count tolerance of 0.2 and failure index tolerance of 0.2:
*createmark lines 1 all
*createmark nodes 1 all
*createstringarray 2 "FailureCountTolerance:0.2" "FailureIndexTolerance:0.2"
*aligntoedges 1 1 1 2
Errors
if { [ catch {command_name...} ] } {
# Handle error
}
Version History
14.0.130