Firstduck Posted August 16, 2014 Report Posted August 16, 2014 Hi, my english ist noch the best, so I hope you unterstand my question. I use the variable "03OC" in a Excel-VBA- project to get the vertical speed at touchdown. In an other thread I read that the correct value for 59999 is -12,4 ft./min. No problem, because 59999/256 x3,2 / 60 is 12,4 ft./min. In another flight I get the value 4294967036 and FSInterrogate converts it to -199,92 ft./min. Now I am not able to calculate this result. Can anyone give me an advice how to convert the values? Thanks a lot Andre
Pete Dowson Posted August 17, 2014 Report Posted August 17, 2014 I read that the correct value for 59999 is -12,4 ft./min. No problem, because 59999/256 x3,2 / 60 is 12,4 ft./min. Actually 59999 is +12.4 not -12.4, meaning it was on the bounce up off the runway at the time it was recorded. In another flight I get the value 4294967036 and FSInterrogate converts it to -199,92 ft./min. Now I am not able to calculate this result. You must read that offset as a SIGNED value. 4294967036 is actually hexadecimal FFFFFEFC which is the 32-bit representation of decimal -260. Using that will give you the -199.92 value. Pete
Firstduck Posted August 17, 2014 Author Report Posted August 17, 2014 Thanks Pete, now it works fine. :razz:
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now