Jump to content
Sign in to follow this  
reggaeman007jah

Rotolib VSI Value

Recommended Posts

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
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

  • Like 1

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×