*reviewclearbymark

Removes/clears entities from the review list based on a mark.

Syntax

*reviewclearbymark entity_type mark_id

Type

HyperMesh Tcl Modify Command

Description

This command removes/clears entities from the review list based on a mark.

Inputs

entity_type
The type of entity to remove from to the review list. Valid values are:
  • nodes
  • elems
  • points
  • lines
  • surfs
  • solids
  • connectors
  • loads
  • equations
  • systs
  • vectors
mark_id
The ID of the mark containing the entities. Valid values are 1 and 2.

Example

To remove elements 1-100 from the review list:

*createmark elems 1 1-100
*reviewclearbymark elems 1

Errors

Incorrect usage results in a Tcl error. To detect errors, you can use the catch command:
if { [ catch {command_name...} ] } {
   # Handle error
}