Model.hm_fe_setWvsTfile#
- Model.hm_fe_setWvsTfile(connector, wvstfile)#
Sets the width versus thickness file for seam user-defined welds on connector.
- Parameters:
connector (Entity) – The object describing the connector entity.
wvstfile (hwString) – The name and path of the width versus thickness file.
- Returns:
hwReturnStatus- Status object
Example#
Set the diameter versus thickness file on the connector with ID 1#import hm import hm.entities as ent model = hm.Model() model.hm_fe_setWvsTfile(connector=ent.Connector(model, 1), wvstfile="d:\my_dvst_file.txt")