*panelcreation

Creates a panel entity.

Syntax

*panelcreation elemMark=<value> name=<value> findPanel=<value>

Type

HyperMesh Tcl Modify Command

Description

Creates a panel entity.

Inputs

elemMark=<value>
The ID of the input elements. Valid values are 1 and 2.
name=<value>
The name of the panel entity.
findPanel=<value>
0 - DIrectly create the panel entity using the input elements
1 - Find a panel consisting of these elements

Examples

Create a panel named panel1 from elements 1-10:
*createmark elems 1-10
*panelcreation 1 panel1 0
Find panel entities from elements 1-10:
*createmark elems 1-10
*panelcreation 1 panel1 1

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

2020