In my Mechanical Model, I need to plot values at each node based on the following conditional equation:
delta = (SX + SY + SZ) / SEQV
if delta >= 0:
rV = EPTO_EQV / (a0 + b0 ** (c*delta))
if delta < 0:
rV = b0
This cannot be achieved using the standard User Defined Result object in Mechanical, as it does not support conditional statements. Importing post-processed data and plotting them with a User Defined Result would only provide values for a single time point.
Is there a way to accomplish this using DPF with a Python Result object?