*readfile

Reads a HyperMesh database into the current session and deletes any existing model.

Syntax

*readfile filename

Type

HyperMesh Tcl Modify Command

Description

Reads a HyperMesh database into the current session and deletes any existing model.

Inputs

filename
The full path and filename of the database file.

Example

To read the database named C:/mymodel.hm into the current session:

*readfile C:/mymodel.hm

Errors

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