Knowing that fan power varies with cube of air-flow, and by measuring fan current (proportional to power), I want to derive a quantity proportional to air-flow. This requires finding the cube-root of measured current. I have tried
T3000 math doesn’t support fractional exponents.A practical workaround is to approximate the cube-root with a small polynomial
You can replace your line with the following:
Your VAR1 ^ 2 and VAR1 ^ 3 lines work fine. Using multiplication instead is just a safer and more predictable way to express the same calculation. There’s no real performance difference, so either form is OK.