AI wake turbulence: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
(Created page)
 
(Cleanup)
Line 1: Line 1:
AI wake turbulence does as it says, when you fly into the wake of an AI aircraft you can experience (sometimes very heavy) turbulence.
The '''AI wake turbulence''' feature, introduced in v2017.3.1, produces turbulence when you fly behind [[AI Traffic|AI]] aircraft.


Introduced in FG 2017.3.1
== Enabling ==


= How to enable =
Go into the AI Menu, and then to ''Traffic and Scenario Settings''. Then enable ''AI wake''.


Go into menu AI, then Traffic and scenario settings. Then enable AI wake.
This only work with flying behind AI Traffic aircraft; it does not work with [[Multiplayer|multiplayer]] or scenario aircraft, including tankers.
 
The aircraft must be a [[JSBSim]] aircraft, and it must be added by the aircraft developer.  
This only work with flying behind AI Traffic aircraft, not tankers or other scenario planes. Nor MP planes.
= Adding to an aircraft =
 
Notice the aircraft must support this, see below.
 
= How to add to an aircraft =
 
The aircraft must be JSBSim.


Add these lines somewhere in JSB under external reactions:
Add these lines somewhere in JSB under external reactions:
Line 41: Line 35:
</syntaxhighlight>
</syntaxhighlight>


The only thing you need to adjust is "Center of the main wing leading edge", that should of course match the aircraft. (replace the '?' marks)
The only thing you need to adjust is "Center of the main wing leading edge"; which should of course match the aircraft. (replace the '?' marks)


[[Category:Aircraft enhancement|Thrust reversal add]]
[[Category:Aircraft enhancement]]
[[Category:JSBSim]]
[[Category:JSBSim]]

Revision as of 22:00, 31 October 2017

The AI wake turbulence feature, introduced in v2017.3.1, produces turbulence when you fly behind AI aircraft.

Enabling

Go into the AI Menu, and then to Traffic and Scenario Settings. Then enable AI wake.

This only work with flying behind AI Traffic aircraft; it does not work with multiplayer or scenario aircraft, including tankers. The aircraft must be a JSBSim aircraft, and it must be added by the aircraft developer.

Adding to an aircraft

Add these lines somewhere in JSB under external reactions:

    <!-- wake turbulence from other AI plane (direction is controlled by properties automatically) -->
    <force name="ai-wake" frame="BODY">
        <location unit="M">
            <!-- Center of the main wing leading edge -->
            <x> ? </x>
            <y> ? </y>
            <z> ? </z>
        </location>
        <direction>
            <x>   0.0 </x>
            <y>   0.0 </y>
            <z>   0.0 </z>
        </direction>
    </force>
    <moment name="ai-wake" frame="BODY">
        <direction>
            <x>   0.0 </x>
            <y>   0.0 </y>
            <z>   0.0 </z>
        </direction>
    </moment>

The only thing you need to adjust is "Center of the main wing leading edge"; which should of course match the aircraft. (replace the '?' marks)