*convertbeamsection

Updates the target solver ID for beamsections.

Syntax

*convertbeamsection mark_id source_solver_id target_solver_id

Type

HyperMesh Tcl Modify Command

Description

Updates the target solver ID for beamsections.

Inputs

mark_id
The ID of the mark containing the beamsections to update. Valid values are 1 and 2.
source_solver_id
The ID of the source solver for the specified beamsections. This can be queried using hm_getsolver.
target_solver_id
The ID of the target solver for the specified beamsections. This can be queried using hm_getsolver.

Example

To convert beamsections 1-5 from solver ID 2 (Abaqus) to solver ID 1 (OptiStruct):
*createmark beamsects 1 1-5
*convertbeamsection 1 2 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

10-SA1-130