*realizefieldloads

Realizes engineering loads into classical loads.

Syntax

*realizefieldloads mark_id ?skip_delete?

Type

HyperMesh Tcl Modify Command

Description

Realizes engineering loads into classical loads.

Inputs

mark_id
The ID of the mark of engineering loads to realize into classical loads. Valid values are 1 and 2.
skip_delete
0 - Delete all engineering loads after realization (default)
0 - Keep all engineering loads after realization

Examples

Realize all engineering force loads:
*createmark loads 1 "by config" 1
*realizefieldloads 1
Realize all engineering loads and skip deletion:
*createmark loads 1 all
*realizefieldloads 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
}

Version History

2020