*elementsaddelemsfixed
Marks the specified 1D plot elements as feature edges before using the command for remeshing by elements.
Syntax
*elementsaddelemsfixed mark_id
Type
HyperMesh Tcl Modify
Description
This command changes the densities of selected surface edges and remeshes the adjacent surfaces, according to the specified mode. This is an automesh function.
Inputs
- mark_id
- The mark ID containing 1D plot elements that should be considered to form feature edges in the subsequent element remesh operation.
Example
To remesh the displayed elements and keep lines formed by plot elements with IDs
1600-2220:
*createmark elems 1 "displayed"
*setusefeatures 1
*createmark elems 2 1600-2220
*elementsaddelemsfixed 2
*defaultremeshelems 1 3.0 2 2 0 1 1 1 0 0 0 0 0 30
Errors
Incorrect usage results in a Tcl error. To
detect errors, you can use the catch
command:
if { [ catch {command_name...} ] } {
# Handle error
}