- Messages
- 1,749
- Country

I like really like that "R" button Tom...Is it possible to make a simple button or how can I get a copy of this amazing L Var directory optimizer do it all in 1 display program..
Update on the Profile ETE:
I found the second code was rubbish as it was inconsistent and put my thinking cap on. Took a look at some common formulas and finally hit me....
ALTITUDE / FPM = TIME...Used both VSR and the Profile setting on this formula.
Time - Time = ETE Profile
Now the ETE is perfect....
The Altitude in my code is custom because it includes the above AGL and MSL and is
important for when adjusting the altitude. You can just use A:altitude.

Update on the Profile ETE:
I found the second code was rubbish as it was inconsistent and put my thinking cap on. Took a look at some common formulas and finally hit me....
ALTITUDE / FPM = TIME...Used both VSR and the Profile setting on this formula.
Time - Time = ETE Profile
Now the ETE is perfect....The Altitude in my code is custom because it includes the above AGL and MSL and is
important for when adjusting the altitude. You can just use A:altitude.
Code:
<!-- ETE DISPLAY -->
<!-- ABOVE/BELOW WP -->
<!-- ALT / FPM = TIME -->
(L:WP ALT ERROR,Enum) 0 == (L:MSL ALT ERROR,Enum) 0 == or if{
(L:ALTITUDE CALC1, feet) (L:VSR DISPLAY PLUS, Feet per minute) / (>L:TIME1, Minutes) }
(L:WP ALT ERROR,Enum) 1 == (L:MSL ALT ERROR,Enum) 1 == or if{
(L:ALTITUDE CALC1, feet) (L:VSR DISPLAY MINUS, Feet per minute) / (>L:TIME1, Minutes) }
<!-- ALT / FPM = TIME -->
(L:ALTITUDE CALC1, feet) (L:TARGET PRFL CALC, Feet per minute) / (>L:TIME2, Minutes)
<!-- TIME - TIME = ETE -->
(L:TIME1, Minutes) (L:TIME2, Minutes) - (>L:RATE, Minutes)
<!-- ETE DISPLAY -->
(L:RATE, Minutes) (>L:ETE PRFL TIME, Minutes)
<!-- FORCE ZERO -->
(L:ETE PRFL TIME, Seconds) 0 < if{ 000000 (>L:ETE PRFL TIME, Seconds) }
Last edited:




