-
I would have assumed that But I get an AttributeError: Hook call for 'flow_stress_function' on 'BoxProfile' could not provide a value. Rod.flow_stress(Rod.freiberg_flow_stress_coefficients, .1,1,1473) also yields an What is it that I do not understand correctly? What is the correct way to evaluate the defined flow stress? Kind regards |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @GRPlan, So, |
Beta Was this translation helpful? Give feedback.
Hi @GRPlan,
So,
flow_stress
as well asflow_stress_function
are defined ashooks
forDeformation.Profile
.A
DeformationUnit
is aRollPass
or aDiskElement
so the correct way to use it, is to either solve asequence
and then use the function on e.g.sequence[0].out_profile.flow_stress_function
or to directly import the function frompyroll-freiberg-flow-stress
and then use it. Since I don't know your use case I can't tell you what's best.