*modifyicelement

Modifies a dependent node of an IC element.

Syntax

*modifyicelement id mode node_id

Type

HyperMesh Tcl Modify Command

Description

Modifies a dependent node of an IC element.

Inputs

id
The ID of the IC element to modify.
mode
1 - Move up in the order
2 - Move down in the order
3 - Delete
node_id
The ID of the node to modify.

Example

Create an IC element with independent node 15, and dependent nodes to 16, 17, 18, 19 with DOF’s 123, 345, 1234, 123456, then remove node 18:

*icelementcreate
*createintarray2d 2 4 16 17 18 19 123 345 1234 123456
*addicconnectivity 1 15 1 2 4
*modifyicelement 1 3 18

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