Model.hm_fe_setdvstfile#
- Model.hm_fe_setdvstfile(connector, dvstfile)#
Sets the diameter versus thickness file for user-defined welds on connector.
- Parameters:
connector (Entity) – The object describing the connector entity.
dvstfile (hwString) – The name of the diameter-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_setdvstfile(connector=ent.Connector(model, 1), dvstfile="d:\my_dvst_file.txt")