Applying Range Functions Other Than Time to Transient Reports

How do you use other variables aside from time in range functions?

When applying a range function (e.g., YAtXVal) to a transient report, the variable X always represents time. To use a different variable, two or more nested functions must be used.

For example, the torque at position 100 deg can be calculated using the following expression:

YAtXVal(Moving1.Torque, XAtYVal(Moving1.Position, 100deg))

Now XAtYVal(Moving1.Position, 100deg) returns the time instance where the position equals 100 deg. This time instance is then used in the function YAtXVal.