Model.hm_getqephtimestep#

Model.hm_getqephtimestep(name)#

Returns the time step calculated from QEPH elements in a component.

Parameters:

name (hwString) – The name of the component

Returns:

Example#

Get the time step from component named “ Flange “#
import hm
import hm.entities as ent

model = hm.Model()

_, result = model.hm_getqephtimestep(name="Flange")

print("timeStep:", result.timeStep)