*analysisfileset

Loads a results file for use in subsequent operations.

Syntax

*analysisfileset filename

Type

HyperMesh Tcl Modify Command

Description

Loads a results file for use in subsequent operations. All IDs are assumed to be HyperMesh internal IDs.

Inputs

filename
The full path and name of the results file.

Examples

To load the result file named C:/my_results/test.res:

*analysisfileset C:/my_results/test.res

Errors

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