hm_fe_setWvsTfile
Sets the width versus thickness file for seam welds.
Syntax
hm_fe_setWvsTfile ce_id file
Type
HyperMesh Tcl Query Command
Description
Sets the width versus thickness file for seam user-defined welds on connector.
Inputs
- ce_id
- The ID of the connector.
- file
- The name and path of the width versus thickness file.
Examples
To set the diameter versus thickness file on connector with ID
        1:
    set wtfile “D:\my_wvst_file.txt”
hm_fe_setWvsTfile 1 $wtfileErrors
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
2024 - Added new input ce_id.