reggaeman007jah 31 Posted March 25, 2018 Hi good people, I am trying to build up a personal HUD for heli flying, and I was wondering if anyone can point me in the right direction to obtain the VSI (Vertical Speed Indicator) value. Ideally there is a value I can just take (and display) - I have looked but can't locate this. Or, do I need to calculate the VSI by comparing altitude values vs time? cheers Share this post Link to post Share on other sites
Grumpy Old Man 3546 Posted March 25, 2018 9 minutes ago, reggaeman007jah said: Hi good people, I am trying to build up a personal HUD for heli flying, and I was wondering if anyone can point me in the right direction to obtain the VSI (Vertical Speed Indicator) value. Ideally there is a value I can just take (and display) - I have looked but can't locate this. Or, do I need to calculate the VSI by comparing altitude values vs time? cheers Vertical speed is nothing too complicated: onEachFrame { _v = velocity vehicle player; _v params ["_x","_y","_z"]; hintsilent str _z;//vertical speed in meters per second }; _z holds vertical speed, this will display a hint containing _z. Cheers 1 Share this post Link to post Share on other sites
reggaeman007jah 31 Posted March 25, 2018 Awesome man ... thank you GoM :) 1 Share this post Link to post Share on other sites
HazJ 1289 Posted March 25, 2018 This may be useful as well: https://community.bistudio.com/wiki/velocityModelSpace 1 Share this post Link to post Share on other sites
reggaeman007jah 31 Posted March 25, 2018 Thank you Haz .. :) 1 Share this post Link to post Share on other sites