Model.hm_fe_getWvsTfile#

Model.hm_fe_getWvsTfile(connector)#

Returns the width versus thickness file for seam welds on connector.

Parameters:

connector (Entity) – The object describing the connector entity.

Returns:

Example#

Get the diameter versus thickness file on connector with ID 1#
import hm
import hm.entities as ent

model = hm.Model()

_, result = model.hm_fe_getWvsTfile(connector=ent.Connector(model, 1))

print("wvstFile", result.wvstFile)