*createelement
Creates an element from a node list.
Syntax
*createelement config type list_id auto_order
Type
HyperMesh Tcl Modify
Description
Creates an element from a node list.
Inputs
- config
- The HyperMesh configuration of the element.
- type
- The solver type of the element.
- list_id
- The ID of the list containing the nodes. Valid values are 1 and 2.
- auto_order
- 0 - Use the nodes as ordered in the list.
Examples
To create a quad4 element using nodes 14, 15, 16, and
17:
*createlist node 1 14 15 16 17
*createelement 104 1 1 1
Errors
Incorrect usage results in a Tcl error. To
detect errors, you can use the catch
command:
if { [ catch {command_name...} ] } {
# Handle error
}