*solidrc_fillhole_nodelist

Creates a patch of elements from a list of nodes.

Syntax

*solidrc_fillhole_nodelist nodelist_id flag

Type

HyperMesh Tcl Modify Command

Description

This command creates a patch of elements from a list of nodes. Flag determines if HyperMesh or display elements are created.

Inputs

nodelist_id
The ID of the list of nodes.
flag
0 - HyperMesh elements are created.
2 - Display elements are created.

Examples

To create a patch of display elements using nodes ID 49805, 49806, 49807, 49808, 49809, and 49810:
*createlist nodes 1 49805 49806 49807 49808 49809 49810
*solidrc_fillhole_nodelist 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

2024