- Messages
- 37
- Country

Has anybody figured out how to do a Fast/Slow Indicator? Would it be just the same thing as a trend indicator?
The only reason I am not sure is because I believe the angle of attack should be accounted for and yet I don't see it being used in any trend indicators samples I currently have.
I found this trend indicator posted by Fr. Bill on Avsim Forums but there is no reference to angle of attack.
Any help is much appreciated!
Doia
The only reason I am not sure is because I believe the angle of attack should be accounted for and yet I don't see it being used in any trend indicators samples I currently have.
I found this trend indicator posted by Fr. Bill on Avsim Forums but there is no reference to angle of attack.
Code:
<!-- ======================= AIRSPEED TREND INDICATOR ======================= -->
<Element>
<Select>
<Value>
(P:Local Time, seconds) 0.2 % 10 * int 0 ==
if{ (A:Airspeed select indicated or true, knots) (>L:SpeedPrevious,knot) }
</Value>
</Select>
</Element>
<Element>
<Select>
<Value>
(P:Local Time, seconds) 0.2 % 10 * int 1 ==
if{ (A:Airspeed select indicated or true, knots) s1 (L:SpeedPrevious,knot) - 0.1 / 10 * l1 + (>L:SpeedTrend,knot) }
</Value>
</Select>
</Element>
<Element>
<Position X="275" Y="145"/>
<Visible>
(L:SpeedTrend,knot) (A:Airspeed select indicated or true, knots) >
</Visible>
<MaskImage Name="G1000_SpeedTrend_Mask.bmp" Bright="Yes">
<Axis X="0" Y="64"/>
</MaskImage>
<Image Name="G1000_SpeedTrend.bmp" Bright="Yes">
<Nonlinearity>
<Item Value="2" X="0" Y="0"/>
<Item Value="40" X="0" Y="64"/>
</Nonlinearity>
</Image>
<Shift>
<Value Minimum="2" Maximum="40">
(A:Airspeed select indicated or true, knots) 45 <
if{ 0 }
els{ (L:SpeedTrend,knot) (A:Airspeed select indicated or true, knots) - }
</Value>
<Delay PixelsPerSecond="10"/>
</Shift>
</Element>
<Element>
<Position X="275" Y="209"/>
<Visible>
(L:SpeedTrend,knot) (A:Airspeed select indicated or true, knots) <
</Visible>
<MaskImage Name="G1000_SpeedTrend_Mask.bmp" Bright="Yes">
<Axis X="0" Y="0"/>
</MaskImage>
<Image Name="G1000_SpeedTrend.bmp" Bright="Yes">
<Nonlinearity>
<Item Value="-2" X="0" Y="64"/>
<Item Value="-40" X="0" Y="0"/>
</Nonlinearity>
</Image>
<Shift>
<Value Minimum="-40" Maximum="-2">
(A:Airspeed select indicated or true, knots) 45 <
if{ 0 }
els{ (L:SpeedTrend,knot) (A:Airspeed select indicated or true, knots) - }
</Value>
<Delay PixelsPerSecond="10"/>
</Shift>
</Element>
Doia
Last edited: