*splitelementswith1D

Splits shell elements on all sides, along with all connected 1D elements.

Syntax

*splitelementswith1D inferred mark_id

Type

HyperMesh Tcl Modify Command

Description

Splits shell elements on all sides, along with all connected 1D elements.

Inputs

inferred
  • 0 - Do not use an inferred surface if no geometry exists
  • 1 - Use an inferred surface if no geometry exists
mark_id
The ID of the mark containing the elements to split. Valid values are 1 and 2.

Examples

To split elements 1-10, along with all connected 1Ds:

*createmark elems 1 1-10
*splitelementswith1D 0 1

To split elements 1-10, along with all connected 1Ds, using an inferred surface:

*createmark elems 1 1-10
*splitelementswith1D 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
}