*removeposition

Removes a solver position from another solver position entity.

Syntax

*removeposition mark_id1 mark_id2

Type

HyperMesh Tcl Modify Command

Description

Removes a solver position from another solver position entity. Currently only supported to remove positions with config 407 from positions with config 408 in PAM-CRASH Interface. Alternatively, *setvalue can be used.

Inputs

mark_id1
The ID of the mark containing the position entities to which the positions in mark_id2 must be removed.
mark_id2
The ID of the mark containing the positions entities to be removed.

Examples

To remove all the positions with config 407 from all the positions with config 408:

*createmark positions 1 "by config" "407"
*createmark positions 2 "by config" "408"
*removeposition 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

2021.1