03-11-2019 09:30 AM
Hi All,
I've ran some simulations for Torque-RPM curves for a specific engine on a different piece of software, and it's given me Torque values for the corresponding RPM in intervals of 1000 RPM. (see attached)
I'm now trying to figure out a way of making LabVIEW assume the values in between these intervals, as right now I have a series of IF statements saying for example:
IF input = 15000 then Torque = 52.3308... and so on. (see attached)
I'm aware this is by no means the best way of doing this, just looking for a way to improve it.
Many thanks,
Dan
Solved! Go to Solution.
03-11-2019 09:38 AM
Arrays.
Interpolate 1D array and Threshold 1D array can help you find the values between.
03-11-2019 09:40 AM
03-11-2019 11:01 AM
Excellent, thank you very much 🙂
03-11-2019 11:02 AM
Thank you! 🙂