<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.flightgear.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=D-ECHO</id>
	<title>FlightGear wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.flightgear.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=D-ECHO"/>
	<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/Special:Contributions/D-ECHO"/>
	<updated>2026-04-29T13:03:58Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.6</generator>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Howto:Configure_camera_view_windows&amp;diff=143505</id>
		<title>Howto:Configure camera view windows</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Howto:Configure_camera_view_windows&amp;diff=143505"/>
		<updated>2026-01-15T13:43:47Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: /* Required changes in preferences.xml */ Preferences.xml was replaced by defaults.xml&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;: ''See also [[CompositeViewer Support]] and [[Canvas_Development#Supporting_Cameras]]&lt;br /&gt;
&lt;br /&gt;
[[File:Fg-multiview-demo.png|thumb|$FG_ROOT/Docs/README.multiscreen [http://forum.flightgear.org/viewtopic.php?f=6&amp;amp;t=6455&amp;amp;p=260733#p260733]]]&lt;br /&gt;
&lt;br /&gt;
This article discusses '''how to configure camera view windows''' for systems with more than one monitor.  FlightGear's multiple view features are very powerful, and it is amazing how fast things run on medium and even lower range hardware.&lt;br /&gt;
&lt;br /&gt;
== Major modes of operation ==&lt;br /&gt;
FlightGear's [[XML]]-configurable camera view system supports two major modes of operation:&lt;br /&gt;
&lt;br /&gt;
# If you have multiple monitors connected to your computer and setup as separate independent displays (i.e. you can't drag a window back and forth between the monitors, and can't create a window that spans multiple monitors) then you can configure FlightGear to open up a separate window on each display and draw a unique view perspective in each window. (And if you want you can configure flightgear to open multiple windows on a single display.)&lt;br /&gt;
# If you have multiple monitors connected as one larger virtual display, you can configure FlightGear to open up one large window that spans all your displays, but then separate that large window into individual cameras and still draw a unique perspective on each display.&lt;br /&gt;
&lt;br /&gt;
In addition, each view is highly configurable, no matter how your displays are configured.&lt;br /&gt;
&lt;br /&gt;
* You can setup a distinct field of view for each display, so you can create a seamless outside world with different size monitors.&lt;br /&gt;
* If you wish, you can define each view in terms of the low level view frustum parameters, so you can carefully measure your monitor/display layout and configure each view to match your physical layout exactly ... including asymmetric view frustums if need be. Otherwise you can still define your views in terms of a simpler (but less flexible) horizontal/vertical field of view scheme.&lt;br /&gt;
* You can specify the horizontal and vertical offset from center for each display. This allows you to spread out your monitors to account for the physical gap between displays ... this allows you to create an even more seamless virtual world where runway lines and horizon lines start in the correct place on the next monitor when they run off the edge of the first. Imagine taking a large poster, cutting it into pieces and then separating the pieces from each other by a little bit ... none of the straight lines in the original image will pass straight through in the separated/stretched version. Now imagine taking that same picture and cutting strips out of it, but leaving the sections where they were originally. Straight lines are preserved between adjacent pieces. This is what this is about.&lt;br /&gt;
&lt;br /&gt;
=== Use Cases ===&lt;br /&gt;
* ATI (the ATI that makes graphics chips and cards) used a simplified (pre-release) version of this feature to demo 8 screens being driven from a single computer at SigGraph this year.&lt;br /&gt;
* Enter the Matrox Triple Head to Go (do a Google search for it if you haven't heard of it.) This is just a little box, but to the computer, it looks like one giant 3x wide monitor. It plugs into your computer on one side, and on the other side you plug in 3 actual monitors. So you get up to 3 monitors without your computer needing to know anything about it, and even on video cards with only one external display connector (like a laptop.) Using the 2nd mode of operation described above, I divided my one big window into 3 camera views and was able to draw about 120 degree wrap around field of view on 3 displays.&lt;br /&gt;
&lt;br /&gt;
== Required changes in defaults.xml ==&lt;br /&gt;
{{note|1=The changes to defaults.xml suggested here are better added to a personal XML file that can be invoked with the command line option &amp;lt;code&amp;gt;--config=path-to-your-config.xml&amp;lt;/code&amp;gt;.  For details on why and how, see [[FlightGear configuration via XML#Adding your own settings]].}}&lt;br /&gt;
&lt;br /&gt;
As of version 1.9, FlightGear uses [[OpenSceneGraph]] (OSG) for rendering the scenery. OSG already has an implementation for setting up different cameras looking at the scene and they are configured in &amp;lt;tt&amp;gt;[[$FG ROOT]]/defaults.xml&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Slave cameras are created using properties in defaults.xml. One slave is always created that is aligned with the viewing parameters of the&lt;br /&gt;
master camera. Others can be opened in different graphics windows, possibly on other displays and screens. A slave camera is presently created in its own window. Closing any of the windows will close FlightGear as a whole.&lt;br /&gt;
&lt;br /&gt;
Parameters for the slave are currently pretty limited; they include:&lt;br /&gt;
&lt;br /&gt;
* The dimensions and position of the window.&lt;br /&gt;
* &amp;quot;shear&amp;quot; values in projection space.&lt;br /&gt;
* &amp;quot;heading-deg&amp;quot; (a heading offset that was added specifically for LinuxTag).&lt;br /&gt;
&lt;br /&gt;
The shear-x and shear-y values are really only useful for setting up a &amp;quot;video wall&amp;quot; type display where monitors arranged around the &amp;quot;master view&amp;quot; show a view in an offset frustum with the same aspect ratio and fov as the master.&lt;br /&gt;
&lt;br /&gt;
Let's first look at an example, setting up two extra windows. Add something like the following code to the &amp;lt;rendering&amp;gt; section of your defaults.xml file:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
   &amp;lt;camera&amp;gt;&lt;br /&gt;
    &amp;lt;host-name type=&amp;quot;string&amp;quot;&amp;gt;&amp;lt;/host-name&amp;gt;&lt;br /&gt;
    &amp;lt;display&amp;gt;0&amp;lt;/display&amp;gt;&lt;br /&gt;
    &amp;lt;screen&amp;gt;0&amp;lt;/screen&amp;gt;&lt;br /&gt;
    &amp;lt;shear-x&amp;gt;2&amp;lt;/shear-x&amp;gt;&lt;br /&gt;
    &amp;lt;shear-y&amp;gt;1&amp;lt;/shear-y&amp;gt;&lt;br /&gt;
    &amp;lt;width&amp;gt;320&amp;lt;/width&amp;gt;&lt;br /&gt;
    &amp;lt;height&amp;gt;240&amp;lt;/height&amp;gt;&lt;br /&gt;
    &amp;lt;fullscreen type=&amp;quot;bool&amp;quot;&amp;gt;false&amp;lt;/fullscreen&amp;gt;&lt;br /&gt;
   &amp;lt;/camera&amp;gt;&lt;br /&gt;
   &amp;lt;camera&amp;gt;&lt;br /&gt;
    &amp;lt;host-name type=&amp;quot;string&amp;quot;&amp;gt;&amp;lt;/host-name&amp;gt;&lt;br /&gt;
    &amp;lt;display&amp;gt;0&amp;lt;/display&amp;gt;&lt;br /&gt;
    &amp;lt;screen&amp;gt;0&amp;lt;/screen&amp;gt;&lt;br /&gt;
    &amp;lt;shear-x&amp;gt;-2&amp;lt;/shear-x&amp;gt;&lt;br /&gt;
    &amp;lt;shear-y&amp;gt;1&amp;lt;/shear-y&amp;gt;&lt;br /&gt;
    &amp;lt;width&amp;gt;320&amp;lt;/width&amp;gt;&lt;br /&gt;
    &amp;lt;height&amp;gt;240&amp;lt;/height&amp;gt;&lt;br /&gt;
    &amp;lt;fullscreen type=&amp;quot;bool&amp;quot;&amp;gt;false&amp;lt;/fullscreen&amp;gt;&lt;br /&gt;
   &amp;lt;/camera&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To simplify maintenance you can also save these modifications in a separate [[PropertyList XML files|PropertyList XML file]] (in essence the toplevel XML node must be named &amp;quot;PropertyList&amp;quot;) and simply reference it in defaults.xml by making use of the include attribute in the &amp;amp;lt;rendering&amp;amp;gt; section.&lt;br /&gt;
&lt;br /&gt;
defaults.xml will look like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;rendering include=&amp;quot;camera-views.xml&amp;quot;&amp;gt;&lt;br /&gt;
  ...&lt;br /&gt;
  &amp;lt;/rendering&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And a to be created camera-views.xml file will have the following content:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;&lt;br /&gt;
 &amp;lt;PropertyList&amp;gt;&lt;br /&gt;
   &amp;lt;camera&amp;gt;&lt;br /&gt;
    &amp;lt;host-name type=&amp;quot;string&amp;quot;&amp;gt;&amp;lt;/host-name&amp;gt;&lt;br /&gt;
    &amp;lt;display&amp;gt;0&amp;lt;/display&amp;gt;&lt;br /&gt;
    &amp;lt;screen&amp;gt;0&amp;lt;/screen&amp;gt;&lt;br /&gt;
    &amp;lt;shear-x&amp;gt;2&amp;lt;/shear-x&amp;gt;&lt;br /&gt;
    &amp;lt;shear-y&amp;gt;1&amp;lt;/shear-y&amp;gt;&lt;br /&gt;
    &amp;lt;width&amp;gt;320&amp;lt;/width&amp;gt;&lt;br /&gt;
    &amp;lt;height&amp;gt;240&amp;lt;/height&amp;gt;&lt;br /&gt;
    &amp;lt;fullscreen type=&amp;quot;bool&amp;quot;&amp;gt;false&amp;lt;/fullscreen&amp;gt;&lt;br /&gt;
   &amp;lt;/camera&amp;gt;&lt;br /&gt;
   &amp;lt;camera&amp;gt;&lt;br /&gt;
    &amp;lt;host-name type=&amp;quot;string&amp;quot;&amp;gt;&amp;lt;/host-name&amp;gt;&lt;br /&gt;
    &amp;lt;display&amp;gt;0&amp;lt;/display&amp;gt;&lt;br /&gt;
    &amp;lt;screen&amp;gt;0&amp;lt;/screen&amp;gt;&lt;br /&gt;
    &amp;lt;shear-x&amp;gt;-2&amp;lt;/shear-x&amp;gt;&lt;br /&gt;
    &amp;lt;shear-y&amp;gt;1&amp;lt;/shear-y&amp;gt;&lt;br /&gt;
    &amp;lt;width&amp;gt;320&amp;lt;/width&amp;gt;&lt;br /&gt;
    &amp;lt;height&amp;gt;240&amp;lt;/height&amp;gt;&lt;br /&gt;
    &amp;lt;fullscreen type=&amp;quot;bool&amp;quot;&amp;gt;false&amp;lt;/fullscreen&amp;gt;&lt;br /&gt;
   &amp;lt;/camera&amp;gt;&lt;br /&gt;
 &amp;lt;/PropertyList&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Finally, you may be better off just running a separate FlightGear instance on the  second monitor and slaving it. The whole idea behind having a multiple screen setup like twinview is that it mimics a continuous  area with no boundaries.  Putting those screen boundaries back in when  the video subsystem has worked so hard to eliminate them is a metaphor collision and a design problem, see [[Property Tree/Native Protocol Slaving]].&lt;br /&gt;
&lt;br /&gt;
== Related content ==&lt;br /&gt;
=== Wiki articles ===&lt;br /&gt;
* [[PropertyList XML files]]&lt;br /&gt;
* [[FlightGear configuration via XML]]&lt;br /&gt;
* [[ExtraViewWindows]]&lt;br /&gt;
* [[SView]]&lt;br /&gt;
&lt;br /&gt;
=== Mailing list threads ===&lt;br /&gt;
* [http://sourceforge.net/p/flightgear/mailman/message/19411126/ &amp;lt;nowiki&amp;gt;[Flightgear-devel] building view windows&amp;lt;/nowiki&amp;gt;] (May 2008)&lt;br /&gt;
* [http://sourceforge.net/p/flightgear/mailman/message/19718339/ &amp;lt;nowiki&amp;gt;[Flightgear-devel] RFC: changes to views and cameras&amp;lt;/nowiki&amp;gt;] (June-July 2008)&lt;br /&gt;
* [http://sourceforge.net/p/flightgear/mailman/flightgear-devel/thread/4754694F.4040609%40wanadoo.fr/#msg15646938 &amp;lt;nowiki&amp;gt;[Flightgear-devel] dual head problem&amp;lt;/nowiki&amp;gt;] (December 2007)&lt;br /&gt;
* [http://sourceforge.net/p/flightgear/mailman/flightgear-devel/thread/ef5fc9920803171336q6e62c038q65c96b822c9f47f1%40mail.gmail.com/#msg18867154 &amp;lt;nowiki&amp;gt;[Flightgear-devel] Matrox TripleHead2Go&amp;lt;/nowiki&amp;gt;] (Marsh 2008-June 2011)&lt;br /&gt;
* [http://sourceforge.net/p/flightgear/mailman/flightgear-devel/thread/20081014201611.GC1483%40voyageur.mas.nom.fr/#msg20557100 &amp;lt;nowiki&amp;gt;[Flightgear-devel] Patch for multiscreen mode with multiplayer&amp;lt;/nowiki&amp;gt;] (October 2008)&lt;br /&gt;
&lt;br /&gt;
=== Readme file ===&lt;br /&gt;
* {{readme file|multiscreen}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* David R. Miller, [http://www.inkdrop.net/dave/multimon.pdf ''Multiple Monitors in FlightGear: Quick and Dirty''] (PDF, 0.8 MB), last updated 4 Mar 2006. Setting up multiple monitors on multiple system with different OS:es.  May be outdated.&lt;br /&gt;
* example files from the german c't magazine: ftp://ftp.heise.de/pub/ct/listings/1309-162.zip&lt;br /&gt;
&lt;br /&gt;
[[Category:Howto|Configure camera views in Windows]]&lt;br /&gt;
[[Category:Discusses editing preferences.xml]]&lt;br /&gt;
&lt;br /&gt;
[[es:Cómo configurar ventanas de vistas de cámara]]&lt;br /&gt;
[[fr:Howto:Configurer cameras, vues et fenêtres]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Schleicher_ASK_13&amp;diff=143495</id>
		<title>Schleicher ASK 13</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Schleicher_ASK_13&amp;diff=143495"/>
		<updated>2026-01-13T13:05:35Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: minor changes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Stub}}&lt;br /&gt;
{{:{{PAGENAME}}/info}}&lt;br /&gt;
The '''Schleichter ASK 13''' is a two-seater [[Gliders|glider]] that was built by Alexander Schleicher. It was and still is widely used for ab-initio training of glider pilots.&lt;br /&gt;
&lt;br /&gt;
The [[FlightGear]] model of the ASK-13 comes with a basic [[dual control]] support. So far this is only a passive passenger view, but yet an instructor can be with their student and help newcomers to discover the joys of soaring by real time piloting advices.&lt;br /&gt;
&lt;br /&gt;
== Development status ==&lt;br /&gt;
General:&lt;br /&gt;
&lt;br /&gt;
* Dual Control is now limited to a simple , passive passenger view.&lt;br /&gt;
* Passenger view has a very limited audio support.&lt;br /&gt;
* FDM is relatively accurate, but could be fine tuned. Testers are welcome !&lt;br /&gt;
&lt;br /&gt;
== Related content ==&lt;br /&gt;
* [[Howto: Do aerotow over the net]]&lt;br /&gt;
* [[Soaring]]&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
* {{Wikipedia|Schleicher ASK 13 |lang=en}}&lt;br /&gt;
* POH https://www.psgc.co.uk/pdf/ask13_flight_manual.pdf&lt;br /&gt;
&lt;br /&gt;
{{Schleicher}}&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Aircraft_information_resources&amp;diff=141641</id>
		<title>Aircraft information resources</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Aircraft_information_resources&amp;diff=141641"/>
		<updated>2025-03-30T07:20:52Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: /* Aircraft resources */ Add cockpit panel milspec, thanks to JohanG for pointing to the specs!&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please note that as of 04/2009, the section about avionics documents has been moved to a new page that is to be found at [[Avionics development resources]].&lt;br /&gt;
Also the section on aircraft operating manuals/handbooks has now been moved to a new dedicated page: [[Aircraft manuals]].&lt;br /&gt;
{{TOC limit|3}}&lt;br /&gt;
&lt;br /&gt;
== Aircraft resources ==&lt;br /&gt;
=== General ===&lt;br /&gt;
* [http://www.airlinercafe.com/list.php?c=walkarounds Airlinercafe] Detailed and high resolution pictures of major components on airliners. ('''Recommended''')&lt;br /&gt;
* [http://www.avialogs.com Avialogs.com] Huge amount of aircraft and engine manuals. ('''Recommended''')&lt;br /&gt;
* [http://booksite.elsevier.com/9780340741528/appendices/default.htm Civil Jet Aircraft Design]&lt;br /&gt;
* [http://simviation.com/designresources.htm Simviation- lots of 3-views]&lt;br /&gt;
* [http://www.smartcockpit.com/ Smart Cockpit]&lt;br /&gt;
* '''Cockpit Panels:''' Many aircraft, both military and civilian, use military standards for size and configuration of panels. Good resources for these dimensions are the military standards [http://everyspec.com/MIL-SPECS/MIL-SPECS-MIL-F/MIL-F-25173A_15077/ MIL-F-25173A] (for fasteners i.e. screws) and [http://everyspec.com/MS-Specs/MS2/MS25000-MS25999/MS25212C_42008/ MS25212C] for panel dimensions. A sample [[Blender]] file with all different panel sizes for these standards is available [https://github.com/D-ECHO/AircraftDevelopmentResources/blob/main/panel-spec.blend here].&lt;br /&gt;
&lt;br /&gt;
=== Tire data ===&lt;br /&gt;
* [https://www.goodyearaviation.com/resources/tiredatabook.html Goodyear Aviation's Tire Databook]&lt;br /&gt;
&lt;br /&gt;
=== Diagrams and 3-views ===&lt;br /&gt;
{{see also|Modeling Resources}}&lt;br /&gt;
&lt;br /&gt;
* http://www.seawings.co.uk/reference.htm Diagrams and other data on seaplanes&lt;br /&gt;
* http://www.aircraftdesign.com/acpix.html Lots of 3-views on prototype and experimental &lt;br /&gt;
* http://www.aviastar.org/index.html only helicopters&lt;br /&gt;
&lt;br /&gt;
=== Airbus ===&lt;br /&gt;
==== A320 ====&lt;br /&gt;
* http://www.airbusdriver.net&lt;br /&gt;
* http://www.e-flight.com/a320.htm&lt;br /&gt;
&lt;br /&gt;
==== A340 ====&lt;br /&gt;
* http://www.a340.net/&lt;br /&gt;
&lt;br /&gt;
==== A380 ====&lt;br /&gt;
* http://www.gillesvidal.com/blogpano/cockpit1.htm&lt;br /&gt;
&lt;br /&gt;
=== Boeing ===&lt;br /&gt;
==== 737 ====&lt;br /&gt;
* http://www.b737.org.uk/&lt;br /&gt;
* http://www.boeing.com/commercial/737family/&lt;br /&gt;
&lt;br /&gt;
==== 757 ====&lt;br /&gt;
* http://www.757.org.uk&lt;br /&gt;
&lt;br /&gt;
=== Cessna ===&lt;br /&gt;
==== C152 ====&lt;br /&gt;
* [http://www.fmfa.org/docs/c152_checklist.pdf Checklist]&lt;br /&gt;
* [http://www.fmfa.org/docs/c152_emergency.pdf Emergency Checklist]&lt;br /&gt;
* [http://www.fmfa.org/docs/c152_complete.pdf Combined Checklist]&lt;br /&gt;
&lt;br /&gt;
==== C172 ====&lt;br /&gt;
* [http://www.pacificcoastflyers.org/files/POH/C172N_POH.pdf C172N Pilot Operating Handbook]&lt;br /&gt;
* http://www.fortmeadeflyingactivity.org/docs/c172p180_n9871fm_combined_procedures_checklist.pdf&lt;br /&gt;
* [http://www.fmfa.org/docs/c172p180_poh_addendum.pdf C172p180 POH Addendum]&lt;br /&gt;
* [http://www.fmfa.org/docs/c172p180_n9871fm_standard_procedures_checklist.pdf Standard Procedures Checklist]&lt;br /&gt;
* [http://www.fmfa.org/docs/c172p180_n9871fm_emergency_procedures_checklist.pdf Emergency Procedures Checklist]&lt;br /&gt;
* [http://www.fmfa.org/docs/c172p180_n9871fm_combined_procedures_checklist.pdf Combined Checklist]&lt;br /&gt;
&lt;br /&gt;
=== Grob ===&lt;br /&gt;
* http://freechecklists.net/Resources/Grob/G-115/&lt;br /&gt;
&lt;br /&gt;
=== Mil ===&lt;br /&gt;
* Fantastic detail on most aspects of the Mi-2 and Mi-8 including detailed cockpit photos, system diagrams and descriptions from a former pilot (in German). Also excellent sections full of diagrams on aerodynamic theory for both fixed and rotary wing. http://nva-flieger.de/&lt;br /&gt;
&lt;br /&gt;
=== Piper ===&lt;br /&gt;
==== Piper Arrow ====&lt;br /&gt;
* [http://www.fmfa.org/docs/pa28r_checklist.pdf pa28r Checklist]&lt;br /&gt;
* [http://www.fmfa.org/docs/pa28r_emergency.pdf Emergency Procedures]&lt;br /&gt;
* [http://www.fmfa.org/docs/pa28r_complete.pdf Combined Checklist]&lt;br /&gt;
&lt;br /&gt;
== Gas Turbine Data ==&lt;br /&gt;
==== General ====&lt;br /&gt;
* [http://www.jet-engine.net/civtfspec.html Civilian Turbojet/Turbofan Specifications]&lt;br /&gt;
* [http://www.jet-engine.net/miltfspec.html Military Turbojet/Turbofan Specifications]&lt;br /&gt;
&lt;br /&gt;
[[Category:Aircraft resources]]&lt;br /&gt;
[[Category:Lists]]&lt;br /&gt;
[[Category:Resources]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8&amp;diff=141330</id>
		<title>De Havilland Canada DHC-8</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8&amp;diff=141330"/>
		<updated>2025-02-09T18:42:59Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: /* Related content */ Change forum link&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:{{PAGENAME}}/info}}&lt;br /&gt;
The '''De Havilland Canada DHC-8 Series''', also known as the Dash8 or QSeries, is a family of short-haul twin-engine turboprop airliners. While originally being developed and built by DeHavilland Canada, they were produced by Bombardier Aerospace a long time, before being transferred to Longview Aviation in late 2018. Different Pratt&amp;amp;Whitney (PW) Turboprops are used.&amp;lt;gallery mode=&amp;quot;packed-hover&amp;quot;&amp;gt;&lt;br /&gt;
File:DHC-8-400-exterior.jpg|Exterior view of the DHC-8-400 at Bergen Lufthavn&lt;br /&gt;
File:DHC-8-400 Cockpit In-Flight.jpg| Cockpit of the DHC-8-400 in flight above Norway &lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Liveries / Operators &amp;lt;ref&amp;gt;{{wikipedia|List of De Havilland Canada Dash 8 operators}}&amp;lt;/ref&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
'''If you wish to improve current liveries or make new ones, please have a look at README.liveries.md in the Aircraft's folder for important contributing information.'''&lt;br /&gt;
&lt;br /&gt;
The following tables show the operators of the different variants, with only those shown that operate more than 5 aircraft of the corresponding variant.&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-100 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator &lt;br /&gt;
!ICAO!! Number of Aircraft !! Livery Status&lt;br /&gt;
!Comment&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe &lt;br /&gt;
|WIF|| 22 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Voyageur Airways&lt;br /&gt;
|VAL&lt;br /&gt;
|20&lt;br /&gt;
|{{not done}}&lt;br /&gt;
|Seemingly only white liveries&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air &lt;br /&gt;
|JZA|| 15 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Air Creebec &lt;br /&gt;
|CRQ|| 14 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Airlines PNG &lt;br /&gt;
|TOK|| 10 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Ravn Alaska (previously Era Airways) &lt;br /&gt;
|RVF|| 10 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Perimeter Aviation&lt;br /&gt;
|PAG&lt;br /&gt;
|9&lt;br /&gt;
|{{not done}}&lt;br /&gt;
|Leased to multiple operators&lt;br /&gt;
|-&lt;br /&gt;
|Aircraft Leasing Services&lt;br /&gt;
| -&lt;br /&gt;
|8&lt;br /&gt;
|{{done}}&lt;br /&gt;
|Leased to multiple operators, UN WFP livery modelled&lt;br /&gt;
|-&lt;br /&gt;
|748 Air Services&lt;br /&gt;
|IHO&lt;br /&gt;
|6&lt;br /&gt;
|{{not done}}&lt;br /&gt;
|Leased mostly to the UN; mostly white liveries&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-200 ===&lt;br /&gt;
The threshold for inclusion into the table is &amp;quot;'''more than 1&amp;quot;''' since only 42 DHC-8-200 aircraft were built.&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator &lt;br /&gt;
!ICAO!! Number of Aircraft !! Livery Status&lt;br /&gt;
!Comment&lt;br /&gt;
|-&lt;br /&gt;
| Air Greenland &lt;br /&gt;
|GRL|| 8 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Tassili Airlines Algeria &lt;br /&gt;
|DTH|| 4 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe &lt;br /&gt;
|WIF|| 3 || {{done}}&lt;br /&gt;
|Old and New Livery available&lt;br /&gt;
|-&lt;br /&gt;
| Qantas Link (operated by Eastern Australia Airlines) &lt;br /&gt;
|QLK|| 3 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Icelandair (previously Air Iceland) &lt;br /&gt;
|ICE|| 3 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Abu Dhabi Aviation &lt;br /&gt;
| AXU|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Air Niugini &lt;br /&gt;
| ANG|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Aurora &lt;br /&gt;
| SHU|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Bombardier Inc. &lt;br /&gt;
| -|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Maldivian &lt;br /&gt;
| DQA|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Oriental Air Bridge &lt;br /&gt;
| ORC|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| SATA Air Acores &lt;br /&gt;
| SAT|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-300 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator &lt;br /&gt;
!ICAO!! Number of Aircraft !! Livery Status&lt;br /&gt;
!Comment&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air &lt;br /&gt;
|JZA|| 26 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Air New Zealand &lt;br /&gt;
|ANZ|| 23 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Voyageur Airways&lt;br /&gt;
|VAL&lt;br /&gt;
|18&lt;br /&gt;
|{{not done}}|-&lt;br /&gt;
|Seemingly only white liveries&lt;br /&gt;
|-&lt;br /&gt;
|QantasLink&lt;br /&gt;
|&lt;br /&gt;
|16&lt;br /&gt;
|{{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Air Inuit &lt;br /&gt;
|AIE|| 9 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Maldivian &lt;br /&gt;
|DQA|| 8 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Skippers Aviation &lt;br /&gt;
| -|| 6 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe &lt;br /&gt;
|WIF|| 6 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-400 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator &lt;br /&gt;
!ICAO!! Number of Aircraft !! Livery Status !! Comment&lt;br /&gt;
|-&lt;br /&gt;
| Horizon Air &lt;br /&gt;
| || 47 || {{done}} || 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| WestJet Encore &lt;br /&gt;
| || 47 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air (Air Canada) &lt;br /&gt;
|JZA|| 44 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Qantas Link (operated by Sunstate Airlines) &lt;br /&gt;
|QLK|| 31 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Porter Airlines &lt;br /&gt;
|POE/PTR|| 29 || {{done}}||&lt;br /&gt;
|-&lt;br /&gt;
| Ethiopian Airlines &lt;br /&gt;
|ETH|| 26 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| ANA Wings &lt;br /&gt;
|ANA/AKX|| 24 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| SpiceJet &lt;br /&gt;
|SEJ|| 22 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Austrian Airlines (Tyrolean Airways) &lt;br /&gt;
|AUA/TYR|| 14 || {{done}} || 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| Bombardier Inc. &lt;br /&gt;
| -|| 14 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| PAL Express &lt;br /&gt;
|GAP|| 12 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| airBaltic &lt;br /&gt;
|BTI|| 12 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| LOT Polish Airlines &lt;br /&gt;
|LOT|| 12 || {{done}} || 2 liveries: LOT and euroLOT&lt;br /&gt;
|-&lt;br /&gt;
| Luxair &lt;br /&gt;
|LGL|| 11 || {{done}}||&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe &lt;br /&gt;
|WIF|| 11 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| South African Express &lt;br /&gt;
|EXY|| 10 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Olympic Air &lt;br /&gt;
|OAL|| 8 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| JamboJet &lt;br /&gt;
|JMA|| 7 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Croatia Airlines &lt;br /&gt;
|CTN|| 6 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| SATA Air Acores &lt;br /&gt;
|SAT|| 4 || {{done}} || included despite low number due to interest ;D&lt;br /&gt;
|-&lt;br /&gt;
| Biman Bangladesh Airlines &lt;br /&gt;
|BBC|| 2 || {{done}} || included despite low number due to interest ;D&lt;br /&gt;
|-&lt;br /&gt;
| Air Berlin &lt;br /&gt;
|BER|| 0 || {{done}} || former operator&lt;br /&gt;
|-&lt;br /&gt;
| Brussels Airlines &lt;br /&gt;
| || 0 || {{done}}|| former operator&lt;br /&gt;
|-&lt;br /&gt;
| FlyBe &lt;br /&gt;
|BEE|| 0 || {{done}} || former operator; 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| Scandinavian Commuter &lt;br /&gt;
| || 0 || {{done}} || former operator&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Related content ==&lt;br /&gt;
=== Forum topics ===&lt;br /&gt;
* [https://forum.flightgear.org/viewtopic.php?f=4&amp;amp;t=43015 De Havilland Canada DHC-8] - Dedicated topic on the FlightGear forums&lt;br /&gt;
 &lt;br /&gt;
== External links ==&lt;br /&gt;
* {{wikipedia|De Havilland Canada Dash 8}} - The DHC-8 Series on Wikipedia&lt;br /&gt;
&lt;br /&gt;
{{appendix}}&lt;br /&gt;
&lt;br /&gt;
{{de Havilland Canada}}&lt;br /&gt;
{{Bombardier}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Airliners]]&lt;br /&gt;
[[Category:Twin-engine aircraft]]&lt;br /&gt;
[[Category:Red Griffin ATC compatible aircraft]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8&amp;diff=141329</id>
		<title>De Havilland Canada DHC-8</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8&amp;diff=141329"/>
		<updated>2025-02-09T15:36:28Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Update livery list&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:{{PAGENAME}}/info}}&lt;br /&gt;
The '''De Havilland Canada DHC-8 Series''', also known as the Dash8 or QSeries, is a family of short-haul twin-engine turboprop airliners. While originally being developed and built by DeHavilland Canada, they were produced by Bombardier Aerospace a long time, before being transferred to Longview Aviation in late 2018. Different Pratt&amp;amp;Whitney (PW) Turboprops are used.&amp;lt;gallery mode=&amp;quot;packed-hover&amp;quot;&amp;gt;&lt;br /&gt;
File:DHC-8-400-exterior.jpg|Exterior view of the DHC-8-400 at Bergen Lufthavn&lt;br /&gt;
File:DHC-8-400 Cockpit In-Flight.jpg| Cockpit of the DHC-8-400 in flight above Norway &lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Liveries / Operators &amp;lt;ref&amp;gt;{{wikipedia|List of De Havilland Canada Dash 8 operators}}&amp;lt;/ref&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
'''If you wish to improve current liveries or make new ones, please have a look at README.liveries.md in the Aircraft's folder for important contributing information.'''&lt;br /&gt;
&lt;br /&gt;
The following tables show the operators of the different variants, with only those shown that operate more than 5 aircraft of the corresponding variant.&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-100 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator &lt;br /&gt;
!ICAO!! Number of Aircraft !! Livery Status&lt;br /&gt;
!Comment&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe &lt;br /&gt;
|WIF|| 22 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Voyageur Airways&lt;br /&gt;
|VAL&lt;br /&gt;
|20&lt;br /&gt;
|{{not done}}&lt;br /&gt;
|Seemingly only white liveries&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air &lt;br /&gt;
|JZA|| 15 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Air Creebec &lt;br /&gt;
|CRQ|| 14 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Airlines PNG &lt;br /&gt;
|TOK|| 10 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Ravn Alaska (previously Era Airways) &lt;br /&gt;
|RVF|| 10 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Perimeter Aviation&lt;br /&gt;
|PAG&lt;br /&gt;
|9&lt;br /&gt;
|{{not done}}&lt;br /&gt;
|Leased to multiple operators&lt;br /&gt;
|-&lt;br /&gt;
|Aircraft Leasing Services&lt;br /&gt;
| -&lt;br /&gt;
|8&lt;br /&gt;
|{{done}}&lt;br /&gt;
|Leased to multiple operators, UN WFP livery modelled&lt;br /&gt;
|-&lt;br /&gt;
|748 Air Services&lt;br /&gt;
|IHO&lt;br /&gt;
|6&lt;br /&gt;
|{{not done}}&lt;br /&gt;
|Leased mostly to the UN; mostly white liveries&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-200 ===&lt;br /&gt;
The threshold for inclusion into the table is &amp;quot;'''more than 1&amp;quot;''' since only 42 DHC-8-200 aircraft were built.&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator &lt;br /&gt;
!ICAO!! Number of Aircraft !! Livery Status&lt;br /&gt;
!Comment&lt;br /&gt;
|-&lt;br /&gt;
| Air Greenland &lt;br /&gt;
|GRL|| 8 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Tassili Airlines Algeria &lt;br /&gt;
|DTH|| 4 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe &lt;br /&gt;
|WIF|| 3 || {{done}}&lt;br /&gt;
|Old and New Livery available&lt;br /&gt;
|-&lt;br /&gt;
| Qantas Link (operated by Eastern Australia Airlines) &lt;br /&gt;
|QLK|| 3 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Icelandair (previously Air Iceland) &lt;br /&gt;
|ICE|| 3 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Abu Dhabi Aviation &lt;br /&gt;
| AXU|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Air Niugini &lt;br /&gt;
| ANG|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Aurora &lt;br /&gt;
| SHU|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Bombardier Inc. &lt;br /&gt;
| -|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Maldivian &lt;br /&gt;
| DQA|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Oriental Air Bridge &lt;br /&gt;
| ORC|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| SATA Air Acores &lt;br /&gt;
| SAT|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-300 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator &lt;br /&gt;
!ICAO!! Number of Aircraft !! Livery Status&lt;br /&gt;
!Comment&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air &lt;br /&gt;
|JZA|| 26 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Air New Zealand &lt;br /&gt;
|ANZ|| 23 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Voyageur Airways&lt;br /&gt;
|VAL&lt;br /&gt;
|18&lt;br /&gt;
|{{not done}}|-&lt;br /&gt;
|Seemingly only white liveries&lt;br /&gt;
|-&lt;br /&gt;
|QantasLink&lt;br /&gt;
|&lt;br /&gt;
|16&lt;br /&gt;
|{{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Air Inuit &lt;br /&gt;
|AIE|| 9 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Maldivian &lt;br /&gt;
|DQA|| 8 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Skippers Aviation &lt;br /&gt;
| -|| 6 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe &lt;br /&gt;
|WIF|| 6 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-400 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator &lt;br /&gt;
!ICAO!! Number of Aircraft !! Livery Status !! Comment&lt;br /&gt;
|-&lt;br /&gt;
| Horizon Air &lt;br /&gt;
| || 47 || {{done}} || 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| WestJet Encore &lt;br /&gt;
| || 47 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air (Air Canada) &lt;br /&gt;
|JZA|| 44 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Qantas Link (operated by Sunstate Airlines) &lt;br /&gt;
|QLK|| 31 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Porter Airlines &lt;br /&gt;
|POE/PTR|| 29 || {{done}}||&lt;br /&gt;
|-&lt;br /&gt;
| Ethiopian Airlines &lt;br /&gt;
|ETH|| 26 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| ANA Wings &lt;br /&gt;
|ANA/AKX|| 24 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| SpiceJet &lt;br /&gt;
|SEJ|| 22 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Austrian Airlines (Tyrolean Airways) &lt;br /&gt;
|AUA/TYR|| 14 || {{done}} || 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| Bombardier Inc. &lt;br /&gt;
| -|| 14 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| PAL Express &lt;br /&gt;
|GAP|| 12 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| airBaltic &lt;br /&gt;
|BTI|| 12 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| LOT Polish Airlines &lt;br /&gt;
|LOT|| 12 || {{done}} || 2 liveries: LOT and euroLOT&lt;br /&gt;
|-&lt;br /&gt;
| Luxair &lt;br /&gt;
|LGL|| 11 || {{done}}||&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe &lt;br /&gt;
|WIF|| 11 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| South African Express &lt;br /&gt;
|EXY|| 10 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Olympic Air &lt;br /&gt;
|OAL|| 8 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| JamboJet &lt;br /&gt;
|JMA|| 7 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Croatia Airlines &lt;br /&gt;
|CTN|| 6 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| SATA Air Acores &lt;br /&gt;
|SAT|| 4 || {{done}} || included despite low number due to interest ;D&lt;br /&gt;
|-&lt;br /&gt;
| Biman Bangladesh Airlines &lt;br /&gt;
|BBC|| 2 || {{done}} || included despite low number due to interest ;D&lt;br /&gt;
|-&lt;br /&gt;
| Air Berlin &lt;br /&gt;
|BER|| 0 || {{done}} || former operator&lt;br /&gt;
|-&lt;br /&gt;
| Brussels Airlines &lt;br /&gt;
| || 0 || {{done}}|| former operator&lt;br /&gt;
|-&lt;br /&gt;
| FlyBe &lt;br /&gt;
|BEE|| 0 || {{done}} || former operator; 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| Scandinavian Commuter &lt;br /&gt;
| || 0 || {{done}} || former operator&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Related content ==&lt;br /&gt;
=== Forum topics ===&lt;br /&gt;
* [https://forum.flightgear.org/viewtopic.php?f=4&amp;amp;t=35719 De Havilland DHC-8] - Dedicated topic on the FlightGear forums&lt;br /&gt;
 &lt;br /&gt;
== External links ==&lt;br /&gt;
* {{wikipedia|De Havilland Canada Dash 8}} - The DHC-8 Series on Wikipedia&lt;br /&gt;
&lt;br /&gt;
{{appendix}}&lt;br /&gt;
&lt;br /&gt;
{{de Havilland Canada}}&lt;br /&gt;
{{Bombardier}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Airliners]]&lt;br /&gt;
[[Category:Twin-engine aircraft]]&lt;br /&gt;
[[Category:Red Griffin ATC compatible aircraft]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8&amp;diff=141319</id>
		<title>De Havilland Canada DHC-8</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8&amp;diff=141319"/>
		<updated>2025-02-06T13:30:04Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Update livery tables with ICAO code, remove airlines that seem to no longer operate the DHC-8&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:{{PAGENAME}}/info}}&lt;br /&gt;
The '''De Havilland Canada DHC-8 Series''', also known as the Dash8 or QSeries, is a family of short-haul twin-engine turboprop airliners. While originally being developed and built by DeHavilland Canada, they were produced by Bombardier Aerospace a long time, before being transferred to Longview Aviation in late 2018. Different Pratt&amp;amp;Whitney (PW) Turboprops are used.&amp;lt;gallery mode=&amp;quot;packed-hover&amp;quot;&amp;gt;&lt;br /&gt;
File:DHC-8-400-exterior.jpg|Exterior view of the DHC-8-400 at Bergen Lufthavn&lt;br /&gt;
File:DHC-8-400 Cockpit In-Flight.jpg| Cockpit of the DHC-8-400 in flight above Norway &lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Liveries / Operators &amp;lt;ref&amp;gt;{{wikipedia|List of De Havilland Canada Dash 8 operators}}&amp;lt;/ref&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
'''If you wish to improve current liveries or make new ones, please have a look at README.liveries.md in the Aircraft's folder for important contributing information.'''&lt;br /&gt;
&lt;br /&gt;
The following tables show the operators of the different variants, with only those shown that operate more than 5 aircraft of the corresponding variant.&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-100 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator &lt;br /&gt;
!ICAO!! Number of Aircraft !! Livery Status&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe &lt;br /&gt;
|WIF|| 22 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
|Voyageur Airways&lt;br /&gt;
|VAL&lt;br /&gt;
|20&lt;br /&gt;
|{{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air &lt;br /&gt;
|JZA|| 15 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Air Creebec &lt;br /&gt;
|CRQ|| 14 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Airlines PNG &lt;br /&gt;
|TOK|| 10 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Ravn Alaska (previously Era Airways) &lt;br /&gt;
|RVF|| 10 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
|Perimeter Aviation&lt;br /&gt;
|PAG&lt;br /&gt;
|9&lt;br /&gt;
|{{not done}}&lt;br /&gt;
|-&lt;br /&gt;
|Aircraft Leasing Services&lt;br /&gt;
| -&lt;br /&gt;
|8&lt;br /&gt;
|{{Not done}}&lt;br /&gt;
|-&lt;br /&gt;
|748 Air Services&lt;br /&gt;
|IHO&lt;br /&gt;
|6&lt;br /&gt;
|{{not done}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-200 ===&lt;br /&gt;
The threshold for inclusion into the table is &amp;quot;'''more than 1&amp;quot;''' since only 42 DHC-8-200 aircraft were built.&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator &lt;br /&gt;
!ICAO!! Number of Aircraft !! Livery Status&lt;br /&gt;
!Comment&lt;br /&gt;
|-&lt;br /&gt;
| Air Greenland &lt;br /&gt;
|GRL|| 8 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Tassili Airlines Algeria &lt;br /&gt;
|DTH|| 4 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe &lt;br /&gt;
|WIF|| 3 || {{done}}&lt;br /&gt;
|Old and New Livery available&lt;br /&gt;
|-&lt;br /&gt;
| Qantas Link (operated by Eastern Australia Airlines) &lt;br /&gt;
|QLK|| 3 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Icelandair (previously Air Iceland) &lt;br /&gt;
|ICE|| 3 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Abu Dhabi Aviation &lt;br /&gt;
| AXU|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Air Niugini &lt;br /&gt;
| ANG|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Aurora &lt;br /&gt;
| SHU|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Bombardier Inc. &lt;br /&gt;
| -|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Maldivian &lt;br /&gt;
| DQA|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Oriental Air Bridge &lt;br /&gt;
| ORC|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| SATA Air Acores &lt;br /&gt;
| SAT|| 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-300 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator &lt;br /&gt;
!ICAO!! Number of Aircraft !! Livery Status&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air &lt;br /&gt;
|JZA|| 26 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Air New Zealand &lt;br /&gt;
|ANZ|| 23 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
|Voyageur Airways&lt;br /&gt;
|VAL&lt;br /&gt;
|18&lt;br /&gt;
|{{not done}}|-&lt;br /&gt;
| QantasLink || 16 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Air Inuit &lt;br /&gt;
|AIE|| 9 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Maldivian &lt;br /&gt;
|DQA|| 8 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Skippers Aviation &lt;br /&gt;
| -|| 6 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe &lt;br /&gt;
|WIF|| 6 || {{done}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-400 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator &lt;br /&gt;
!ICAO!! Number of Aircraft !! Livery Status !! Comment&lt;br /&gt;
|-&lt;br /&gt;
| Horizon Air &lt;br /&gt;
| || 47 || {{done}} || 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| WestJet Encore &lt;br /&gt;
| || 47 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air (Air Canada) &lt;br /&gt;
|JZA|| 44 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Qantas Link (operated by Sunstate Airlines) &lt;br /&gt;
|QLK|| 31 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Porter Airlines &lt;br /&gt;
|POE/PTR|| 29 || {{done}}||&lt;br /&gt;
|-&lt;br /&gt;
| Ethiopian Airlines &lt;br /&gt;
|ETH|| 26 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| ANA Wings &lt;br /&gt;
|ANA/AKX|| 24 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| SpiceJet &lt;br /&gt;
|SEJ|| 22 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Austrian Airlines (Tyrolean Airways) &lt;br /&gt;
|AUA/TYR|| 14 || {{done}} || 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| Bombardier Inc. &lt;br /&gt;
| -|| 14 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| PAL Express &lt;br /&gt;
|GAP|| 12 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| airBaltic &lt;br /&gt;
|BTI|| 12 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| LOT Polish Airlines &lt;br /&gt;
|LOT|| 12 || {{done}} || 2 liveries: LOT and euroLOT&lt;br /&gt;
|-&lt;br /&gt;
| Luxair &lt;br /&gt;
|LGL|| 11 || {{done}}||&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe &lt;br /&gt;
|WIF|| 11 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| South African Express &lt;br /&gt;
|EXY|| 10 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Olympic Air &lt;br /&gt;
|OAL|| 8 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| JamboJet &lt;br /&gt;
|JMA|| 7 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Croatia Airlines &lt;br /&gt;
|CTN|| 6 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| SATA Air Acores &lt;br /&gt;
|SAT|| 4 || {{done}} || included despite low number due to interest ;D&lt;br /&gt;
|-&lt;br /&gt;
| Biman Bangladesh Airlines &lt;br /&gt;
|BBC|| 2 || {{done}} || included despite low number due to interest ;D&lt;br /&gt;
|-&lt;br /&gt;
| Air Berlin &lt;br /&gt;
|BER|| 0 || {{done}} || former operator&lt;br /&gt;
|-&lt;br /&gt;
| Brussels Airlines &lt;br /&gt;
| || 0 || {{done}}|| former operator&lt;br /&gt;
|-&lt;br /&gt;
| FlyBe &lt;br /&gt;
|BEE|| 0 || {{done}} || former operator; 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| Scandinavian Commuter &lt;br /&gt;
| || 0 || {{done}} || former operator&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Related content ==&lt;br /&gt;
=== Forum topics ===&lt;br /&gt;
* [https://forum.flightgear.org/viewtopic.php?f=4&amp;amp;t=35719 De Havilland DHC-8] - Dedicated topic on the FlightGear forums&lt;br /&gt;
 &lt;br /&gt;
== External links ==&lt;br /&gt;
* {{wikipedia|De Havilland Canada Dash 8}} - The DHC-8 Series on Wikipedia&lt;br /&gt;
&lt;br /&gt;
{{appendix}}&lt;br /&gt;
&lt;br /&gt;
{{de Havilland Canada}}&lt;br /&gt;
{{Bombardier}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Airliners]]&lt;br /&gt;
[[Category:Twin-engine aircraft]]&lt;br /&gt;
[[Category:Red Griffin ATC compatible aircraft]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8&amp;diff=141318</id>
		<title>De Havilland Canada DHC-8</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8&amp;diff=141318"/>
		<updated>2025-02-06T13:17:32Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Update Liveries&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:{{PAGENAME}}/info}}&lt;br /&gt;
The '''De Havilland Canada DHC-8 Series''', also known as the Dash8 or QSeries, is a family of short-haul twin-engine turboprop airliners. While originally being developed and built by DeHavilland Canada, they were produced by Bombardier Aerospace a long time, before being transferred to Longview Aviation in late 2018. Different Pratt&amp;amp;Whitney (PW) Turboprops are used.&amp;lt;gallery mode=&amp;quot;packed-hover&amp;quot;&amp;gt;&lt;br /&gt;
File:DHC-8-400-exterior.jpg|Exterior view of the DHC-8-400 at Bergen Lufthavn&lt;br /&gt;
File:DHC-8-400 Cockpit In-Flight.jpg| Cockpit of the DHC-8-400 in flight above Norway &lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Liveries / Operators &amp;lt;ref&amp;gt;{{wikipedia|List of De Havilland Canada Dash 8 operators}}&amp;lt;/ref&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
'''If you wish to improve current liveries or make new ones, please have a look at README.liveries.md in the Aircraft's folder for important contributing information.'''&lt;br /&gt;
&lt;br /&gt;
The following tables show the operators of the different variants, with only those shown that operate more than 5 aircraft of the corresponding variant.&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-100 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator &lt;br /&gt;
!ICAO!! Number of Aircraft !! Livery Status&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe &lt;br /&gt;
|WIF|| 22 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
|Voyageur Airways&lt;br /&gt;
|VAL&lt;br /&gt;
|20&lt;br /&gt;
|{{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air &lt;br /&gt;
|JZA|| 15 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Air Creebec &lt;br /&gt;
|CRQ|| 14 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Airlines PNG &lt;br /&gt;
|TOK|| 10 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Ravn Alaska (previously Era Airways) &lt;br /&gt;
|RVF|| 10 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
|Perimeter Aviation&lt;br /&gt;
|PAG&lt;br /&gt;
|9&lt;br /&gt;
|{{not done}}&lt;br /&gt;
|-&lt;br /&gt;
|Aircraft Leasing Services&lt;br /&gt;
| -&lt;br /&gt;
|8&lt;br /&gt;
|{{Not done}}&lt;br /&gt;
|-&lt;br /&gt;
|748 Air Services&lt;br /&gt;
|IHO&lt;br /&gt;
|6&lt;br /&gt;
|{{not done}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-200 ===&lt;br /&gt;
The threshold for inclusion into the table is &amp;quot;'''more than 1&amp;quot;''' since only 42 DHC-8-200 aircraft were built.&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator &lt;br /&gt;
!ICAO!! Number of Aircraft !! Livery Status&lt;br /&gt;
!Comment&lt;br /&gt;
|-&lt;br /&gt;
| Air Greenland &lt;br /&gt;
|GRL|| 8 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Tassili Airlines Algeria &lt;br /&gt;
|DTH|| 4 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe &lt;br /&gt;
|WIF|| 3 || {{done}}&lt;br /&gt;
|Old and New Livery available&lt;br /&gt;
|-&lt;br /&gt;
| Qantas Link (Eastern Australia Airlines) &lt;br /&gt;
|EAQ|| 3 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Icelandair (previously Air Iceland) &lt;br /&gt;
|ICE|| 3 || {{done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Abu Dhabi Aviation &lt;br /&gt;
| || 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Air Niugini &lt;br /&gt;
| || 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Aurora &lt;br /&gt;
| || 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Bombardier Inc. &lt;br /&gt;
| || 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Maldivian &lt;br /&gt;
| || 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Oriental Air Bridge &lt;br /&gt;
| || 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| SATA Air Acores &lt;br /&gt;
| || 2 || {{not done}}&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-300 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator !! Number of Aircraft !! Livery Status&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air || 26 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Air New Zealand || 23 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
|Voyageur Airways&lt;br /&gt;
|18&lt;br /&gt;
|{{not done}}|-&lt;br /&gt;
| QantasLink || 16 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Air Inuit || 9 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Maldivian || 8 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Skippers Aviation || 6 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe || 6 || {{done}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-400 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator !! Number of Aircraft !! Livery Status !! Comment&lt;br /&gt;
|-&lt;br /&gt;
| Horizon Air || 47 || {{done}} || 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| WestJet Encore || 47 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air (Air Canada) || 44 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Qantas Link || 31 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Porter Airlines || 29 || {{done}}||&lt;br /&gt;
|-&lt;br /&gt;
| Ethiopian Airlines || 26 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| ANA Wings || 24 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| SpiceJet || 22 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Eurowings || 20 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Austrian Airlines (Tyrolean Airways) || 14 || {{done}} || 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| Bombardier Inc. || 14 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Airphil Express || 12 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| PAL Express || 12 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| airBaltic || 12 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| LOT Polish Airlines || 12 || {{done}} || 2 liveries: LOT and euroLOT&lt;br /&gt;
|-&lt;br /&gt;
| Luxair || 11 || {{done}}||&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe || 11 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| South African Express || 10 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Nok Air || 8 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Olympic Air || 8 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| JamboJet || 7 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Croatia Airlines || 6 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| SATA Air Acores || 4 || {{done}} || included despite low number due to interest ;D&lt;br /&gt;
|-&lt;br /&gt;
| Biman Bangladesh Airlines || 2 || {{done}} || included despite low number due to interest ;D&lt;br /&gt;
|-&lt;br /&gt;
| Air Berlin || 0 || {{done}} || former operator&lt;br /&gt;
|-&lt;br /&gt;
| Brussels Airlines || 0 || {{done}}|| former operator&lt;br /&gt;
|-&lt;br /&gt;
| FlyBe || 0 || {{done}} || former operator; 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| Scandinavian Commuter || 0 || {{done}} || former operator&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Related content ==&lt;br /&gt;
=== Forum topics ===&lt;br /&gt;
* [https://forum.flightgear.org/viewtopic.php?f=4&amp;amp;t=35719 De Havilland DHC-8] - Dedicated topic on the FlightGear forums&lt;br /&gt;
 &lt;br /&gt;
== External links ==&lt;br /&gt;
* {{wikipedia|De Havilland Canada Dash 8}} - The DHC-8 Series on Wikipedia&lt;br /&gt;
&lt;br /&gt;
{{appendix}}&lt;br /&gt;
&lt;br /&gt;
{{de Havilland Canada}}&lt;br /&gt;
{{Bombardier}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Airliners]]&lt;br /&gt;
[[Category:Twin-engine aircraft]]&lt;br /&gt;
[[Category:Red Griffin ATC compatible aircraft]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8/info&amp;diff=141317</id>
		<title>De Havilland Canada DHC-8/info</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8/info&amp;diff=141317"/>
		<updated>2025-02-06T13:00:47Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Update with new images&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{infobox aircraft&lt;br /&gt;
| name           = De Havilland Canada DHC-8 Series&lt;br /&gt;
| hangar         = fgaddon&lt;br /&gt;
| aircraft       = DHC-8&lt;br /&gt;
| image          = DHC-8-300-Exterior-In-Flight.jpg&lt;br /&gt;
| alt            = DHC-8-300 Exterior&lt;br /&gt;
| image2         = DHC-8-400-Cockpit.jpg&lt;br /&gt;
| alt2           = Cockpit of the DHC-8-400&lt;br /&gt;
| type           = Airliner/Regional Airliner&lt;br /&gt;
| config         = High wing aircraft&lt;br /&gt;
| propulsion     = Turboprop aircraft/Propeller aircraft&lt;br /&gt;
| manufacturer   = DeHavilland/Bombardier Aerospace/Viking Air&lt;br /&gt;
| authors        = Alex Park (Maverickalex)/Florian K/D-ECHO/Joshua Davidson&lt;br /&gt;
| fdm            = JSBSim&lt;br /&gt;
| fgname         = dhc-8-100/dhc-8-200/dhc-8-300/dhc-8-400&lt;br /&gt;
| status-fdm     = 2&lt;br /&gt;
| status-systems = 4&lt;br /&gt;
| status-cockpit = 3&lt;br /&gt;
| status-model   = 4&lt;br /&gt;
| devel-repo     = https://sourceforge.net/p/flightgear/fgaddon/HEAD/tree/trunk/Aircraft/DHC-8/&lt;br /&gt;
| navbar         = 1&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This is the aircraft infobox subpage of the [[De Havilland Canada DHC-8]].&lt;br /&gt;
[[Category:Aircraft infobox documentation]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:DHC-8-300-Exterior-In-Flight.jpg&amp;diff=141316</id>
		<title>File:DHC-8-300-Exterior-In-Flight.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:DHC-8-300-Exterior-In-Flight.jpg&amp;diff=141316"/>
		<updated>2025-02-06T13:00:16Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Update description&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=The De Havilland Canada DHC-8-300 in Air New Zealand Livery flying above New Zealand.}}&lt;br /&gt;
|date=2025-02-06&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:D-ECHO|D-ECHO]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Screenshots of aircraft]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:Q400WIP.jpg&amp;diff=141315</id>
		<title>File:Q400WIP.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:Q400WIP.jpg&amp;diff=141315"/>
		<updated>2025-02-06T12:59:26Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: D-ECHO moved page File:Q400WIP.jpg to File:DHC-8-300-Exterior-In-Flight.jpg: Folder Name Change in FGAddon&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[File:DHC-8-300-Exterior-In-Flight.jpg]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:DHC-8-300-Exterior-In-Flight.jpg&amp;diff=141314</id>
		<title>File:DHC-8-300-Exterior-In-Flight.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:DHC-8-300-Exterior-In-Flight.jpg&amp;diff=141314"/>
		<updated>2025-02-06T12:59:26Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: D-ECHO moved page File:Q400WIP.jpg to File:DHC-8-300-Exterior-In-Flight.jpg: Folder Name Change in FGAddon&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=The Bombardier Q400. This image shows the current development version, work is in progress :)}}&lt;br /&gt;
|date=2016-03-29&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:D-ECHO|D-ECHO]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Screenshots of aircraft]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:DHC-8-300-Exterior-In-Flight.jpg&amp;diff=141313</id>
		<title>File:DHC-8-300-Exterior-In-Flight.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:DHC-8-300-Exterior-In-Flight.jpg&amp;diff=141313"/>
		<updated>2025-02-06T12:59:08Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: D-ECHO uploaded a new version of File:Q400WIP.jpg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=The Bombardier Q400. This image shows the current development version, work is in progress :)}}&lt;br /&gt;
|date=2016-03-29&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:D-ECHO|D-ECHO]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category: Screenshots of aircraft]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:Q400-cockpit.jpg&amp;diff=141312</id>
		<title>File:Q400-cockpit.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:Q400-cockpit.jpg&amp;diff=141312"/>
		<updated>2025-02-06T12:51:50Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: D-ECHO moved page File:Q400-cockpit.jpg to File:DHC-8-400-Cockpit.jpg: Folder Name Change in FGAddon&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[File:DHC-8-400-Cockpit.jpg]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:DHC-8-400-Cockpit.jpg&amp;diff=141311</id>
		<title>File:DHC-8-400-Cockpit.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:DHC-8-400-Cockpit.jpg&amp;diff=141311"/>
		<updated>2025-02-06T12:51:49Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: D-ECHO moved page File:Q400-cockpit.jpg to File:DHC-8-400-Cockpit.jpg: Folder Name Change in FGAddon&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Cockpit of the Bombardier Q400}}&lt;br /&gt;
|date=2016-04-01&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:D-ECHO|D-ECHO]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Screenshots of aircraft]]&lt;br /&gt;
[[Category:Bombardier Aerospace]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:DHC-8-400-Cockpit.jpg&amp;diff=141310</id>
		<title>File:DHC-8-400-Cockpit.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:DHC-8-400-Cockpit.jpg&amp;diff=141310"/>
		<updated>2025-02-06T12:51:14Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: D-ECHO uploaded a new version of File:Q400-cockpit.jpg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Cockpit of the Bombardier Q400}}&lt;br /&gt;
|date=2016-04-01&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:D-ECHO|D-ECHO]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Screenshots of aircraft]]&lt;br /&gt;
[[Category:Bombardier Aerospace]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:DHC-8-400_Cockpit_In-Flight.jpg&amp;diff=141309</id>
		<title>File:DHC-8-400 Cockpit In-Flight.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:DHC-8-400_Cockpit_In-Flight.jpg&amp;diff=141309"/>
		<updated>2025-02-06T12:49:19Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Uploaded own work with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Cockpit of the DHC-8-400 in flight above Norway}}&lt;br /&gt;
|date=2025-02-06 13:46:10&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:D-ECHO|D-ECHO]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:De Havilland Canada]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:Q400-exterior.jpg&amp;diff=141308</id>
		<title>File:Q400-exterior.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:Q400-exterior.jpg&amp;diff=141308"/>
		<updated>2025-02-06T12:46:50Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: D-ECHO moved page File:Q400-exterior.jpg to File:DHC-8-400-exterior.jpg: Folder Name Change in FGAddon&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[File:DHC-8-400-exterior.jpg]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:DHC-8-400-exterior.jpg&amp;diff=141307</id>
		<title>File:DHC-8-400-exterior.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:DHC-8-400-exterior.jpg&amp;diff=141307"/>
		<updated>2025-02-06T12:46:50Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: D-ECHO moved page File:Q400-exterior.jpg to File:DHC-8-400-exterior.jpg: Folder Name Change in FGAddon&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=The exterior of the Bombardier Q400 - mostly done}}&lt;br /&gt;
|date=2016-04-01&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:D-ECHO|D-ECHO]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Bombardier Aerospace]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:DHC-8-400-exterior.jpg&amp;diff=141306</id>
		<title>File:DHC-8-400-exterior.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:DHC-8-400-exterior.jpg&amp;diff=141306"/>
		<updated>2025-02-06T12:46:36Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: D-ECHO uploaded a new version of File:Q400-exterior.jpg&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=The exterior of the Bombardier Q400 - mostly done}}&lt;br /&gt;
|date=2016-04-01&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:D-ECHO|D-ECHO]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Bombardier Aerospace]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8&amp;diff=141305</id>
		<title>De Havilland Canada DHC-8</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8&amp;diff=141305"/>
		<updated>2025-02-06T12:31:47Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Wikipedia Link, Name Change&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:{{PAGENAME}}/info}}&lt;br /&gt;
The '''De Havilland Canada DHC-8 Series''', also known as the Dash8 or QSeries, is a family of short-haul twin-engine turboprop airliners. While originally being developed and built by DeHavilland Canada, they were produced by Bombardier Aerospace a long time, before being transferred to Longview Aviation in late 2018. Different Pratt&amp;amp;Whitney (PW) Turboprops are used.&lt;br /&gt;
&lt;br /&gt;
[[File:Q400-exterior.jpg|center|700px]]&lt;br /&gt;
The exterior of the Q400 - mostly done&lt;br /&gt;
[[File:Q400-cabin.jpg|center|700px]]&lt;br /&gt;
The Cabin of the Q400 - (better) textures are still needed&lt;br /&gt;
[[File:Q200-cockpit.jpg|center|700px]]&lt;br /&gt;
The Cockpit of the Q200 - another family member&lt;br /&gt;
&lt;br /&gt;
== Liveries / Operators &amp;lt;ref&amp;gt;{{wikipedia|List of De Havilland Canada Dash 8 operators}}&amp;lt;/ref&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
'''If you wish to improve current liveries or make new ones, please have a look at README.liveries.md in the Aircraft's folder for important contributing information.'''&lt;br /&gt;
&lt;br /&gt;
The following tables show the operators of the different variants, with only those shown that operate more than 5 aircraft of the corresponding variant.&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-100 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator !! Number of Aircraft !! Livery Status&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe || 22 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air || 15 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Air Creebec || 14 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Airlines PNG || 10 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Era Aviation (Ravn Alaska) || 10 || {{not done}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-200 ===&lt;br /&gt;
Threshold is '''more than 1''' due to only 42 built&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator !! Number of Aircraft !! Livery Status&lt;br /&gt;
|-&lt;br /&gt;
| Air Greenland || 7 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Tassili Airlines Algeria || 4 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe || 3 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Qantas Link || 3 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Abu Dhabi Aviation || 2 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Air Iceland || 2 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Air Niugini || 2 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Aurora || 2 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Bombardier Inc. || 2 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Maldivian || 2 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Oriental Air Bridge || 2 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| SATA Air Acores || 2 || {{not done}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-300 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator !! Number of Aircraft !! Livery Status&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air || 26 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Air New Zealand || 23 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| QantasLink || 16 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Air Inuit || 9 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Maldivian || 8 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Skippers Aviation || 6 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe || 6 || {{not done}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== DHC-8-400 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator !! Number of Aircraft !! Livery Status !! Comment&lt;br /&gt;
|-&lt;br /&gt;
| Horizon Air || 47 || {{done}} || 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| WestJet Encore || 47 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air (Air Canada) || 44 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Qantas Link || 31 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Porter Airlines || 29 || {{paused}} || needs to be converted to vector and new uv-map&lt;br /&gt;
|-&lt;br /&gt;
| Ethiopian Airlines || 26 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| ANA Wings || 24 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| SpiceJet || 22 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Eurowings || 20 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Austrian Airlines (Tyrolean Airways) || 14 || {{done}} || 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| Bombardier Inc. || 14 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Airphil Express || 12 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| PAL Express || 12 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| airBaltic || 12 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| LOT Polish Airlines || 12 || {{done}} || 2 liveries: LOT and euroLOT&lt;br /&gt;
|-&lt;br /&gt;
| Luxair || 11 || {{paused}} || 2 liveries; need to be converted to vector and new uv-map&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe || 11 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| South African Express || 10 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Nok Air || 8 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Olympic Air || 8 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| JamboJet || 7 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Croatia Airlines || 6 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| SATA Air Acores || 4 || {{done}} || included despite low number due to interest ;D&lt;br /&gt;
|-&lt;br /&gt;
| Biman Bangladesh Airlines || 2 || {{done}} || included despite low number due to interest ;D&lt;br /&gt;
|-&lt;br /&gt;
| Air Berlin || 0 || {{done}} || former operator&lt;br /&gt;
|-&lt;br /&gt;
| Brussels Airlines || 0 || {{paused}} || former operator; needs to be converted to vector and new uv-map&lt;br /&gt;
|-&lt;br /&gt;
| FlyBe || 0 || {{done}} || former operator; 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| FlyBe - special livery || 0 || {{paused}} || former operator; needs to be converted to vector and new uv-map&lt;br /&gt;
|-&lt;br /&gt;
| Scandinavian Commuter || 0 || {{done}} || former operator&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Related content ==&lt;br /&gt;
=== Forum topics ===&lt;br /&gt;
* [https://forum.flightgear.org/viewtopic.php?f=4&amp;amp;t=35719 De Havilland DHC-8] - Dedicated topic on the FlightGear forums&lt;br /&gt;
 &lt;br /&gt;
== External links ==&lt;br /&gt;
* {{wikipedia|De Havilland Canada Dash 8}} - The DHC-8 Series on Wikipedia&lt;br /&gt;
&lt;br /&gt;
{{appendix}}&lt;br /&gt;
&lt;br /&gt;
{{de Havilland Canada}}&lt;br /&gt;
{{Bombardier}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Airliners]]&lt;br /&gt;
[[Category:Twin-engine aircraft]]&lt;br /&gt;
[[Category:Red Griffin ATC compatible aircraft]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8/info&amp;diff=141304</id>
		<title>De Havilland Canada DHC-8/info</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8/info&amp;diff=141304"/>
		<updated>2025-02-06T12:29:06Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{infobox aircraft&lt;br /&gt;
| name           = De Havilland Canada DHC-8 Series&lt;br /&gt;
| hangar         = fgaddon&lt;br /&gt;
| aircraft       = DHC-8&lt;br /&gt;
| image          = Q400WIP.jpg&lt;br /&gt;
| alt            = Q400&lt;br /&gt;
| image2         = Q400-cockpit.jpg&lt;br /&gt;
| alt2           = Cockpit of the DHC-8-400&lt;br /&gt;
| image3         = Q200-cockpit.jpg&lt;br /&gt;
| alt3           = Cockpit of the DHC-8-200&lt;br /&gt;
| type           = Airliner/Regional Airliner&lt;br /&gt;
| config         = High wing aircraft&lt;br /&gt;
| propulsion     = Turboprop aircraft/Propeller aircraft&lt;br /&gt;
| manufacturer   = DeHavilland/Bombardier Aerospace/Viking Air&lt;br /&gt;
| authors        = Alex Park (Maverickalex)/Florian K/D-ECHO/Joshua Davidson&lt;br /&gt;
| fdm            = JSBSim&lt;br /&gt;
| fgname         = dhc-8-100/dhc-8-200/dhc-8-300/dhc-8-400&lt;br /&gt;
| status-fdm     = 2&lt;br /&gt;
| status-systems = 4&lt;br /&gt;
| status-cockpit = 3&lt;br /&gt;
| status-model   = 4&lt;br /&gt;
| devel-repo     = https://sourceforge.net/p/flightgear/fgaddon/HEAD/tree/trunk/Aircraft/DHC-8/&lt;br /&gt;
| navbar         = 1&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This is the aircraft infobox subpage of the [[De Havilland Canada DHC-8]].&lt;br /&gt;
[[Category:Aircraft infobox documentation]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8/info&amp;diff=141303</id>
		<title>De Havilland Canada DHC-8/info</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8/info&amp;diff=141303"/>
		<updated>2025-02-06T12:28:55Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Add infobox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{infobox aircraft&lt;br /&gt;
| name           = De Havilland Canada DHC-8 Series&lt;br /&gt;
| hangar         = fgaddon&lt;br /&gt;
| aircraft       = DHC-8&lt;br /&gt;
| image          = Q400WIP.jpg&lt;br /&gt;
| alt            = Q400&lt;br /&gt;
| image2         = Q400-cockpit.jpg&lt;br /&gt;
| alt2           = Cockpit of the DHC-8-400&lt;br /&gt;
| image3         = Q200-cockpit.jpg&lt;br /&gt;
| alt3           = Cockpit of the DHC-8-200&lt;br /&gt;
| type           = Airliner/Regional Airliner&lt;br /&gt;
| config         = High wing aircraft&lt;br /&gt;
| propulsion     = Turboprop aircraft/Propeller aircraft&lt;br /&gt;
| manufacturer   = DeHavilland/Bombardier Aerospace/Viking Air&lt;br /&gt;
| authors        = Alex Park (Maverickalex)/Florian K/D-ECHO/Joshua Davidson&lt;br /&gt;
| fdm            = JSBSim&lt;br /&gt;
| fgname         = dhc-8-100/dhc-8-200/dhc-8-300/dhc-8-400&lt;br /&gt;
| status-fdm     = 2&lt;br /&gt;
| status-systems = 4&lt;br /&gt;
| status-cockpit = 3&lt;br /&gt;
| status-model   = 4&lt;br /&gt;
| devel-repo     = https://sourceforge.net/p/flightgear/fgaddon/HEAD/tree/trunk/Aircraft/DHC-8/&lt;br /&gt;
| navbar         = 1&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This is the aircraft infobox subpage of the [[De Havilland DHC-8]].&lt;br /&gt;
[[Category:Aircraft infobox documentation]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8&amp;diff=141302</id>
		<title>De Havilland Canada DHC-8</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8&amp;diff=141302"/>
		<updated>2025-02-06T12:27:23Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Wanted to move QSeries here, but this page already exists, so I add the content from QSeries and will submit a deletion request for QSeries&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:{{PAGENAME}}/info}}&lt;br /&gt;
The '''Bombardier QSeries''', also known as the Dash8-Series, is a family of short-haul twin-engine turboprop airliners. While originally being developed and built by DeHavilland Canada, they were produced by Bombardier Aerospace a long time, before being transferred to Viking Air in late 2018. Different Pratt&amp;amp;Whitney (PW) Turboprops are used.&lt;br /&gt;
&lt;br /&gt;
[[File:Q400-exterior.jpg|center|700px]]&lt;br /&gt;
The exterior of the Q400 - mostly done&lt;br /&gt;
[[File:Q400-cabin.jpg|center|700px]]&lt;br /&gt;
The Cabin of the Q400 - (better) textures are still needed&lt;br /&gt;
[[File:Q200-cockpit.jpg|center|700px]]&lt;br /&gt;
The Cockpit of the Q200 - another family member&lt;br /&gt;
&lt;br /&gt;
== Liveries / Operators &amp;lt;ref&amp;gt;{{wikipedia|List of Bombardier Dash 8 operators}}&amp;lt;/ref&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
'''If you wish to improve current liveries or make new ones, please have a look at README.liveries.md in the Aircraft's folder for important contributing information.'''&lt;br /&gt;
&lt;br /&gt;
The following tables show the operators of the different variants, with only those shown that operate more than 5 aircraft of the corresponding variant.&lt;br /&gt;
&lt;br /&gt;
=== Q100 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator !! Number of Aircraft !! Livery Status&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe || 22 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air || 15 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Air Creebec || 14 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Airlines PNG || 10 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Era Aviation (Ravn Alaska) || 10 || {{not done}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Q200 ===&lt;br /&gt;
Threshold is '''more than 1''' due to only 42 built&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator !! Number of Aircraft !! Livery Status&lt;br /&gt;
|-&lt;br /&gt;
| Air Greenland || 7 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Tassili Airlines Algeria || 4 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe || 3 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Qantas Link || 3 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Abu Dhabi Aviation || 2 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Air Iceland || 2 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Air Niugini || 2 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Aurora || 2 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Bombardier Inc. || 2 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Maldivian || 2 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Oriental Air Bridge || 2 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| SATA Air Acores || 2 || {{not done}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Q300 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator !! Number of Aircraft !! Livery Status&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air || 26 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Air New Zealand || 23 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| QantasLink || 16 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Air Inuit || 9 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Maldivian || 8 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Skippers Aviation || 6 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe || 6 || {{not done}}&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Q400 ===&lt;br /&gt;
{| class = &amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Operator !! Number of Aircraft !! Livery Status !! Comment&lt;br /&gt;
|-&lt;br /&gt;
| Horizon Air || 47 || {{done}} || 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| WestJet Encore || 47 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Jazz Air (Air Canada) || 44 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Qantas Link || 31 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Porter Airlines || 29 || {{paused}} || needs to be converted to vector and new uv-map&lt;br /&gt;
|-&lt;br /&gt;
| Ethiopian Airlines || 26 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| ANA Wings || 24 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| SpiceJet || 22 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Eurowings || 20 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Austrian Airlines (Tyrolean Airways) || 14 || {{done}} || 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| Bombardier Inc. || 14 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| Airphil Express || 12 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| PAL Express || 12 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| airBaltic || 12 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| LOT Polish Airlines || 12 || {{done}} || 2 liveries: LOT and euroLOT&lt;br /&gt;
|-&lt;br /&gt;
| Luxair || 11 || {{paused}} || 2 liveries; need to be converted to vector and new uv-map&lt;br /&gt;
|-&lt;br /&gt;
| Wideroe || 11 || {{done}}&lt;br /&gt;
|-&lt;br /&gt;
| South African Express || 10 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Nok Air || 8 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Olympic Air || 8 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| JamboJet || 7 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| Croatia Airlines || 6 || {{not done}}&lt;br /&gt;
|-&lt;br /&gt;
| SATA Air Acores || 4 || {{done}} || included despite low number due to interest ;D&lt;br /&gt;
|-&lt;br /&gt;
| Biman Bangladesh Airlines || 2 || {{done}} || included despite low number due to interest ;D&lt;br /&gt;
|-&lt;br /&gt;
| Air Berlin || 0 || {{done}} || former operator&lt;br /&gt;
|-&lt;br /&gt;
| Brussels Airlines || 0 || {{paused}} || former operator; needs to be converted to vector and new uv-map&lt;br /&gt;
|-&lt;br /&gt;
| FlyBe || 0 || {{done}} || former operator; 2 liveries&lt;br /&gt;
|-&lt;br /&gt;
| FlyBe - special livery || 0 || {{paused}} || former operator; needs to be converted to vector and new uv-map&lt;br /&gt;
|-&lt;br /&gt;
| Scandinavian Commuter || 0 || {{done}} || former operator&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Related content ==&lt;br /&gt;
=== Forum topics ===&lt;br /&gt;
* [https://forum.flightgear.org/viewtopic.php?f=4&amp;amp;t=35719 Bombardier QSeries] - Dedicated topic on the FlightGear forums&lt;br /&gt;
 &lt;br /&gt;
== External links ==&lt;br /&gt;
* {{wikipedia|Bombardier Dash 8}} - The Dash8 Series on Wikipedia&lt;br /&gt;
&lt;br /&gt;
{{appendix}}&lt;br /&gt;
&lt;br /&gt;
{{de Havilland Canada}}&lt;br /&gt;
{{Bombardier}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Airliners]]&lt;br /&gt;
[[Category:Twin-engine aircraft]]&lt;br /&gt;
[[Category:Red Griffin ATC compatible aircraft]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8&amp;diff=141301</id>
		<title>De Havilland Canada DHC-8</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=De_Havilland_Canada_DHC-8&amp;diff=141301"/>
		<updated>2025-02-06T12:25:38Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=SZD-9bis_Bocian-1E&amp;diff=140650</id>
		<title>SZD-9bis Bocian-1E</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=SZD-9bis_Bocian-1E&amp;diff=140650"/>
		<updated>2024-09-30T13:09:23Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: /* Gallery */ fix image&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{infobox Aircraft&lt;br /&gt;
|ready = thermal&lt;br /&gt;
|image = Bocian-1.jpg&lt;br /&gt;
|name =SZD-9bis Bocian-1E&lt;br /&gt;
|type =Glider&lt;br /&gt;
|authors =AJ MacLeod&lt;br /&gt;
|fdm =YASim&lt;br /&gt;
|status =Development&lt;br /&gt;
|download =http://flightgear.org/Downloads/aircraft/index.shtml#bocian&lt;br /&gt;
}}&lt;br /&gt;
[[File:Aerotow2.jpg|thumb|270px|[[Piper J3 Cub|J3]] pulls a Bocian (see ''[[Howto: Do aerotow over the net]]'') ]]&lt;br /&gt;
The '''SZD-9bis Bocian-1E''' is a modified version of the Polish glider or sail-plane SZD-9 Bocian, including straight wing-tips, a two part canopy and shock absorbing gear. It was first produced in 1967. &lt;br /&gt;
&lt;br /&gt;
==Handling notes==&lt;br /&gt;
Unlike most other glider aircraft in FG, in the bocian &amp;quot;full throttle&amp;quot; equals airbrake fully out and &amp;quot;idle throttle&amp;quot; equals closed airbrakes.&lt;br /&gt;
&lt;br /&gt;
==Specs==&lt;br /&gt;
*Crew: 1 pilot&lt;br /&gt;
*Capacity: 1 passenger&lt;br /&gt;
*Length: 8.20 m (26 ft 11 in)&lt;br /&gt;
*Wingspan: 17.80 m (58 ft 5 in)&lt;br /&gt;
*Height: 1.80 m (5 ft 11 in)&lt;br /&gt;
*Wing area: 20.0 m2 (215 ft2)&lt;br /&gt;
*Aspect ratio: 15.8&lt;br /&gt;
*Empty weight: 345 kg (761 lb)&lt;br /&gt;
*Gross weight: 540 kg (1,191 lb)&lt;br /&gt;
&lt;br /&gt;
===Performance===&lt;br /&gt;
&lt;br /&gt;
*Maximum speed: 200 km/h (124 mph)&lt;br /&gt;
*Maximum glide ratio: 26&lt;br /&gt;
*Rate of sink: 0.82 m/s (161 ft/min&lt;br /&gt;
&lt;br /&gt;
==Gallery==&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:Bocian-1.jpg|SZD-9bis Bocian in flight&lt;br /&gt;
File:Bocian-2.jpg|the cockpit&lt;br /&gt;
File:Bocian-3.jpg|on the ground at its manufacturer's airport&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Aircraft help ==&lt;br /&gt;
{| class=&amp;quot;keytable&amp;quot;&lt;br /&gt;
! Key&lt;br /&gt;
! Function&lt;br /&gt;
|-&lt;br /&gt;
|Throttle&lt;br /&gt;
|Control airbrakes (full throttle=full airbrakes)&lt;br /&gt;
|-&lt;br /&gt;
|{{key press|Ctrl|w}}&lt;br /&gt;
|Place winch 1000m in front of aircraft&lt;br /&gt;
|-&lt;br /&gt;
|{{key press|W}}&lt;br /&gt;
|Open winch-hook&lt;br /&gt;
|-&lt;br /&gt;
|{{key press|w}}&lt;br /&gt;
|Start winching&lt;br /&gt;
|-&lt;br /&gt;
|{{key press|Ctrl|o}}&lt;br /&gt;
|Find aircraft for aerotow (must be within 60m)&lt;br /&gt;
|-&lt;br /&gt;
|{{key press|o}}&lt;br /&gt;
|Lock aerotow hook&lt;br /&gt;
|-&lt;br /&gt;
|{{key press|O}}&lt;br /&gt;
|Open aerotow hook&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Related content ==&lt;br /&gt;
* [[Howto: Do aerotow over the net]]&lt;br /&gt;
* [[Soaring]]&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
[http://szd.com.pl/en/about the former manufacturer's website (SZD Allstar)]&amp;lt;br /&amp;gt;&lt;br /&gt;
[https://en.wikipedia.org/wiki/SZD-9_Bocian wikipedia]&lt;br /&gt;
&lt;br /&gt;
[[Category:Glider aircraft]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Suggested_Flights&amp;diff=140330</id>
		<title>Suggested Flights</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Suggested_Flights&amp;diff=140330"/>
		<updated>2024-08-31T14:52:28Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: /* Gibraltar */ clean-up and reorganize, update chart links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&amp;lt;!-- if you add new flights to this page it would be cool to include your name and month of writing. Also include the newsletter month and year if the flight has been published in one. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- ------------------------------------------------- --&amp;gt;&lt;br /&gt;
[[FlightGear]] has accurate and realistic terrain. Here are some interesting places where you can do virtual sight seeing.&lt;br /&gt;
&lt;br /&gt;
If you are starting with [[FGRun]] - the FlightGear launcher - you can enter the [[airport]] id and select the runway on the appropriate screen in the startup wizard.&lt;br /&gt;
If you are starting from the command line you can use the options: &amp;lt;tt&amp;gt;--airport=ABCD&amp;lt;/tt&amp;gt; and &amp;lt;tt&amp;gt;--runway=12L&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
*Remember to give a look at the [[Suggested Airports]] page, where you can find a comprehensive list of high quality airports in FlightGear.&lt;br /&gt;
*If you enjoy these flights, please consider recording a flight and posting a link to it at the [[Suggested Prerecorded Flights]] page.&lt;br /&gt;
&lt;br /&gt;
'''Remove before flight!''' &amp;lt;!-- No comprendo? --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Before you start flying into one of the suggested flights, you should add both the terrain and the Objects to you FlightGear installation; This is well explained on the [[Howto: Install scenery|installing scenery]] page.&lt;br /&gt;
&lt;br /&gt;
p.s. charts are generated using FlightGear data only.&lt;br /&gt;
&lt;br /&gt;
This page includes the flights described on the [http://www.flightgear.org/places.html main website] and the suggested flights from the newsletters. It can serve as an archive for suggested flights from future [[FlightGear Newsletter|newsletters]] or can give a flight if creativity is low that month. &lt;br /&gt;
&lt;br /&gt;
{{TOC limit|3}}&lt;br /&gt;
&lt;br /&gt;
=Cross Continentals or World Tour=&lt;br /&gt;
&lt;br /&gt;
* [[Breitling DC-3 World Tour]][[File:Rect17.png|thumbnail]]&lt;br /&gt;
* [[Flying the Hump]]&lt;br /&gt;
&lt;br /&gt;
=North America=&lt;br /&gt;
==Round Valley Airport==&lt;br /&gt;
[[Image:O09-002.png|thumb|left|right after take off]]&lt;br /&gt;
[[Image:O09-003.png|thumb|right|Valley]]&lt;br /&gt;
Covalis, CA. The airport is at the West edge of a 7 mile across valley.&amp;lt;BR/&amp;gt;&lt;br /&gt;
The predominant wind is a cross wind. Take-offs to the west (if they use the full runway length) often have to fly between 2 small hills and over another valley while gaining altitude. Most pilots take off to the west.&amp;lt;BR/&amp;gt;&lt;br /&gt;
It is a paved runway and quite long. It was designated as an emergency recovery field during the Cold War and was used twice that I know of by military aircraft that could not take off again from the field. &lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Airports and coordinates===&lt;br /&gt;
{{Location map | USA&lt;br /&gt;
| caption = Latitude: 39.790156 Longitude: -123.266403&lt;br /&gt;
| lat_deg = 39.790156&lt;br /&gt;
| lon_deg = -123.266403&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
* [[O09|O09 - Round valley]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/O09.pdf chart]&lt;br /&gt;
&lt;br /&gt;
required scenery tile: ftp://ftp.sunsite.org.uk/sites/ftp.flightgear.org/flightgear-ftp/Scenery/w120n40.tar.gz&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
I have tried this trip using a p38, quite powerful airplane&lt;br /&gt;
* [[Lockheed-P38|P38]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FlightGear launching===&lt;br /&gt;
 fgfs --airport=O09 --runway=28 --aircraft=p38&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Half Moon Bay==&lt;br /&gt;
[[Image:KHAF-001.png|thumb|left|right after take off]]&lt;br /&gt;
[[Image:KHAF-002.png|thumb|right|Bridge]]&lt;br /&gt;
Start at [[KHAF|Half Moon Bay]], Runway 30, with 32km visibility; Takeoff in the C172 and climb to 1000 feet, then continue north over the water, near the shoreline. Look out the right window frequently. Fly up the coast, overfly the Golden Gate Bridge, continue around the top of the peninsula past downtown SF, then fly on to [[KSFO]] for a landing. We now have lots to see.&lt;br /&gt;
&lt;br /&gt;
If you cannot see the runway in the default 172, you must be flying too high or too slowly. You can start by practicing a bit with a good setup:&lt;br /&gt;
&lt;br /&gt;
'''fgfs --offset-distance=1.5 --altitude=500 --vc=70'''&lt;br /&gt;
&lt;br /&gt;
As soon as FlightGear starts, cut the power to 1500 rpm and drop two notches of flap. Maintain 70 kt. Now, pick your landing spot (a bit down the runway) and try to hold it in the same spot on your windshield. If your landing spot starts moving down, you are too high, and should cut another 100 rpm; if it starts moving up, you are too low, and should add another 100 rpm. Adjust the nose to keep your speed at 70 kt all the way down until you're right above the numbers, then cut power to idle, drop the last notch of flaps, flare, and land.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Airports and coordinates===&lt;br /&gt;
[[Image:KHAF-003.png|thumb|left|surroundings]]&lt;br /&gt;
[[Image:World-KHAF.png|thumb|right|Latitude: 37.513333 Longitude: -122.501111]]&lt;br /&gt;
* [[KHAF|KHAF - Half Moon Bay]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/KHAF.pdf chart]&lt;br /&gt;
&lt;br /&gt;
no required scenery tile.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
[[Image:KSFO-001.png|thumb|left|Before landing]]&lt;br /&gt;
Use the default c172 airplane &lt;br /&gt;
* [[Cessna C172P]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FlightGear launching===&lt;br /&gt;
 fgfs --airport=KHAF --runway=30 --visibility=32000 --aircraft=c172&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
===Author===&lt;br /&gt;
April 2006 [[User:Hellosimon|Hellosimon]], format and extended by [[User:Francescobrisa|Francescobrisa]]&lt;br /&gt;
&lt;br /&gt;
==Hell's Canyon==&lt;br /&gt;
[[Image:25U-001.png|thumb|left|right after take off]]&lt;br /&gt;
[[Image:25U-004.png|thumb|right|Valley]]&lt;br /&gt;
Hell's Canyon, Imnaha, OR. This airport is located just west of &amp;quot;Hell's Canyon National Park&amp;quot; which has the Snake River running through it.&amp;lt;br/&amp;gt;&lt;br /&gt;
Supposedly it's a 5500 foot drop from the top of the canyon to the river.&amp;lt;BR/&amp;gt;&lt;br /&gt;
The airport is located on the brink of this canyon.&lt;br /&gt;
&lt;br /&gt;
See the remarks on the airport page (click on the airport id) ... DOWNDRAFTS, SHEER DROP IN TERRAIN, LIVESTOCK, etc. Don't go here on your first solo x-country. :-) &lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Airports and coordinates===&lt;br /&gt;
[[Image:25U-005.png|thumb|left|Landing]]&lt;br /&gt;
[[Image:World-25U.png|thumb|right|Latitude: 45.427861 Longitude: -116.693889]]&lt;br /&gt;
* [[25U|25U - Round valley]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/25U.pdf chart]&lt;br /&gt;
&lt;br /&gt;
required scenery tile: ftp://ftp.sunsite.org.uk/sites/ftp.flightgear.org/flightgear-ftp/Scenery/w120n40.tar.gz&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
[[Image:25U-006.png|thumb|left|Landing 2]]&lt;br /&gt;
I have tried this trip using a pilatus PC-9M, powerful airplane&lt;br /&gt;
* [[PC-9M|PC-9M]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FlightGear launching===&lt;br /&gt;
 fgfs --airport=25U --aircraft=PC-9M&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Crater Lake National Park Tour==&lt;br /&gt;
[[Image:64s-003.png|thumb|left|Approaching the lake]]&lt;br /&gt;
[[Image:64s-002.png|thumb|right|Direction 40 degrees]]&lt;br /&gt;
Prospect, OR.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Take off and fly at a heading of about 40 degrees until you cross the first distinct ridge in front of you. (several minutes of flight in the navion ... just climb as fast as you can, it will be a close squeek to get over :-)&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Once you clear the ridge and can see beyond it, turn right and fly a heading of about 70 degrees. You should see two shallow peaks off in the distance. Head right between these -- they are the two sides of the crater. As you get closer the shape of the crater will come into view. There's a lake there in real life, hopefully it will be there in flight gear too before long.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Airports and coordinates===&lt;br /&gt;
[[Image:64s-001.png|thumb|left|Leaving the 64S airfield]]&lt;br /&gt;
[[Image:World-64S.png|thumb|right|Latitude: 42.743183 Longitude: -122.488092]]&lt;br /&gt;
* [[64S|64S - Prospect State]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/64S.pdf chart]&lt;br /&gt;
&lt;br /&gt;
required scenery tile: ftp://ftp.sunsite.org.uk/sites/ftp.flightgear.org/flightgear-ftp/Scenery/w130n40.tgz&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
[[Image:64s-004.png|thumb|left|Lake view 1]]&lt;br /&gt;
[[Image:64s-005.png|thumb|right|Lake view 2]]&lt;br /&gt;
&lt;br /&gt;
* [[Ryan_Navion|Navion]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FlightGear launching===&lt;br /&gt;
 fgfs --airport=64S --runway=02 --aircraft=navion &lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Grand Canyon Tour==&lt;br /&gt;
[[Image:Grand_Canyon_Tour_4.jpg|700px|frameless|center]]&lt;br /&gt;
Being a special place, there are also special flight rules for VFR traffic around the Grand Canyon. There are multiple no-fly-zones set up and VFR traffic is only allowed to fly via the designated corridors. If you want to fly realistically, avoid these zones in FlightGear as well, following for example the [https://skyvector.com/?ll=36.18649251415492,-112.52223157994264&amp;amp;chart=230&amp;amp;zoom=5&amp;amp;fpl=%20KGCN%20VPGCF%20VPGCG%20VPGCD%20VPGCC%20VPGCA%203608N11252W%203609N11309W%201Z1%201G4%203AZ5 route shown here. (skyvector link)]&lt;br /&gt;
&lt;br /&gt;
This flight takes you from KGCN, the Grand Canyon National Park airport, to 3AZ5, a small airfield called Hualapai located south of the Grand Canyon. Departing from KGCN, fly north-west bound to reach the canyon. From there, either follow the route shown on skyvector above, or fly visually through the canyon westbound towards 1Z1, Grand Canyon Bar Ten Airstrip. From there on, continue flying westward to 1G4. Called Grand Canyon West, 1G4 also marks about the western end of the canyon. To get to your destination 3AZ5, continue along the southern rim, flying eastward now. Shortly after leaving the breathtaking valley behind you, you will already reach your destination. Land and let your engine and your mind cool down from the special views :)&lt;br /&gt;
&lt;br /&gt;
===Gallery===&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Grand_Canyon_Tour_2.jpg&lt;br /&gt;
Grand_Canyon_Tour_3.jpg&lt;br /&gt;
Grand_Canyon_Tour_1.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Airports===&lt;br /&gt;
* KGCN - Grand Canyon National Park Airport - [https://www.aopa.org/destinations/airports/KGCN/details aopa.org]&lt;br /&gt;
* 1Z1 - Grand Canyon Bar Ten Airstrip - [https://www.airnav.com/airport/1Z1 airnav.com]&lt;br /&gt;
* 1G4 - Grand Canyon West - [https://www.airnav.com/airport/1G4 airnav.com]&lt;br /&gt;
* 3AZ5 - Hualapai - [https://www.airnav.com/airport/3AZ5 airnav.com]&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
Most VFR aircraft with sufficiently big windows will serve the purpose, for example:&lt;br /&gt;
*[[Cessna C172P]]&lt;br /&gt;
*[[Optica]]&lt;br /&gt;
*[[Ryan_Navion]]&lt;br /&gt;
If you are more interested in flying helicopters, the [[Eurocopter EC130 B4]] with the Grand Canyon Helicopters livery might be for you.&lt;br /&gt;
&lt;br /&gt;
===Links===&lt;br /&gt;
*[https://www.nps.gov/grca/learn/nature/upload/sfra.pdf Chart of the Grand Canyon special airspace, published by the National Park Service]&lt;br /&gt;
*[http://www.swaviator.com/html/issueJJ99/canyon.html An article about flying close to the Grand Canyon]&lt;br /&gt;
*[https://www.aopa.org/news-and-media/all-news/2017/april/flight-training-magazine/road-trip-grand-canyon AOPA Flight suggestion]&lt;br /&gt;
&lt;br /&gt;
==Ranger Creek Airport==&lt;br /&gt;
[[File:21w-1.jpg|500px|center|Waiting for departure at Ranger Creek]]&lt;br /&gt;
Ranger Creek Airport is located in Greenwater, Washington, USA. Being wedged into the bottom of a steep canyon, you'll definitely need to be on your toes to get in and out of there. Switch on Advanced Weather and Live Data to experience what the winds can do to you in real life!&lt;br /&gt;
===Airports and coordinates===&lt;br /&gt;
* [[21W|21W - Ranger Creek]] - [http://www.airnav.com/airport/21W airnav.com]&lt;br /&gt;
===Gallery===&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
Ranger_Creek1.jpg|Departing between the mountains&lt;br /&gt;
Ranger_Creek_2.jpg|Looking back towards the airfield&lt;br /&gt;
Ranger_Creek_3.jpg|Downwind for approach back to Ranger Creek&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
For this flight, the Piper PA-18 SuperCub is suggested, this is included in the [[Piper J3 Cub]] package&lt;br /&gt;
&lt;br /&gt;
==Mount Rainier Tour==&lt;br /&gt;
[[Image:WA20-002.png|thumb|left|The mountain from far away]]&lt;br /&gt;
[[Image:WA20-006.png|thumb|right|external view]]&lt;br /&gt;
Eatonville, WA. Start out at Swanson Airport in Eatonville, WA. Take off and fly a heading of about 90 degrees. You will need to fly for 5-10 minutes before the mountain comes into view. Be patient if you don't see it right away, it will dwarf everything in it's vicinity. &lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
===Airports and coordinates===&lt;br /&gt;
[[Image:World-WA20.png|thumb|right|Latitude: 46.87588502 Longitude: -122.25733500]]&lt;br /&gt;
&lt;br /&gt;
* [[WA20|WA20 - Swanson]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/WA20.pdf chart]&lt;br /&gt;
&lt;br /&gt;
required scenery tile: ftp://ftp.sunsite.org.uk/sites/ftp.flightgear.org/flightgear-ftp/Scenery/w130n40.tgz&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
[[Image:WA20-007.png|thumb|left|external near view]] &lt;br /&gt;
[[Image:WA20-009.png|thumb|right|external near view]] &lt;br /&gt;
* [[mosquito]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FlightGear launching===&lt;br /&gt;
 fgfs --airport=WA20 --aircraft=mosquito&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Death Valley Tour==&lt;br /&gt;
[[Image:L06-001.png|thumb|left|in the air]]&lt;br /&gt;
[[Image:Furnace-creek.jpg|thumb|left|real life view of Furnace Creek Airfield]]&lt;br /&gt;
[[Image:L06-002.png|thumb|right|in the air]] &lt;br /&gt;
Furnace Creek, CA. This starts you right in the middle of Death Valley which runs north &amp;amp; south. If you head south about 15 miles you'll hit the lowest point in the USA, 282 feet (86 meters) below sea level.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
===Airports and coordinates===&lt;br /&gt;
[[Image:World-L06.png|thumb|right|Latitude: 36.46451100 Longitude: -116.88139422]]&lt;br /&gt;
* [[L06|L06 - Furnace Creek]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/L06.pdf chart] &lt;br /&gt;
&lt;br /&gt;
required scenery tile: ftp://ftp.sunsite.org.uk/sites/ftp.flightgear.org/flightgear-ftp/Scenery/w120n30.tgz&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
[[Image:L06-003.png|thumb|left|in the air]] &lt;br /&gt;
[[Image:L06-004.png|thumb|right|in the air]] &lt;br /&gt;
* [[rallye-MS893]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FlightGear launching===&lt;br /&gt;
 fgfs --airport=L06 --aircraft=rallye-MS893&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Utah==&lt;br /&gt;
!!! Work in progress !!!&amp;lt;BR/&amp;gt;&lt;br /&gt;
&amp;lt;!--&lt;br /&gt;
[[Image:6WA8-002.png|thumb|left|landing 1]]&lt;br /&gt;
[[Image:6WA8-008.png|thumb|right|landing 2]] &lt;br /&gt;
--&amp;gt;&lt;br /&gt;
Escalante Muni Airport, Escalante, UT. This airport is east and a bit north of Bryce Canyon National park. If you head mostly south and a bit east you'll eventually hit the Grand Canyon. It is sandwiched between the Dixie National forest to the north and the Grand Staircase-Escalante National Monument to the south. There should be interesting stuff to see no matter which direction you head.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
===Airports and coordinates===&lt;br /&gt;
[[Image:World-1L7.png|thumb|right|Latitude: 37.75054400 Longitude: -111.57578300]]&lt;br /&gt;
* [[1L7|1L7 - Escalante Muni]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/1L7.pdf chart] &lt;br /&gt;
&lt;br /&gt;
required scenery tile: ftp://ftp.sunsite.org.uk/sites/ftp.flightgear.org/flightgear-ftp/Scenery/w120n30.tgz&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
&amp;lt;!-- &lt;br /&gt;
	[[Image:6WA8-009.png|thumb|left|landing 3]] &lt;br /&gt;
* [[Piper PA-18 Super Cub|pa 18]]&lt;br /&gt;
--&amp;gt;&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FlightGear launching===&lt;br /&gt;
 fgfs --airport=1L7 --aircraft=pa18&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Lake County Airport (CO)==&lt;br /&gt;
[[Image:KLXV-001.png|thumb|left|Adjust mixture !]]&lt;br /&gt;
[[Image:KLXV-002.png|thumb|right|The terrain will be covered by snow]] &lt;br /&gt;
Lake County Airport, Leadville, CO. This airport is at an elevation of 9927 making it a bit of a challenge to get into and out of with a standard C172.&amp;lt;BR/&amp;gt;&lt;br /&gt;
Make sure you lean out your engine before taking off and read up on density altitude before you try this one in real life. &lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
===Airports and coordinates===&lt;br /&gt;
[[Image:KLXV-003.png|thumb|left|The airport]]&lt;br /&gt;
[[Image:World-KLXV.png|thumb|right|Latitude: 39.22812500 Longitude: -106.31835600]]&lt;br /&gt;
* [[KLXV|KLXV - Lake Co]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/KLXV.pdf chart] &lt;br /&gt;
&lt;br /&gt;
required scenery tile: ftp://ftp.sunsite.org.uk/sites/ftp.flightgear.org/flightgear-ftp/Scenery/w110n30.tgz&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
[[Image:KLXV-004.png|thumb|left|I like this panorama]] &lt;br /&gt;
[[Image:KLXV-005.png|thumb|right|The nearby lake]] &lt;br /&gt;
* [[Cessna C172P]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FlightGear launching===&lt;br /&gt;
[[Image:KLXV-006.png|thumb|left|Landing...]] &lt;br /&gt;
 fgfs --airport=KLXV --aircraft=c172p&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Caribbean - Saint Martin and St. Kitts== &lt;br /&gt;
[[Image:TNCM-003.png|thumb|left|just after the take off]]&lt;br /&gt;
[[Image:TNCM-004.png|thumb|right|some nearby island]] &lt;br /&gt;
Pilots of the Caribbeans is an informal FlightGear community of users who fly around the small Caribbean islands, many of which have custom scenery and improved landclass data. (For details see [[Pilots of the Caribbean]])&amp;lt;BR/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[TNCM|Princess Juliana International Airport (TNCM)]] at the isle of Saint Martin, is one of the most popular airports in FlightGear. In large part due to the custom objects and land cover. However, St. Marten is only one of several detailed airports in the region - and, while the approach for TNCM is one of the most memorable in the whole world, the land cover for St. Kitts and Nevis makes it a lovely place to fly.&lt;br /&gt;
&lt;br /&gt;
British Airways, US Airways and American Airlines, among others, all fly into St. Kitts' [[TKPK|Robert L. Bradshaw International Airport (TKPK)]] in real life.&lt;br /&gt;
&lt;br /&gt;
Take off from TKPK in a [[Piper_J3_Cub|Piper Cub]] and make a northward, clockwise circle of the island. Start your descent on the east side of the island, and focus on the small hill which separates the north from the south. Start hugging the coast near the beach and look to the west - as soon as the railroad heads to the southwest, you're about ready to turn for final. Make your right hand turn for final and taxi to the terminal.&lt;br /&gt;
&lt;br /&gt;
If you want to fully explore this whole country, take off in a Beaver, which has a little more speed, and fly a figure eight. Take off from TKPK and circle the airport to the north like in the Cub. Then instead of landing, perform a touch-and-go and turn left over the boat terminal and make for the west coast of Nevis. Enjoy the beauty of the south coast of St. Kitts before circling Nevis. Over Nevis, you have several options - cut your flight short and land at [[TKPN]] on the island of Nevis, complete the &amp;quot;figure eight&amp;quot; by heading back to TKPK, or check your fuel and head east across the Caribbean to Antigua (which does not have custom land cover).&amp;lt;BR/&amp;gt;&lt;br /&gt;
&amp;lt;BR/&amp;gt;&lt;br /&gt;
Check out the [[Pilots of the Caribbean]] page, for further informations.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
===Airports and coordinates===&lt;br /&gt;
[[Image:World-TNCM.png|thumb|right|Latitude: 18.040953 Longitude: -63.108900]]&lt;br /&gt;
&lt;br /&gt;
* [[TNCM|TNCM - Princess Juliana International Airport]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/TNCM.pdf chart] &lt;br /&gt;
* [[TKPK|TKPK - Robert L. Bradshaw International Airport]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/TKPK.pdf chart] &lt;br /&gt;
* [[TKPN|TKPN - Vance Winkworth Amory Intl]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/TKPN.pdf chart] &lt;br /&gt;
others interesting airports in the area:&lt;br /&gt;
* [[TFFF|TFFF - Le Lamentin]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/TFFF.pdf chart]&lt;br /&gt;
* [[MDPP|MDPP - Gregorio Luperon Intl]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/MDPP.pdf chart]&lt;br /&gt;
* [[TJSJ|TJSJ - Luis Munoz Marin Intl]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/TJSJ.pdf chart]&lt;br /&gt;
* [[FMEE|FMEE - St Denis Gillot]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/FMEE.pdf chart]&lt;br /&gt;
* [[TFFG|TFFG - Grand Case]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/TFFG.pdf chart]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
required scenery tile: &lt;br /&gt;
* ftp://ftp.sunsite.org.uk/sites/ftp.flightgear.org/flightgear-ftp/Scenery/w070n10.tgz&lt;br /&gt;
* ftp://ftp.sunsite.org.uk/sites/ftp.flightgear.org/flightgear-ftp/Scenery/w080n10.tgz&lt;br /&gt;
* ftp://ftp.sunsite.org.uk/sites/ftp.flightgear.org/flightgear-ftp/Scenery/w080n20.tgz&lt;br /&gt;
* ftp://ftp.sunsite.org.uk/sites/ftp.flightgear.org/flightgear-ftp/Scenery/w090n20.tgz&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
[[Image:TNCM-005.png|thumb|left|amazing]]&lt;br /&gt;
[[Image:TNCM-006.png|thumb|right|landing]] &lt;br /&gt;
* [[Piper_J3_Cub|Piper Cub]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FlightGear launching===&lt;br /&gt;
 fgfs --airport=TKPK --aircraft=Cub&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
===Author===&lt;br /&gt;
[[FlightGear Newsletter January 2011]] by [[User:Statto|Statto]], format and extended by [[User:Francescobrisa|Francescobrisa]].&lt;br /&gt;
&lt;br /&gt;
==Friedman Memorial Airport (Idaho)==&lt;br /&gt;
[[Image:KSUN-001.png|thumb|left|take off]]&lt;br /&gt;
[[Image:KSUN-002.png|thumb|right|nearby]] &lt;br /&gt;
Friedman Memorial Airport, Hailey, Idaho. This airport is nestled in a valley surrounded by significant terrain. It's one that shows up quite often in accident investigations. &lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
===Airports and coordinates===&lt;br /&gt;
[[Image:World-KSUN.png|thumb|right|Latitude: 43.51223900 Longitude: -114.30376100]]&lt;br /&gt;
* [[KSUN|KSUN - Friedman Mem]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/KSUN.pdf chart] &lt;br /&gt;
&lt;br /&gt;
required scenery tile: ftp://ftp.sunsite.org.uk/sites/ftp.flightgear.org/flightgear-ftp/Scenery/w120n40.tgz&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
[[Image:KSUN-003.png|thumb|left|landing]]&lt;br /&gt;
[[Image:KSUN-004.png|thumb|right|landing]] &lt;br /&gt;
* [[FK9MK2]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FlightGear launching===&lt;br /&gt;
 fgfs --airport=KSUN --aircraft=fk9mk2&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Wyoming - Grand Teton ==&lt;br /&gt;
Jackson Hole (KJAC) airport is located at around 6,400ft right next to the Teton range of mountains. The Tetons rise straight out of the plains, gaining over 5,000ft in 2 miles. &lt;br /&gt;
&lt;br /&gt;
You will need the w120n40 scenery.&lt;br /&gt;
&lt;br /&gt;
Tower frequency at KJAC is 118.07. Due to the high altitude, you will need to lean non-turbocharged piston aircraft before take-off. Don't forget that take-off distances will also be longer.&lt;br /&gt;
&lt;br /&gt;
After take-off head to the North East. Grand Teton is the highest of the three peaks that rise straight from the flat-lands. Follow the line of mountains to the East, passing over Jenny Lake. After a couple of miles you will reach a huge lake. The large bulk of a mountain to the East is Mount Moran.&lt;br /&gt;
&lt;br /&gt;
The Teton Mountain range is surprisingly thin - really just a string of mountains running SW-NE. Flying fast jets down the steep valleys is recommended.&lt;br /&gt;
* September 2006 by [[User:Stuart|Stuart]].&lt;br /&gt;
&lt;br /&gt;
== Virginia Eastern Shore, Chesapeake Bay-Bridge Tunnel Sightseeing ==&lt;br /&gt;
[[Image:KTGI-001.png|thumb|left|before take off]]&lt;br /&gt;
[[Image:KTGI-002.png|thumb|right|right after take off]]&lt;br /&gt;
&lt;br /&gt;
Take a short VFR trip from Tangier Island to view the famous Chesapeake Bay Bridge-Tunnel connecting Cape Charles to Cape Henry. Depart historic Tangier Island (KTGI) situated in the Chesapeake Bay and land at Norfolk International Airport (KORF), Norfolk, Virginia. The scenic character of the flight is enhanced by leaving the island at dusk. The flight is both scenic and challenging. Frequently, when flying with real weather, you will have a steady wind blowing across the bay. Starting out quiet Tangier and arriving at busy, glittering Norfolk International (KORF) gives the flight some contrast.&lt;br /&gt;
&lt;br /&gt;
'''fgfs --airport=KTGI --runway=20 --timeofday=dusk'''&lt;br /&gt;
&lt;br /&gt;
Before leaving Tangier: Set your altimeter to the prevailing barometric temperature. Set your communications radio to the Norfolk Intl. (KORF) ATIS frequency of 127.150 MHz to listen for weather reports in the destination area. Set your navigation radio to 112.20 MHz to pick up the Cape Charles (CCV) VOR. Set your heading bug to the runway heading, 200.&lt;br /&gt;
&lt;br /&gt;
Takeoff straight, flying the runway heading. Climb to 2000ft and maintain.&lt;br /&gt;
&lt;br /&gt;
Shortly, you should see the VOR assigned to NAV1 display receive a steady signal (the OFF flag will disappear). The DME should also settle down and display the distance to the Cape Charles VOR station. The flight to CCV will be about 26 nautical miles. As you fly, it will show your airspeed and time to arrival. It should take about ten minutes.&lt;br /&gt;
&lt;br /&gt;
Turn the OBS knob until the VOR displays the TO flag and 190 degrees, the heading you should now turn to.&lt;br /&gt;
&lt;br /&gt;
Fly south from Tangier, crossing an expanse of water, about ten miles until you see the Virginia Eastern Shore. You'll come upon the grass airstrip of Chance (VA89) a few minutes out from Tangier. Beyond are two flashing tower beacons. You may catch a glimpse of Weirwood/Kellam (W08) on the ocean shore, recognizable by two crossing dirt strips.&lt;br /&gt;
&lt;br /&gt;
If you look carefully, you may see the little white building that is the Cape Charles VOR station. As you fly over VOR the flag will change from TO to FROM and the needle will deflect. Do not try to follow the needle. Wait until you are past the VOR. As you cross the VOR station, you should see a highway slanting across your path toward the south west. Turn to follow this highway. You'll come across a lone tower with beacon along the roadside. You'll see an access road stretching from the tower complex to the main road.&lt;br /&gt;
&lt;br /&gt;
If the sky conditions permit, you may try your hand at wayfinding by following the road. If visiblity is poor, set the VOR to 180 degrees to parallel the road to the end of the peninsula. Or you can continue to fly outbound from the VOR on 190 by maintaining the same heading. The VOR needle should return to center with the FROM flag displaying. This will put you west of the bridge with a good view and the option to turn towards KORF near the initial approach fix. If you follow the highway you will need to overfly the airport, but if you stay on the 190 heading, you will be in a position to make a straight in landing.&lt;br /&gt;
&lt;br /&gt;
As you fly down the peninsula you'll pass Cherrystone, Eagle's Nest, Scott and Bull Farm grass airstrips. Bull Farm is the last strip before the mouth of the Chesapeake. Just past Scott Farm you should see the first glimmer of the northern leg of the bridge. The grass strips can be very difficult to see.&lt;br /&gt;
&lt;br /&gt;
As you reach the end of the peninsula, be careful to avoid the tower on Fisherman's Island at the north end of the north leg of the bridge (Note the bridge is not modeled by FlightGear...but I hope to work up one eventually). Next comes the north middle leg. Turn right a few degrees to follow the south middle leg. Watch as the deck plunges beneath the waves to allow ships to navigate the north and south channels.&lt;br /&gt;
&lt;br /&gt;
As Cape Henry approaches, you'll see the Norfolk International airport to the right and the southern leg of the bridge touching the shore.&lt;br /&gt;
&lt;br /&gt;
If you intend to land at KORF, you will want to start your approach soon. Otherwise, you may continue to follow the bridge to the end. Make the approach to KORF by contacting the tower for vectors. Or use the ILS.&lt;br /&gt;
&lt;br /&gt;
This is a good flight to practice VOR flying on. It is a very straight flight path to the VOR requiring little adjustment and there are no other VORs in the area to confuse you.&lt;br /&gt;
*June 2006 by [[User:Sek|Sek]].&lt;br /&gt;
&lt;br /&gt;
===Airports and coordinates===&lt;br /&gt;
[[Image:World-KTGI.png|thumb|right|Latitude: 37.8250835 Longitude: -75.9976665]]&lt;br /&gt;
* [[KTGI|KTGI - Tangier Island]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/KTGI.pdf chart]&lt;br /&gt;
* [[KORF|KORF - Norfolk International]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/KORF.pdf chart]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
required scenery tile: ftp://ftp.sunsite.org.uk/sites/ftp.flightgear.org/flightgear-ftp/Scenery/w80n30.tgz&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
[[Image:KTGI-003.png|thumb|left|surroundings]]&lt;br /&gt;
[[Image:KORF-001.png|thumb|right|landing to KORF]]&lt;br /&gt;
I have tried this trip using a Seneca II&lt;br /&gt;
* [[Piper PA34-200T Seneca II]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FlightGear launching===&lt;br /&gt;
 fgfs --airport=KTGI --runway=20 --timeofday=dusk  --aircraft=SenecaII&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Prince George to Calgary Springbank==&lt;br /&gt;
A beautiful flight is from Prince George (CYXS), to Calgary Springbank (CYBW). Route created by reed, which can be seen at {{forum link|t=9772|text=the forums}}&lt;br /&gt;
*Published in [[FlightGear Newsletter November 2010]] By [[User:Cael|Cael]].&lt;br /&gt;
==Ketchikan to Juneau==&lt;br /&gt;
It's cold where we will go so dress up warm and if we are lucky we might see whales during our flight. Don't fly too high to enjoy the amazing views, and there is a small challenge at the end. The runways we will use are long enough for bigger aircraft (7000+). Total length of the trip will be around 245 NM. So, hop in the cockpit of your favourite airliner.&lt;br /&gt;
&lt;br /&gt;
Alaska, here we come! Enjoy!&lt;br /&gt;
#Park your aircraft on PAKT, [http://www.borough.ketchikan.ak.us/airport/airport_history.htm Ketchikan International], runway 11. The wind is coming from '''South''', change the weather if needed (SE is ok too). &lt;br /&gt;
#Fly North towards [[NDB]] Fredericks Point on 372.0 for 94 NM. &lt;br /&gt;
#Fly towards [[NDB]] Five Fingers on 295.0 for 39 NM. &lt;br /&gt;
#Fly towards [[NDB]] Gustavus on 219.0 for 77 NM. &lt;br /&gt;
#Fly towards [[NDB]] Coghlan Island on 212.0 for 32 NM.&lt;br /&gt;
#Set the [[ILS]] on 109.9 and land your aircraft (after 4 NM) on PAJN, [http://www.juneau.org/airport/ Juneau International], runway 08.&lt;br /&gt;
If you feel warm after this landing, you just crossed a NORAD microwave site, so that is why.&lt;br /&gt;
*October 2011 by [[User:PH-JBO|PH-JBO]] [[FlightGear Newsletter November 2011]]&lt;br /&gt;
==Searching Wizard Island==&lt;br /&gt;
*USA, Oregon, Klamath County&lt;br /&gt;
With one [[VORTAC]] behind our back we do an [[IFR]]/[[VFR]] search of Wizard Island, a mysterious place, a sacred place for native Americans. You might even find the &amp;lt;tt&amp;gt;Old Man of the Lake&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Don't pull up the map, that would spoil the surprise but I promise '''unique views'''. We will land on a short lawn runway. Terrain [[altitude]] will range from 4,000 to a max of 8,930 feet and down again. Total length of the trip will be about 50 NM. Select your aircraft with care. It must have one working navigational radio (VOR-DME), a strong engine, a strong undercarriage, must be capable of a good climb and a steep descend. I suggest to use Fair weather (Environment=&amp;gt;Global Weather). If needed remove some clouds (View=&amp;gt;Rendering Options=&amp;gt;Slider 3d Clouds to the left).&lt;br /&gt;
[[File:Mount Scott.jpg|thumb|250 px|Mount Scott (8,929 feet) just after depart from 2S7 (Two Sierra Seven). Wizard Island is just to the North-West of it.]]&lt;br /&gt;
*Park your aircraft on 2S7 (Two Sierra Seven), Chiloguin-State.&lt;br /&gt;
*Set [[NAV1]] on 115.9 (Klamath Falls VORTAC) and on radial 323&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt; (Magnetic). We are at an [[elevation]] of 4,217 feet. Set QNH. Set heading bug at 275&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt; (Magn).&lt;br /&gt;
*Take off an fly the course set with the heading bug.&lt;br /&gt;
*Intercept the radial.&lt;br /&gt;
*Monitor distance and you will find Wizard Island at 50 NM from Klamath Falls. The island has an elevation of 6,673 feet. I suggest a full 360&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt; turn, take pictures.&lt;br /&gt;
*Set radial 318&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt;, keep the same frequency. Do a new radial intercept.&lt;br /&gt;
*Try and find the airstrip (3S6, Three Sierra Six, Toketee-State) at 71 NM from Klamath Falls with an elevation of 3,361 feet, runway heading 275&amp;lt;sup&amp;gt;o&amp;lt;/sup&amp;gt; (Magn). There are bumps around you should avoid.&lt;br /&gt;
*If you are capable of finding the island, finding the airstrip and landing without a crash, in one go..., you are a wizard.&lt;br /&gt;
&lt;br /&gt;
Click [http://en.wikipedia.org/wiki/Crater_Lake this link] '''after''' you have landed so you know what amazing landscape you have seen.&lt;br /&gt;
&lt;br /&gt;
*December 2011 by [[User:PH-JBO|PH-JBO]]. Published [[FlightGear_Newsletter_March_2012|Newsletter March 2012]].&lt;br /&gt;
&lt;br /&gt;
=South America=&lt;br /&gt;
==Southern Tip of Chile==&lt;br /&gt;
[[Image:Scgz-001.png|thumb|left|right after take off]]&lt;br /&gt;
[[Image:Scgz-004.png|thumb|right|Some part of the scenery]]&lt;br /&gt;
Gary Carvell: Here is a suggestion for the FlightGear Places to Fly page. I don't have any particular routes, just fly around and enjoy the gorgeous scenery.&amp;lt;BR/&amp;gt;&lt;br /&gt;
These three airports are in the same region of the very southern tip of Argentina. This area is a scenic wonderland - a maze of islands, mountains, and ocean channels. Hours of entertainment.&amp;lt;BR/&amp;gt;&lt;br /&gt;
SCGZ - Puerto Williams Guardiamarina Zanartu Airport, Chile Located on the north coast of Isla Navarino facing the Beagle Channel. At 55 deg S. longitude, Puerto Williams is considered the southernmost town in the world.&amp;lt;BR/&amp;gt;&lt;br /&gt;
SAWH - Ushuaia Islas Malvinas Airport&lt;br /&gt;
SAWO - Ushuaia Est Aeronaval Airport&lt;br /&gt;
Ushuaia, on the south coast of Isla Grande de Tierra del Fuego, on the the Beagle Channel.&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
===Airports and coordinates===&lt;br /&gt;
[[Image:Sawh-004.png|thumb|left|Approaching Ushumaia Malvinas Argentinas]]&lt;br /&gt;
[[Image:World-scgz.png|thumb|right|Latitude: -54.931072 Longitude: -67.626261]]&lt;br /&gt;
&lt;br /&gt;
* [[SCGZ|SCGZ - Guardiamarina Zanartu]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/SCGZ.pdf chart]&lt;br /&gt;
* [[SAWH|SAWH - Ushuaia Malvinas Argentinas]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/SAWH.pdf chart]&lt;br /&gt;
* [[SAWO|SAWO - Ushuaia Est Aeronaval]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/SAWO.pdf chart]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
[[Image:Scgz-002.png|thumb|left|Just left the scgz airport]]&lt;br /&gt;
I personally like to fly this area in the [[Consolidated_Aircraft_PBY_Catalina|Catalina]], it's a great sightseeing plane with the advantage that you can take off and land just about anywhere. &lt;br /&gt;
* [[Consolidated_Aircraft_PBY_Catalina|Catalina]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FlightGear launching===&lt;br /&gt;
 fgfs --airport=SCGZ --aircraft=Catalina&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Copacabana to San Rafael over Lake Titicaca==&lt;br /&gt;
Bolivia to Peru. This trip will lead you over one of the highest and deepest lakes in the world towards the highest airfield in the world. It a demonstration of a [[IFR]] flight towards a fix and a demonstration how accurate FlightGear simulates air density and the effects it has on aircraft.&lt;br /&gt;
[[File:Slcc-sprf.jpg|thumb|200px|left|Flight and fix SLCC to SPRF]]&lt;br /&gt;
Place your aircraft on the airfield [http://en.wikipedia.org/wiki/Copacabana,_Bolivia SLCC, Copacabana], with an [[elevation]] of 12,592 feet. FlightGear will show snow all around you but that is not very realistic so let's clean up. View=&amp;gt; Rendering Options=&amp;gt; Snow line=&amp;gt; Set to max. (5,000M). &lt;br /&gt;
&lt;br /&gt;
We will fly towards and land at SPRF. If you would enter SLCC and SPRF in [[Kelpie]] planner you probably would not be able to find SPRF. To find SPRF I am adding an additional VOR-DME station and for a good fix give you another VOR-DME. Try Kelpie planner to plan this route and compare with this suggestion.&lt;br /&gt;
&lt;br /&gt;
Equipment preparation. Set [[NAV1]] to [http://en.wikipedia.org/wiki/Juliaca Juliaca] VOR-DME on 155.55 with a radial of 311° (magnetic). Set [[NAV2]] to Arequipa VOR-DME on 113.7 with a radial of 212°. During our flight we will fly with [[true altitude]] as set with [[QNH]], keep QNH updated. Arm the autopilot with the [[heading bug]] at 311° and an initial altitude of 13,500 feet.&lt;br /&gt;
&lt;br /&gt;
Take off and if you took the wrong RW pull up hard. Take a small tour over [http://en.wikipedia.org/wiki/Titicaca lake Titicaca], see the floating islands and try to find the lost golden treasure. Intercept the nearest radial on NAV1 towards Juliaca (about 311°). &lt;br /&gt;
&lt;br /&gt;
Just before Juliaca is a hill so while on lake Titicaca increase altitude to 14,200 feet, the [[VFR]] part of this trip is over. After passing Juliaca set the radial of NAV1 to 352° and set the altitude to 17,422 feet. We will fly from NAV1 and slowly increase altitude.&lt;br /&gt;
&lt;br /&gt;
At a distance of about 60 NM set the heading bug on the current course. Monitor the distance to NAV1, the radial of NAV2 and the distance to NAV2. At a distance of 74.5 NM to NAV1, a distance of 140.7 NM and at the '''radial''' intercept of NAV2 should be the runway. So, from 60 NM onwards, look outside the window, then at NAV1 and then NAV2 etc.&lt;br /&gt;
&lt;br /&gt;
If you are at 80NM to NAV1 you have missed the airfield but you still won't hit any hills (unless you bank left). Bank right and set the heading bug to 172°. Fly back towards NAV1 and intercept the radial 352° at about 50NM again to repeat the search.&lt;br /&gt;
&lt;br /&gt;
The runway SPRF, San Rafael, has a elevation of 14,422 feet and a heading of 297°/ 117°. Our initial altitude has been set 3,000NM above the RW elevation. That should give sufficient room for navigation.&lt;br /&gt;
&lt;br /&gt;
After you have seen the airfield set the radial of NAV1 to 297°, the heading of the runway (not the course to the runway) as a visual aid. Land on RW 30 (and not on RW 12 unless you are a show-off). Oh, there is a small hill in front of RW 30, just so you know.&lt;br /&gt;
&lt;br /&gt;
Decreasing speed at this altitude can be a bit tricky. The air is thin and does not give much resistance. Next to that, the difference between [[indicated airspeed]] and [[ground speed]] is very noticeable. The ground speed is much higher as the indicated airspeed.&lt;br /&gt;
&lt;br /&gt;
After a successful landing, try to discover the origin of the Amazon river since we are now at the starting point of that trip.&lt;br /&gt;
* October 2011 by [[User:PH-JBO|PH-JBO]], published in [[FlightGear_Newsletter_February_2012#Suggested_flights| Newsletter February 2012]].&lt;br /&gt;
&lt;br /&gt;
==Origin of the Amazon River==&lt;br /&gt;
[[Image:SPRF-001.png|thumb|left|high altitude]]&lt;br /&gt;
[[Image:SPRF-002.png|thumb|right|high altitude]] &lt;br /&gt;
Peru. For this [[IFR]] tour (with [[VFR]] parts) we take off from the highest airfield in the world to discover the origin of the [http://en.wikipedia.org/wiki/Amazon_River Amazon river] in South America. I promise spectacular mountains and valleys. The total length of this trip is about 175 NM.&lt;br /&gt;
&lt;br /&gt;
Place your aircraft on the airfield SPRF, San Rafael. FlightGear will show snow all around you but that is not very realistic so let's clean up. View=&amp;gt; Rendering Options=&amp;gt; Snow line=&amp;gt; Set to max. (5,000M).&lt;br /&gt;
&lt;br /&gt;
Equipment preparation: Set [[NAV1]] to [http://en.wikipedia.org/wiki/Arequipa Arequipa] VOR-DME at 113.7 with a radial of 176° (magnetic). Set [[NAV2]] to [http://en.wikipedia.org/wiki/Cusco Cusco] VOR-DME at 114.9 also with a radial of 176°.&lt;br /&gt;
Set [[QNH]] and during flight keep correcting it, it's a bad idea to use [[Pressure altitude]] during this flight. Set the [[heading bug]] to 250°. Arm the [[autopilot]] and set the initial [[altitude]] to 16,000 feet.&lt;br /&gt;
&lt;br /&gt;
The airfield SPRF, San Rafael has an [[elevation]] of 14,422 feet. That altitude will cause problems during take-off. It takes a lot longer for the aircraft to gain sufficient speed for take-off, also the take-off speed that is needed is higher as you would expect. Perhaps an additional notch of flaps is needed.&lt;br /&gt;
&lt;br /&gt;
Take-off, avoid the bumps (there are plenty) and fly a course of 250°. After about 80 NM you will fly over the radial of NAV1. Intercept the radial towards Arequipa. At a distance of 75 NM towards NAV1 you will have to increase altitude to 19,000 feet. &lt;br /&gt;
&lt;br /&gt;
At a distance of 50 NM towards NAV1 and 118 NM from NAV2 you will see and cross over the mountain [http://en.wikipedia.org/wiki/Nevado_Mismi Nevado Mismi] with an altitude of 18,362 ft. The rains and water on the area to the right until Nevado Mismi will leave towards the Atlantic ocean through the Amazon river. Anything to the left and after Nevado Mismi will leave towards the Pacific ocean.&lt;br /&gt;
&lt;br /&gt;
After Nevado Mismi you are tempted to descend. Don't. Just before the airfield is [http://en.wikipedia.org/wiki/Chachani Mt.Chachani] with an altitude of 19,872 feet and to the East is the active volcano [http://en.wikipedia.org/wiki/El_Misti El Misti] with an altitude of 19,101 feet. You can either increase the altitude and fly over the airfield or keep the altitude, even descend and fly between the mountains, your choice depends on the visibility.&lt;br /&gt;
&lt;br /&gt;
Fly using the heading bug and set NAV1 to [[ILS]] 109.7 with a radial of 93.2°. We will land at airfield [http://en.wikipedia.org/wiki/Rodr%C3%ADguez_Ball%C3%B3n_International_Airport SPQU, Rodriguez ballon], that has an elevation of 8,405 feet. There is a reason this airfield has just one ILS. The area South-West of the airfield is below 11,405 feet and is safe to navigate.&lt;br /&gt;
&lt;br /&gt;
Position the aircraft in front of the runway at an altitude of 11,405 feet, catch the [[glidescope]] at a distance of 9.5 NM and land your aircraft. After landing and parking your aircraft crawl into the tower to look around.&lt;br /&gt;
&lt;br /&gt;
Happy flying!&lt;br /&gt;
&lt;br /&gt;
* October 2011 by [[User:PH-JBO|PH-JBO]]. Published [[FlightGear_Newsletter_March_2012|Newsletter May 2012]].&lt;br /&gt;
&lt;br /&gt;
===Airports and coordinates===&lt;br /&gt;
[[Image:SPQU-001.png|thumb|left|pre - landing]]&lt;br /&gt;
[[Image:World-SPRF.png|thumb|right|Latitude: -14.267 Longitude: -70.467]]&lt;br /&gt;
* [[SPRF|SPRF - San Rafael]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/SPRF.pdf chart]&lt;br /&gt;
* [[SPQU|SPQU - Rodriguez Ballon]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/SPQU.pdf chart]&lt;br /&gt;
&lt;br /&gt;
required scenery tile: ftp://ftp.sunsite.org.uk/sites/ftp.flightgear.org/flightgear-ftp/Scenery/w020s80.tar.gz&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
[[Image:SPQU-002.png|thumb|right|landed]] &lt;br /&gt;
I recomend a powerful jet angine airplane, but not too heavy !&lt;br /&gt;
* [[Cessna 550 Citation II]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FlightGear launching===&lt;br /&gt;
 fgfs --airport=SPRF --aircraft=Citation-II&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Middle East=&lt;br /&gt;
==Israel to Jordan over the Dead Sea==&lt;br /&gt;
[[Image:LLBS-001.png|thumb|left|take off]]&lt;br /&gt;
[[Image:LLBS-002.png|thumb|right|flat land]] &lt;br /&gt;
Dead Sea is the lowest water elevation on the Earth. Take off from the Beer-Sheva Teyman airport and head East-North-East. About half way there, after the southern Hebron mountains ridge, there'll be a sharp drop-off down to the Dead Sea --- the lowest exposed point on the Earth.&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
It's really fun to descend and explore the beautiful coastline. In the real life, you wouldn't like to fly low over this water there of your own will --- while you don't need a life vest in the Dead Sea, the water is pretty caustic there for one's eyes. Once you're done marvelling the sights, continue on to the Queen Alia airport. &lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
===Airports and coordinates===&lt;br /&gt;
[[Image:LLBS-006.png|thumb|left|landing in the dead sea, notice the altitude !]]&lt;br /&gt;
[[Image:OJAI-007.png|thumb|right|landing at Queen Alia Intl.]] &lt;br /&gt;
[[Image:World-LLBS.png|thumb|right|Latitude: 31.29037800 Longitude: 34.71922500]]&lt;br /&gt;
* [[LLBS|LLBS - Teyman]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/LLBS.pdf chart]&lt;br /&gt;
* [[OJAI|OJAI - Queen Alia Intl]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/OJAI.pdf chart]&lt;br /&gt;
&lt;br /&gt;
required scenery tile: ftp://ftp.sunsite.org.uk/sites/ftp.flightgear.org/flightgear-ftp/Scenery/e030n30.tar.gz&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
[[Image:LLBS-003.png|thumb|left|approaching the dead sea]]&lt;br /&gt;
[[Image:LLBS-004.png|thumb|right|there is also a minor airport]] &lt;br /&gt;
* [[Albatross]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FlightGear launching===&lt;br /&gt;
 fgfs --airport=LLBS --aircraft=Albatross&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Europe=&lt;br /&gt;
==Edinburgh to Oban==&lt;br /&gt;
See article: [[Edinburgh to Oban]].&lt;br /&gt;
&lt;br /&gt;
==Oban to Prestwick==&lt;br /&gt;
The west coast of Scotland offers some stunning scenery and a number of small airfields and airports to land at on both the mainland and the small islands the dot the coast. The distances between the various airfields are quite small, and some of the runways are on the short side, so STOL or GA aircraft are ideal. The tour suggested here follows part of a microlight trip I made this month, photos of which can be found [http://www.nanjika.co.uk/photos/gigha/ here].&lt;br /&gt;
&lt;br /&gt;
Oban airport (EGEO) lies on the west coast of Scotland, and offers fuel (both AVGAS and AVTUR) and a North/South tarmac runway.&lt;br /&gt;
&lt;br /&gt;
From Oban it is just a 10 minute flight west to the grass airfield of Glenforsa (EG45), on the north-east coast of the island of Mull. Due to the hills and water channel, this airfield often gets quite strange wind patterns - the weather can be perfect in Oban, but much gustier and windier at Glenforsa. At times the windsocks at either end of the runway can blow in completely opposite directions!&lt;br /&gt;
&lt;br /&gt;
Some distance north of Oban lie the airfields of the Isle of Skye (EG57) and Plockton (EG81). This is an excellent place from which to explore the mountains of the Isle of Skye, known as the Cuilins.&lt;br /&gt;
&lt;br /&gt;
Heading south from Oban, one can follow the coast to the island of Jura, with it's distinctive hills (The Paps of Jura). From Jura one can head south to the island of Islay with its numarous malt whisky distilleries (many of which are modelled in FG). Islay Airport (EGPI) has extensive runways. From Islay head north east to the tiny island of Gigha. Despite it's small size, it too has an airfield (EG44), though the FG version is tarmac rather than grass.&lt;br /&gt;
&lt;br /&gt;
From Gigha head east over the Mull of Kintyre, to the hilly isle of Arran, then north east to the Isle of Bute. Both islands have very small grass airstrips, which are sadly not present in FG. From Bute you can head south east to Prestwick International (EGPK), famous for being the only place Elvis touched down in the UK, and a fine place to end our tour.&lt;br /&gt;
*Published in [[FlightGear Newsletter July 2011]] by [[User:Stuart|Stuart]]&lt;br /&gt;
&lt;br /&gt;
== Edinburgh to Dundee ==&lt;br /&gt;
Edinburgh Airport (EGPH) is located to the West of the city of Edinburgh and south of the Forth rail and road bridges. You'll need the w010n50 scenery and the latest set of objects from the scenery DB which include a number of models for the Edinburgh area.&lt;br /&gt;
&lt;br /&gt;
From Edinburgh Airport, head north and circle the bridges, then follow the coast on the south eastwards past Edinburgh (watch out for the Castle!) and to East Lothian and Bass Rock - a volcanic plug in the sea that is host to thousands of sea-birds.&lt;br /&gt;
&lt;br /&gt;
There are a number of sights in East Lothian, include a distillery.&lt;br /&gt;
&lt;br /&gt;
If you wish to continue your tour, head back North, crossing the Firth of Forth to the Kingdom of Fife. Head approximated North West, tracking towards the Perth VOR (110.4). There is an airport here (Perth Scone, EGPT), but instead we will now track out on the 090 radial and pick up the ILS to Dundee Airport (108.10) landing beside the sea.&lt;br /&gt;
* September 2006 by [[User:Stuart|Stuart]].&lt;br /&gt;
&lt;br /&gt;
==Austrian alps soaring==&lt;br /&gt;
Discover the Austrian alps with a glider. [[Pinzgauer Spaziergang]]&lt;br /&gt;
&lt;br /&gt;
== Sightseeing the Alps in a C172 ==&lt;br /&gt;
This tour will guide you to many of the most famous mountains, valleys, glaciers, snowfields, winter and summer vacation areas, etc. in the European Alps. In addition there are several hints to visit nearby areas of interest. On the tour you will visit Switzerland, Italy and France.&lt;br /&gt;
See the detailed description in: http://www.emmerich-j.de/FGFS/Alp-flying.pdf (mirrored to https://beni.hallinger.org/fgfs.nobackup/Alp-Tour-Jomo/)&lt;br /&gt;
*February 2011 by [[User:Jomo|Jomo &amp;amp;dagger;]].;&lt;br /&gt;
&lt;br /&gt;
* The scenic trip does take about 2 hours.&lt;br /&gt;
* Skyvector route: https://skyvector.com/?ll=46.464097146192884,7.159790050777061&amp;amp;chart=301&amp;amp;zoom=6&amp;amp;fpl=%20LSZC%204700N00836E%204647N00840E%204642N00836E%204637N00835E%204634N00823E%204634N00812E%204633N00809E%204634N00805E%204634N00801E%204631N00803E%204624N00746E%204619N00745E%204618N00753E%204614N00752E%204612N00749E%204609N00747E%204603N00746E%204601N00745E%204600N00738E%204555N00724E%204555N00712E%204553N00703E%204547N00652E%204549N00649E%204604N00634E%20LSGG&lt;br /&gt;
&lt;br /&gt;
== Salzburg to Zell am See via Hallstatt ==&lt;br /&gt;
[[File:LOWS-LOGO-LOWZ.jpg|thumb|The route for Salzburg to Zell am See via Hallstatt]]&lt;br /&gt;
This flight will bring you around a very scenic region of the austrian alps.&lt;br /&gt;
* [https://skyvector.com/?ll=47.5666119817603,13.107925427128999&amp;amp;chart=301&amp;amp;zoom=3&amp;amp;fpl=N0100A040%20LOWS%204735N01311E%204736N01339E%204733N01340E%204733N01343E%204735N01343E%204738N01355E%204727N01357E%20LOWZ SkyVector route]&lt;br /&gt;
* Suggested plane: C172 or C182&lt;br /&gt;
* This is VFR only, so pick suitable weather. There are no usable navaids for this trip.&lt;br /&gt;
* Trip takes around 1 hr. air time at 120 KTAS.&lt;br /&gt;
* Fly at an altitude of about 4000ft or so (the entire trip can be done at that altitude safely).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Start ''Salzburg (LOWS)''; follow the Autobahn in the valley to the southeast until you reach the fork at ''Golling''. To the south you see the Mountains of the ''Tennengebirge''.&lt;br /&gt;
* Alternatively (and I recommned that), you can also deviate sothwest around ''Mt. Untersberg'' (1972m, hosting germanys longest and deepest cave, the ''Riesending'') to visit lake ''Königsee'' and watch the peaks of the ''Steinernes Meer'' (the dominant and very famous ''Mt. Watzmann'', 2713m!) and north side of the ''Mt. Hochkönig''. You need to climb to at least 6200ft to cross the final ridge at the end of the lake valley. After crossing, descend to 4000ft, follow the valley and fly north at the next valley to rejoin the route.&lt;br /&gt;
* Turn east and follow the valley and hills, aim for a prominent V-shaped incision at the end. Fly through there and you suddenly break out at the lake ''Hallstätter See'', a fjord-like lake 125m deep.&lt;br /&gt;
* Follow the ''Hallstätter See'' to the south, on its western shore is the famous town of ''Hallstatt''. At the mountain to your right (north of Hallstatt) is a very old settlement dating back to the late bronce age (Hallstattzeit, c. 800–450 BC) and there was a very important Salt mine dating back to that time and important archeological grave findings.&lt;br /&gt;
Looking south you can see the ''Dachstein'' (2995 m), a high peak hosting the ''Hirlatzhöhle'', with 120km the twentiest longest and with 1560m sixth deepest cave of planet earth.&lt;br /&gt;
* Follow the valley east bend to ''Obertraun'', and then north over the ''Koppenpass'' and the town of ''Bad Aussee''.&lt;br /&gt;
* From ''Bad Aussee'', fly straight to the lakes ''Grundlsee'' and ''Toplitzsee'' (you can't see the latter yet).&lt;br /&gt;
* Between the two, turn southwards and aim for the reservoir lake ''Salza'' which is in the sharp incision you can see to the south.&lt;br /&gt;
* After passing the reservoir, you may try to get down to ''Niederoblarn'' (LOGO) to the southeast, it's a short airfield.&lt;br /&gt;
* From there, follow the railway in the valley of Enns westwards, LOWZ is about 20 minutes away. On your right side watch out for the other side of the ''Dachstein'' and the town of ''Schladming'', which lies down in the valley next the rocky hills with the river flowing trough. Look for the railway and the river Enns.&lt;br /&gt;
* Behind ''Schladming'' (south of Mt. ''Dachstein'', approximately halfway of the distance LOGO/LOWZ) the valley will widen a bit again, featuring a rocky mountain in the middle of the valley. Continue to follow the railway and river bending nortwest arond the small mountain.&lt;br /&gt;
* Near the bigger town of ''Radstadt'' the valley will open significantly. Follow west, heading for the next town ''Altenmark'' at the end of the opening.&lt;br /&gt;
* The railway will bend north at ''Altenmark'' and soon join the Autobahn A10/E55. This is the point we need to go southwest and follow the next valley.&lt;br /&gt;
* The valley leads us westward to the Town of ''St. Johann/Pongau''. probably around the middle of the valley you can spot the prominent ''Mt. Hochkönig'' (2941m) northwest of ''St. Johann'' and the ''Tennengebirge'' to its right.&lt;br /&gt;
* Once reaching ''St. Johann'', continue to follow the next big valley west-southwest.&lt;br /&gt;
* After about 16 miles you will reach ''Zell am See'' (LOWZ) where we will land after around one hour flight time in total. Beware this is a short field.&lt;br /&gt;
&lt;br /&gt;
== Zell am See to Innsbruck via Mt. Venediger ==&lt;br /&gt;
[[File:LOWZ-LOWI.jpg|thumb|The route for Zell am See to Innsbruck]]&lt;br /&gt;
This flight will bring you to two of the core peaks of the Alpenhauptkamm.&lt;br /&gt;
* [https://skyvector.com/?ll=47.201656734623775,12.160079968084839&amp;amp;chart=301&amp;amp;zoom=3&amp;amp;fpl=N0100A120%20LOWZ%20LOWZ%204708N01241E%204708N01221E%204706N01214E%204710N01152E%204724N01150E%20LOWI SkyVector route]&lt;br /&gt;
* Suggested plane: C172 or C182&lt;br /&gt;
* This is VFR only, so pick suitable weather. There are no usable navaids for this trip.&lt;br /&gt;
* Trip takes around 45 minutes air time at 110 KTAS.&lt;br /&gt;
* Climb to at an altitude of about 10000ft or so after starting from [[:File:Lowz-parking.jpg|Zell am See]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* After starting fly into the valley southwest over the town of ''Kaprun''. Maybe you need to circle a bit to gain altitude, near the mountains we need at least about 10000ft!&lt;br /&gt;
* Follow the valley until you overfly two lakes (''Stausee Wasserfallboden'' and ''Moorboden''). To your left you can see ''Mt. Großes Wiesbachhorn'' (3564m).&lt;br /&gt;
* The end of the valley goes over into a flank of the ''Großglockner'' which is near to the south. Follow the west bend of the valley end and fly over the lakes ''Tauernmoossee'' and ''Weißsee''. After you climb out of the valley, you already should see the peak of ''Mt. Venediger'' on the front left. Aim to the saddle right of its peak.&lt;br /&gt;
* You then fly that direction over several valleys that go from south to north, until you hit the very big valley that bend from south to west. The ridgeline right of that valley is the border between the Austrian states Tirol and Salzburg. Follow the valley up to the ''Venediger'', passing the ''Mt. Sandebentörl'' (2751m), still aiming for the saddle.&lt;br /&gt;
* Shortly after you reach the end of the valley and need to overfly the saddle with the glacier ''Venedigerkees'' behind it. The ridgeline is again the border between Tirol and Salzburg. Directly south of the ''Venedigerkees'' is the pyramid of ''Mt. Venediger''.&lt;br /&gt;
* Follow ''Venedigers'' ridge to the southwest, skip the first valley and overfly the next ridge.&lt;br /&gt;
* From here you can deviate into the valley north and visit the ''Krimmler Wasserfälle'', and from there west trough the main valley.&lt;br /&gt;
* If you instead follow the planned route westwards, aim to the peak of ''Mt. Zillerplattenspitze'' (3148m) with the small lake ''Eissee'' to its south flank which you should already see. This is a little hard to get right, but don't fly directly into the big valley but aim right to the second row mountain peaks at about 280 heading.&lt;br /&gt;
* Overfly the ridge with ''Eissee'' and follow the valley from there nothwest with the reservoir ''Zillergründl'' and ''Mt. Reichenspitze'' (3303m) to its right; until you reach the town ''Mayrhofen'' where the current valley meets the ''Zillertal'' valley. You also should start to descend now to about 3500ft with a rate of roughly -1000fpm.&lt;br /&gt;
* From ''Mayrhofen'' follow the ''Zillertal'' valley north and when reaching the ''Inntal'' valley near the town ''Jenbach'', Innsbruck Airport is a few minutes to the west. If you like, you can divert north at ''Jenbach'' to visit ''Achensee'', and even continue further north to land at Munich via lake ''Tegernsee'' or via the Isartal over ''Bad Tölz''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Crossing the alps ==&lt;br /&gt;
[[File:ED02-LIPB.jpg|thumb|The route for Fuessen to Bolzano]]&lt;br /&gt;
This trip brings us from germany via austria to italy, crossing the alps, visiting the famous castle Neuschwanstein and Mt. Zugspitze, germanys highest peak.&lt;br /&gt;
* [https://skyvector.com/?ll=47.068251080980836,10.959411633048108&amp;amp;chart=301&amp;amp;zoom=5&amp;amp;fpl=N01204735N01041E%204734N01045E%204729N01042E%204726N01046E%204724N01054E%204712N01054E%204704N01058E%204656N01103E%204655N01106E%204653N01109E%204650N01110E%204648N01113E%204638N01110E%20LIPB SkyVector route]&lt;br /&gt;
* Suggested plane: C172 or C182&lt;br /&gt;
* This is VFR only, so pick suitable weather and time (I suggest to start with the first light/sunrise).&lt;br /&gt;
* There are no helpful navaids for this trip, but Bolzano NDB: 362 BZO may serve as a final guidance.&lt;br /&gt;
* Trip takes around 45 minutes air time at 120 KTAS.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Start at ED02 Fuessen, climb to about 3000 and head southeast to visit castle Neuschwanstein, south of the Forgensee.&lt;br /&gt;
* After looking at the castle (challenge: fly close around behind it), we start climbing to 3500 and aim southwestish and cross over from germany to austria.&lt;br /&gt;
* Fly into the big valley directing south. East of Reutte start climbing 500fpm to 6000 and follow the railway in the valley to the southeast.&lt;br /&gt;
* Once the valley opens significantly, you can see the famous mountain Zugspitze (germanys highest peak, 2962 m) to the front.&lt;br /&gt;
* Head southwards around the Mt. Gartnerwand over town Ehrwald and fly between the two small peaks over the Marienbergjoch mountain pass, 1789m/5870ft (between Mt. Wanning and Mt. Marienberg; challenge: who can make it with the least altitude?).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* After overflying the second mountain, to the south comes a new valley called Ötzal where you fly into.&lt;br /&gt;
* Follow that valley all the way to the south and slowly climb to at least 8600 now (300fpm or so). Note overflying Längenfelden, where the dominant valley joins from the east with the river Fischbach, halfaway the leg; this looks similar to the end, but isn't.&lt;br /&gt;
* Follow the valley until it starts to branch in all different directions at the end (over the town of Sölden and Zwieselstein).&lt;br /&gt;
* We follow the Southeast main branch and then turn quickly to a smaller valley branching off directly eastwards (look for the mountain pass road).&lt;br /&gt;
* That brings us to the mountain pass of the Timmelsjoch and is the place where we cross over to Italy.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* After passing, we can descend to 2500 or so, following the terrain. Follow the valley and its river &amp;quot;Passer&amp;quot; southeast, and follow its bend to the south.&lt;br /&gt;
* Follow the valley and make a nice turn around Mt. Kolbenspitze's east ridge, over San Leonardo, still following the Passer river now southwards.&lt;br /&gt;
* Where the valley hits the next big valley &amp;quot;Etschtal&amp;quot;, is a bigger famous city called Merano. From there we follow the River Etsch and the Autobahn (highway) to the south and are soon approaching the somewhat hidden airport of Bolzano (LIPB) after an estimated time of somewhat under one hour at 120 knots.&lt;br /&gt;
&lt;br /&gt;
From here you can also continue more to the south to Trento (LIDT, total FT ~1:00) or Verona (LIPX, total FT ~1:20) - just follow the river Etsch to the south! Venezia is also not far away, just ~30 minutes/62nm to the east of Verona.&lt;br /&gt;
&lt;br /&gt;
==Grenoble Le-Versoud==&lt;br /&gt;
&lt;br /&gt;
[[Image:LFLG.jpg|800px]]&lt;br /&gt;
&lt;br /&gt;
France : '''LFLG'''  ( Grenoble Le-Versoud ) airport : border of Alps&lt;br /&gt;
*P.A.F. home base [http://equipe-flightgear.forumactif.com/ link]&lt;br /&gt;
*Scenery : http://clemaez.fr/flightgear/flightgearfrance_05062011.tar.gz&lt;br /&gt;
*Texture : http://clemaez.fr/flightgear/pattentextures_maj24082011.tar.gz&lt;br /&gt;
&lt;br /&gt;
* Take-off from Grenoble le Versoud (LFLG). Head south following the general direction of the Alps. Bearing left (East) will take you into high alpine territory, while towards the West lie the plains of the Rhône valley. Once you reach the Mediterranean coast, follow it to land in Marseilles (LFML), Nice (LFMN), or another smaller airport serving the French Riviera.&lt;br /&gt;
*Published in [[Custom France Scenery]].&lt;br /&gt;
&lt;br /&gt;
==Gulf of Finland sightseeing tour==&lt;br /&gt;
Take a VFR sightseeing tour over the Gulf of Finland from Helsinki to Tallinn! Estonia's landmarks are all recent additions, while Helsinki was one of the first cities to have original models in the scenery model database.&lt;br /&gt;
&lt;br /&gt;
Take off from the smaller EFHF airfield in Helsinki, or try your luck fighting the virtual traffic at Vantaa, and head toward the port of Helsinki. Look for the Hartwall Arena, the Pasila tower, the railway station and the Olympic Stadium along the way. Make your way out over the Gulf flying just west of south - a heading of 190 should set you up nicely for a sightseeing tour of Tallinn. Try to come in from the west and do a sweeping left turn over the capital of Estonia, looking out for the Swissotel, Olympic Hotel, the Television tower, and other important landmarks in the capital city of Estonia. Make sure you look out for St. Olaf's Church, the tallest building in the capital city. Make your way over the Ulemiste Jarv (lake) to land on runway 09 at Tallinn's main airport.&lt;br /&gt;
&lt;br /&gt;
If you desire, you can do a touch-and-go at Tallinn and set your course southeastward, landing at Tartu Airport, which is also modelled in FlightGear.&lt;br /&gt;
&lt;br /&gt;
The distance between Helsinki and Tallinn is about 50 miles or 80 kilometres, while Tartu is twice the distance from Tallinn at 100 miles/160 kilometres. Fly a heading of 135 to get to Tartu from Tallinn.&lt;br /&gt;
*Published in [[FlightGear Newsletter October 2010]] by [[User:Statto|Statto]].&lt;br /&gt;
&lt;br /&gt;
==Azores==&lt;br /&gt;
[[Image:LPLA-001.png|thumb|left|take off]]&lt;br /&gt;
[[Image:LPLA-002.png|thumb|right|approaching island]] &lt;br /&gt;
The [http://en.wikipedia.org/wiki/Azores Azores], set in the middle of the Atlantic ocean, has had many names. Fortunate Isles, the Blue Islands, the Islands of Tin and Silver, the Islands of the Seven Cities. We can add, the Islands of Amazing Sights and Flights.&lt;br /&gt;
&lt;br /&gt;
Our flight is to celebrate the amazing views FlightGear can give us.&lt;br /&gt;
&lt;br /&gt;
Start your plane at [[Lajes Field]] (LPLA). This once was an emergency landing site for the [[Space Shuttle]] so you will have plenty of room to take off.&lt;br /&gt;
We will have to fly an odd pattern. The reason for that: if you don't fly too high (stick around 3000 while you can) you will have some amazing views.&lt;br /&gt;
&lt;br /&gt;
Next, fly towards and over LPPD. Look out the window and enjoy the view. Then head out towards LPHR. If you feel LPHR coming near, look out the window good, you might have to pull your plane up.&lt;br /&gt;
&lt;br /&gt;
Happy flying!&lt;br /&gt;
*Published in [[FlightGear Newsletter August 2011]] by [[User:PH-JBO|PH-JBO]]&lt;br /&gt;
&lt;br /&gt;
===Airports and coordinates===&lt;br /&gt;
[[Image:LPPD-001.png|thumb|left|over the island]]&lt;br /&gt;
[[Image:LPPD-002.png|thumb|right|landing]] &lt;br /&gt;
&amp;lt;!--[[Image:World-LLBS.png|thumb|right|Latitude: 31.29037800 Longitude: 34.71922500]]--&amp;gt;&lt;br /&gt;
* [[LPLA|LPLA - Lajes Field]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/LPLA.pdf chart]&lt;br /&gt;
* [[LPPD|LPPD - Ponta del gada]] - [http://assistenza.larasrl.net/brisa/fgfs/suggested_flights/LPPD.pdf chart]&lt;br /&gt;
&lt;br /&gt;
required scenery tile: http://mirrors.ibiblio.org/pub/mirrors/flightgear/ftp/Scenery-v2.4.0/w020n30.tgz&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
* [[Cessna 550 Citation II]]&lt;br /&gt;
&lt;br /&gt;
===FlightGear launching===&lt;br /&gt;
 fgfs --airport=LPLA --aircraft=Citation-II&lt;br /&gt;
&amp;lt;div style=&amp;quot;clear:both;&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Canary Islands Trip ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
An archipelago in the middle of the Atlantic sea, stunning beauty where you won't expect it. Seven islands, seven continents, thats what the canarian people say. And it's true, you will face seven totally different islands and nine different airports. &lt;br /&gt;
Take off from the largest one, GCLP, at the main island Gran Canaria. Leave the beautiful island heading to the west, and land at GCTS, the southern airport at Tenerife. Enjoy the view on Spains highest mountain, the glaciered Teide, when flying to La Gomera (GCGM), one of the greenest islands there. Master the short runway, and enjoy the view, before taking the challenge and approach El Hierro (GCHI). A short runway, with cliffs and rocks on both ends will cause you to sweat. From this island, which was claimed to be the western end of the world in medieval times, you'll turn to the beautiful and wild island of La Palma (GCLA). The next approach will be historical, because you are approaching the notorious Tenerife North (GCXO). Yes, I am serious, you will face that airport, where the worst civil plane crash ever took place. But you needn't worry, if you got that far, you will do this approach as easy as any other. The longest flight on your trip will take you to the eastern island, Lanzarote (GCRR). Take a look at the volcanic-red mountains, the vineyards, and the beaches. You want more beaches?? Depart to the south-west, fly over the small island of Los Lobos, and land in the holiday-paradise Fuerteventura. Enjoy dunes, bays, and very nice long beaches, before you finally touch down in Fuerteventura (GCFV). You want to stay? Okay, let's taxi to a parking position, and cut off the engines. If you still want more, fly back to Gran Canaria's GCLP, where we started our trip. &lt;br /&gt;
&lt;br /&gt;
Custom scenery: [[Canary Islands Custom Scenery]] / direct source: https://github.com/D-ECHO/Canarys &lt;br /&gt;
&lt;br /&gt;
=== Suggested Aircraft ===&lt;br /&gt;
&lt;br /&gt;
* small civil aircraft, such as the Cessna Skylane, Skyhawk, or Citation&lt;br /&gt;
* small airliners, like the Q400, the ATR72, the CRJ200, or similar&lt;br /&gt;
&lt;br /&gt;
Route by Flycanarias&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Gibraltar==&lt;br /&gt;
''This flight suggestion has originally been published in [[FlightGear Newsletter September 2011]] by [[User:PH-JBO|PH-JBO]]''&lt;br /&gt;
&lt;br /&gt;
Traffic lights turn red, gates are closed. The only busy main road to the peninsula is closed and all the cars and trucks are waiting patiently. Waiting for a train to pass? No. Waiting for a plane to pass since the main road crosses a busy runway.&lt;br /&gt;
&lt;br /&gt;
On both sides water and being crossed by a busy main road can only be one runway: [http://en.wikipedia.org/wiki/Gibraltar_Airport Gibraltar airport]!&lt;br /&gt;
&lt;br /&gt;
One would expect an ILS installed on such a tricky runway but no, you will have to guess where it is and how far away it is. Not even an ADF points to it. &lt;br /&gt;
&lt;br /&gt;
Take off from LEMG (Malaga). Go South-West and find the runway of LXGB somewhere to the right of the rock. '''Happy guessing!'''&lt;br /&gt;
===Airports===&lt;br /&gt;
*'''Departure Airport:''' Málaga/Costa del Sol (LEMG) - [https://aip.enaire.es/AIP/#LEMG Charts (AIP España)]&lt;br /&gt;
*'''Destination Airport:''' Gibraltar (LXGB) - [https://www.aidu.mod.uk/aip/pdf/ad/LXGB-Gibraltar-Combined.pdf Charts (UK MIL AIP)]&lt;br /&gt;
*'''Required scenery tile:''' w010n30&lt;br /&gt;
&lt;br /&gt;
=== Gallery ===&lt;br /&gt;
&amp;lt;gallery mode=&amp;quot;packed&amp;quot; widths=&amp;quot;200px&amp;quot;&amp;gt;&lt;br /&gt;
File:LEMG-010.png|Take-Off at Malaga Airport, Costa del Sol&lt;br /&gt;
File:LEMG-011.png|Just after departure from Malaga (LEMG)&lt;br /&gt;
File:LEMG-013.png|Look for the Gibraltar Rock appearing in the distance&lt;br /&gt;
File:LEMG-015.png|On Approach to Gibraltar Airport (LXGB)&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Suggested aircraft===&lt;br /&gt;
* [[Piper Aerostar]]&lt;br /&gt;
&lt;br /&gt;
===FlightGear launching===&lt;br /&gt;
 fgfs --airport=LEMG --aircraft=aerostar700 --adf1=300 --nav1=300:117.80&lt;br /&gt;
=Asia=&lt;br /&gt;
==Khorog, Tajikistan==&lt;br /&gt;
[[File:Fw190HinduKush.jpeg|left|thumb|Approaching a bank of snow-covered mountains in the south of the Hindu Kush]]&lt;br /&gt;
Surrounded by spectacular mountains and nestled in the end of a valley, Khorog Airfield (UT1C) makes an interesting place to land. It can only be approached by flying down the curved valley that snakes in from the North. Flying from here to OPCH (Chitral, Pakistan) at around 500ft AGL all the way is a wonderful way to explore the Hindu Kush mountains.&lt;br /&gt;
&lt;br /&gt;
If you bring a piston engined aircraft, be prepared to adjust the mixture as you climb - at the highest point in the flight, you will be at around 22000ft. Also, don't forget to carry plenty of fuel - there are very few airfields in the Hindu Kush that exist in FlightGear. This is a scenery bug that will hopefully be fixed in the future.&lt;br /&gt;
&lt;br /&gt;
*October 2011 by [[User:Armchair Ace| Armchair Ace]], published in [[FlightGear_Newsletter_January_2012#Suggested_flights| Newsletter January 2012]].&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
== Central Karakoram range ==&lt;br /&gt;
Let's explore one of the highest regions of the planet - the central Karakoram with the densest concentration of mountains of 8000 m and above. We're going to need a good climbing performance for the trip - even the frozen plateau of Baltoro glacier, above which K2 and Gasherbrum V and VI loom, is more than 13,000 ft high.&lt;br /&gt;
&lt;br /&gt;
[[File:Karakoram1.jpg|300px|thumb|left|Circling Gasherbrum I]]&lt;br /&gt;
&lt;br /&gt;
Take off from Skardu airport in Pakistan (OPSD). Skardu has a reasonably long (11,944 ft) runway at just 7,316 ft elevation, so you can take a jet, but for instance the [[De Havilland Canada DHC-6 Twin Otter|Twin Otter]] is more stylish. &lt;br /&gt;
&lt;br /&gt;
South of Skardu lies Deosai park, a famous high plateau, but we turn initially east. There's a chain of lakes which is the Indus river. After about five miles, the Shigar river merges with the Indus. Turn slightly left and follow the Shigar, then follow it into a long and broad lake-filled valley stretching into north-western direction.  &lt;br /&gt;
&lt;br /&gt;
Towards the end of the lake, a small tributary river, the Braldu, turns eastward out of the main valley. Follow the Braldu and start climbing (if you haven't done so yet). About 15 miles after turning into the Braldu river valley, two glacier-filled valleys stretch to the north - admire the view!&lt;br /&gt;
&lt;br /&gt;
[[File:Karakoram2.jpg|300px|thumb|right|Heading back into Skardu, Nanga Parbat on the horizon]]&lt;br /&gt;
&lt;br /&gt;
Passing a few lakes, you reach finally Baltoro glacier continuing the river valley stretching eastward. Ever climbing, follow the glacier till you reach some kind of T-junction. The glacier arm reaching north leads to K2 (which sadly isn't really there in Flightgear), but just ahead of you are the still rather impressive peaks of Gasherbrum V, VI and I - circle the range and make some pictures!&lt;br /&gt;
&lt;br /&gt;
A good way back to Skardu is to go about 10 miles sourth from the Gasherbrum peaks, then head due west.  To your west, you can see the long valleys fall away from the high ranges, to your right is the still glacier-covered high Karakoram. On a clear day (really good visibility selected) you can see the distinctive peak of Nanga Parbat appearing straight ahead on the horizon. The valley of Skardu is quite a distinctive feature and finding back VFR should not be a problem.&lt;br /&gt;
&lt;br /&gt;
Published in [[FlightGear_Newsletter_April_2012#Suggested_flights| Newsletter April 2012]] by [[User:Thosten|Thosten]].&lt;br /&gt;
&lt;br /&gt;
== The Paro Challenge ==&lt;br /&gt;
[[File:The Paro Challenge route.png|thumb|The route to follow in the maze of valleys between Hashimara Air Base (VE44) and Paro airport (VQPR). Created using OpenStreetMap and the Open Topo layer.]]&lt;br /&gt;
The challenge consists in flying as fast and as low as possible from Hashimara (VE44) to Paro (VQPR) while navigating a maze of valleys, steep climbs and sharp turns with only one VOR-DME beacon to guide you (it sits on a mountaintop south of Paro airport). You cannot fly on instruments; this is a 100% visual flight.&lt;br /&gt;
&lt;br /&gt;
Spawn at VE44 (Hashimara Air Force Station). Take off in any direction then turn immediately to heading 013 while staying low. You will see the Himalayas appear on the horizon. Follow the valley as it turns 90° left then make a sharp U-turn (180°) to the right. Fly over the bridge, then U-turn left again (160°). Follow the valley and do another U-turn to the right. Take a deep breath for a couple of nautical miles. Climb to 8500ft while heading 080 to pass over the mountain range. Turn slightly to your right (heading 100) and do a steep dive to 4000ft into the valley. Turn left into the second valley (heading 010), which you will need to follow all the way to Paro airport (VQPR), while climbing slowly to the airport elevation of 7500ft. On the way to Paro, you will pass a monastery on your left. If you don't see this monastery, you've lost yourself in the maze; good luck! After this monastery, follow the valley to the left (heading 290), which will force you to turn right after a few nautical miles. The runway will be hidden behind a hill. You can pass over the hill (steep dive on the other side) or fly to the right of it (steep S-turns), your choice.&lt;br /&gt;
&lt;br /&gt;
=== Suggested aircraft ===&lt;br /&gt;
The Paro Challenge is a challenge for most aircraft and most pilots. You will probably not succeed on your first attempt; and successive attempts with various aircraft will renew the challenge.&lt;br /&gt;
&lt;br /&gt;
===== Easy =====&lt;br /&gt;
[[Cessna 550 Citation II]], [[Pilatus PC-6 Porter|Pilatus PC-6]], [[De Havilland Canada DHC-6 Twin Otter|De Havilland Canada DHC-6]], [[Zivko Edge 540]].&lt;br /&gt;
&lt;br /&gt;
[[De Havilland Mosquito]], Messerschmitt Bf109G, [[Lockheed P-38 Lightning]].&lt;br /&gt;
&lt;br /&gt;
==== Challenging ====&lt;br /&gt;
[[Piper PA34-200T Seneca II|Piper Seneca II]], [[Cessna 337G Skymaster|Cessna 337]], [[Antonov An-2]]: keep an eye on your Exhaust Gas Temperature and Cylinder Head Temperature. If you can't lean your mixture, you lose.&lt;br /&gt;
&lt;br /&gt;
Cessna 172, PA-28 or DR-400 with 180hp engines and a light load; [[Cessna 182S]]; Cap 10b. Slower than the above and will require just as much concentration from you, for a longer time.&lt;br /&gt;
&lt;br /&gt;
[[Mikoyan-Gurevich MiG-15|MiG-15]], [[North American F-86 Sabre|F-86F Sabre]], [[Fairchild Republic A-10 Thunderbolt II|A-10 Warthog]]: make high-speed, steep turns while finding your way. Don't black out!&lt;br /&gt;
&lt;br /&gt;
==== Difficult ====&lt;br /&gt;
[[JT-5B|JT-5B autogyro]], [[Piper J3 Cub|Piper Super Cub 150hp]]: the Paro challenge takes well over an hour of intense concentration in these unstable aircraft.&lt;br /&gt;
&lt;br /&gt;
Cessna 172, PA-28 or DR-400 with low-power (160hp) engines. You will need to circle several times in the valley during the climb. If you can't lean your mixture, you lose.&lt;br /&gt;
&lt;br /&gt;
[[Boeing 707]], [[Boeing 757-200|757]], [[Tupolev Tu-154B|Tupolev 154]], [[Lockheed Constellation]] if lightly loaded; [[Cessna Citation X]]: Finding your way in these faster aircraft is a challenge. The U-turns before the steep climb are almost impossible without taking shortcuts. The final approach without seeing the runway requires you to control your speed, flaps and landing gear well in advance.&lt;br /&gt;
&lt;br /&gt;
==== Impossible (but you might try to beat them anyway) ====&lt;br /&gt;
[[Piper J3 Cub|Piper Cub 65hp]] (cannot climb over 7000ft when fully loaded).&lt;br /&gt;
&lt;br /&gt;
[[Boeing 737-300]] (poor low-speed handling), [[Boeing 787-8 Dreamliner|787]] (bank limiter).&lt;br /&gt;
&lt;br /&gt;
[[Dassault Mirage 2000-5|Mirage 2000]], [[Grumman F-14 Tomcat|F-14B]], [[McDonnell Douglas F-15 Eagle|F-15C]], [[General Dynamics F-16 Fighting Falcon|F-16]]: will either stall or black you out during the sharp turns.&lt;br /&gt;
&lt;br /&gt;
=Africa=&lt;br /&gt;
==Ngorngoro==&lt;br /&gt;
For this [[VFR]] trip we need a strong machine since we will go up from 4000 to about 10,000 feet and since we are in Africa, Tanzania , what better choice is there as the Cessna 208 Caravan, on wheels. We will take off from HTLM, [http://en.wikipedia.org/wiki/Lake_Manyara Lake Manyara], runway 12 (124.5 deg), that has an elevation of 4150 feet. Hit Shift-B so we don't drop off the runway. &lt;br /&gt;
[[File:Map Ngorngoro Crater.jpg|thumb|200px|left|Heightmap with visual reference points]]&lt;br /&gt;
We will have to change some settings before we take off. There is no snow where we are so: View=&amp;gt; Rendering Options=&amp;gt; Snow line=&amp;gt; Set to max. (5000M). We need a reasonable clear sky since there are quite a few bumps we could hit: Environment=&amp;gt; Global weather=&amp;gt; METAR source=&amp;gt; Fair weather.&lt;br /&gt;
&lt;br /&gt;
Give full throttle and take off. Bank left and make a full circle so we gain some altitude and make a mental note of the airstrip, since this is the only one nearby. Look at the road West towards the airfield. &lt;br /&gt;
You will notice that the airstrip is at the edge of a mountain ridge, the lake to the East is quite a lot lower.&lt;br /&gt;
&lt;br /&gt;
We pass over the airstrip towards lake Manyara and turn left keeping the mountains close to our left side, on an initial course of about 30 deg. We keep the mountains to our left and follow our path, our heading will slowly go from 30 to North and takes about 15 mins. During our path we should slowly gain altitude. &lt;br /&gt;
[[File:Ol Doinyo Lengai.jpg|thumb|250px|Mt.Kerimasi (left), Mt.Ol Doinyo Lengai (ahead)]]&lt;br /&gt;
On the '''image''' we see two distinct mountains. The nearest is Mt.Kerimasi, a fun place for hang-gliders, and North Mt.Ol Doinyo Lengai, an active volcano. We are heading straight towards [http://en.wikipedia.org/wiki/Ol_Doinyo_Lengai Mt.Ol Doinyo Lengai]. Just before we would collide we take a sharp left turn heading 225. You will see why we need the altitude now.&lt;br /&gt;
&lt;br /&gt;
The mountain ahead, [http://www.ntz.info/gen/n00161.html#id03702 Mt.Embagai], we see does not appear to be anything spectacular. Aim towards it since we have to go over it. &lt;br /&gt;
Coming nearer, if you are high enough, 9000 feet, you will see why this mountain is well worth a visit. It is a crater with a lake inside, lake Embagai (Empakaai). Enter the crater and look around, careful not to loose any height since we'll have to get out again, we need about 10 000 feet. Mesmerized we grab our compass and take a course of 225 again. To get out we might skim against a cloud, be careful. If you don't see a way out take a turn again to wait for the clouds to move out of sight.&lt;br /&gt;
&lt;br /&gt;
After you managed to get out of the crater keep on the course of 225 while descending slowly for about 9 mins. There are some bumps to avoid, like Mt.Olmoti we keep to the right and Mt.Losirua on the left. &lt;br /&gt;
&lt;br /&gt;
After a small hill we enter one of the most amazing places in Africa, the [http://en.wikipedia.org/wiki/Ngorongoro_Conservation_Area Ngorngoro Crater], the second biggest crater in the world. A micro climate and amazing wildlife.&lt;br /&gt;
Examine the crater and you will notice two lakes, head towards the biggest lake, lake Magadi. When you are above it take a course of 123 to get out of the crater.&lt;br /&gt;
&lt;br /&gt;
After leaving the crater it takes some time before we are near the airstrip again. After about 5 mins we will see a river (left) and a road (right). Follow the road since it will lead us to the airstrip again.&lt;br /&gt;
&lt;br /&gt;
Don't scare the wildebeast!&lt;br /&gt;
&lt;br /&gt;
Notecard:&lt;br /&gt;
&amp;lt;tt&amp;gt;&lt;br /&gt;
#Fair weather, no snow&lt;br /&gt;
#HTLM RW 12 4150 feet&lt;br /&gt;
#Course 30 to 0 deg 15 mins, mountains close left&lt;br /&gt;
#Head towards /\volcano&lt;br /&gt;
#Sharp left turn course 225 deg altitude 9000 feet&lt;br /&gt;
#Volcano, lake, 10 000 feet&lt;br /&gt;
#Course 225 deg, slow descend 9 min&lt;br /&gt;
#Large lake, course 123 deg 5 mins&lt;br /&gt;
#River left, road right. Follow road&lt;br /&gt;
#Landing 124.5 deg 4150 feet.&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*October 2011 by [[User:PH-JBO|PH-JBO]]. Published in [[FlightGear_Newsletter_December_2011#Suggested_flights | Newsletter December 2011]].&lt;br /&gt;
==Kisimayu to Kilimanjaro==&lt;br /&gt;
We have to take a big airliner for this trip. The runways are long enough but for this trip we need some altitude and a slow descend.&lt;br /&gt;
&lt;br /&gt;
We park our Big Bird at HCMK, [http://en.wikipedia.org/wiki/Kismayo_Airport Kisimayu], Somalia, near the East coast of Africa. It's unsure what this airfield is used for but it's a long piece of tarmac. I could not find regular flights to and from this airfield, not so strange, there is no lighting, no radio beacons and... no fuel. What you can find is Global Air Rescue that has an air ambulance service based here (with a [http://www.globalairrescue.com/learjet-35.php Learjet 35]).&lt;br /&gt;
&lt;br /&gt;
Our route will be around 425 nm in length. You know your aircraft and know what altitude you will need to fly.&lt;br /&gt;
&lt;br /&gt;
Our destination, HTKJ, [http://en.wikipedia.org/wiki/Kilimanjaro_International_Airport Kilimanjaro], Tanzania, has only one ILS and I have learned, if an airfield has only one ILS there is probably a reason. &lt;br /&gt;
&lt;br /&gt;
Flight Plan (short version):&lt;br /&gt;
#HCMK Kisimayu, length 12,177 ft, no navaids near.&lt;br /&gt;
#GAR Garissa [[VOR-DME]] freq 115.7 heading 268° dist 169 nm.&lt;br /&gt;
#KB Kilimanjaro [[NDB]] freq 393.0 heading 224° dist 258 nm, here is the holding pattern for the Kilimanjaro runway (and there is a [http://en.wikipedia.org/wiki/Mount_Kilimanjaro 19,000 ft] reason for this detour).&lt;br /&gt;
#KV Kilimanjaro VOR-DME freq 115.3 heading 70° dist 26 nm.&lt;br /&gt;
#HTKJ Kilimanjaro [[ILS]] freq 110.9 runway heading 88° elev 2,900 ft [[AMSL]] length 11,807 ft.&lt;br /&gt;
&lt;br /&gt;
Prepare your flight well to receive amazing views of the landscape during the final steps of the route, if you don't you will discover why some pilots call Kilimanjaro Kill-You-Manjaro.&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube | KCJi_ZaR8ec}}&lt;br /&gt;
Youtube video: Kilimanjaro approach in real, in FG not much different.&lt;br /&gt;
&lt;br /&gt;
*February 2012 by [[User:PH-JBO|PH-JBO]].&lt;br /&gt;
&lt;br /&gt;
=Australia and Oceania=&lt;br /&gt;
&lt;br /&gt;
==Hawai'i==&lt;br /&gt;
[[Image:Maui03.jpg|thumb|250px]]&lt;br /&gt;
Do you use [[TerraSync]]? If so, try a flight around Hawaii! Take off from PHNL in a light aircraft and head west until you hit Pearl Harbor; a right turn north will take you post the USS Arizona Memorial, and the Punchbowl Crater will be to your right. Or, fly east from PHNL past volcanic craters Diamond Head and Koko Head. If you follow the O'ahu coastline north from Koko Head, you can land at either old World War II airbase Bellows Field (now a wildlife reserve in real life) or at Keahole MCAS.&lt;br /&gt;
&lt;br /&gt;
For a potentially more scenic route, fly east toward Molokai, and stay to the north (left) of the island. The northern part of Molokai features huge sea cliffs and a tiny airstrip on the Kalaupapa peninsula - the peninsula being the only respite from the cliffs. A former leper colony existed near the airstrip!&lt;br /&gt;
&lt;br /&gt;
Also of interest are the volcanoes on Maui and the 'Big Island' of Hawai'i - flying VFR in a small plane from PHTO to PHKO over the plateau between Mauna Kea and Mauna Loa can be a challenge, as you have to take off from sea level, fly through a pass of 6500 feet, and then drop back down to sea level to land! The Hana coast of northern Maui is also a nice flight - a circumnavigation of Haleakala, starting and ending at PHOG, is quite a nice flight.&lt;br /&gt;
&lt;br /&gt;
The islands will be available through the download center with the next major scenery release, but for now, fire up [[TerraSync]] and your favorite VFR aircraft and have a blast.&lt;br /&gt;
*Published in [[FlightGear Newsletter September 2010]] by [[User:Statto|Statto]].&lt;br /&gt;
&lt;br /&gt;
== Hawai'i waterfalls tour ==&lt;br /&gt;
This flight will let you discover some of the famous Hawai'ian waterfalls, visiting the Islands of Kauai and Oahu.&lt;br /&gt;
{{note| Despite the scenery is very nice, the waterfalls are mostly not modeled (as of 5/2024)}}&lt;br /&gt;
&lt;br /&gt;
* [https://skyvector.com/?ll=21.82733715471215,-158.96200561400335&amp;amp;chart=301&amp;amp;zoom=5&amp;amp;fpl=%20PHBK%202211N15938W%202206N15930W%202204N15925W%20LIH%202135N15817W%202138N15802W%202120N15746W%202116N15748W%20PHNL SkyVector route]&lt;br /&gt;
* Suggested plane: C172 or C182&lt;br /&gt;
* This is VFR only, so pick suitable weather. There are no usable navaids for this trip except the VORTAC LIH 113.500 to cross the sea.&lt;br /&gt;
* Trip takes around 90 minutes air time at 110 KTAS.&lt;br /&gt;
&lt;br /&gt;
First part of the trip:&lt;br /&gt;
* Start at Parking sands (PHBK), runway 34&lt;br /&gt;
* Takeoff, climb to 5000ft and follow the northern coast at about a heading of 030° until you reach Crawlers Ledge (about 8 minutes flight time).&lt;br /&gt;
* Turn southeast into the very dominant embayment and watch out for Hanakoa Falls, our first waterfall to visit.&lt;br /&gt;
* To your left should be a very dominant valley behind the ridge, featuring a river. Now climb to 6000ft and follow that valley southeastish and visit the famous Weeping wall waterfalls behind the ridge at the end of the valley.&lt;br /&gt;
* Bank left slightly (~100° heading), descend to 3000 ft and aim for Wailua waterfalls at the south side of the small hill near the coast (between the two towns).&lt;br /&gt;
&lt;br /&gt;
This concludes the islands waterfalls after about 20 minutes flight.&lt;br /&gt;
&lt;br /&gt;
Now either land at Lihue Airport (PHLI) to your right for a break, or continue the trip and intercept VORTAC LIH 113.500 radial 99/TO. Follow the radial to cross the Kauai Channel until you reach the tip of Oahu Island (the crossing of 63NM takes about 30 minutes at 120 knots. You may also opt to skip and start at PHDH).&lt;br /&gt;
 &lt;br /&gt;
* Follow overfly Kawaihapai Airfield (PHDH) and follow the northern coast.&lt;br /&gt;
* Shortly you will ovefly a prominent bend from east to nothertheast in the coast, still follow the coast. Note the windfarm appearing to your right ahead.&lt;br /&gt;
* Over Waimea (just before the very visible sand beach), turn right and fly to the inland behind (north of) the windfarm. Shortly after passing the wind turbines, look out for Waimea waterfalls.&lt;br /&gt;
* Follow the mountains to the southeast of the island and slowly climb to 4000ft (the left side is more rough and scenic).&lt;br /&gt;
* North of Diamond Head (a big crater at the south tip of the island) there are several waterfalls (roughly in the middle between Diamond head in the south and Kaneohe in the north), as well as very nice streams coming down the ridge. Also the north side of the ridge is very nice, so consider doing a circle over there.&lt;br /&gt;
* Continue south over Diamond head and proceed to land at Honolulu airport (PHNL).&lt;br /&gt;
&lt;br /&gt;
This concludes the trip after about 1:30 hours.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Brisbane International Airport to Sydney International Airport==&lt;br /&gt;
Going from Brisbane International Airport to Sydney International Airport. You should have a heading of about 203. Might take sometime to arrive to this section. Maybe 10-30 mins into the flight. Can't really say but don't give up, you will eventually reach this section of the flight. '''''Your eyes will be rewarded!''''' .&lt;br /&gt;
&lt;br /&gt;
[[Image:Fgfs-screen-020.png|200px]]&lt;br /&gt;
[[Image:Fgfs-screen-016.png|200px]]&lt;br /&gt;
[[Image:Fgfs-screen-012.png|200px]]&lt;br /&gt;
*Published in [[FlightGear Newsletter April 2011]] by [[User:Vin|Vin]]&lt;br /&gt;
&lt;br /&gt;
=Antarctica=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{Suggested}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Lists]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Robin_DR400_Ecoflyer&amp;diff=140213</id>
		<title>Robin DR400 Ecoflyer</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Robin_DR400_Ecoflyer&amp;diff=140213"/>
		<updated>2024-08-06T11:23:43Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: /* Autopilot */ Tutorial, better description&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:{{PAGENAME}}/info}}&lt;br /&gt;
The '''Robin DR400-135cdi Ecoflyer''' is a single-engine four-seater aircraft built by the French company [[:Category:Robin Aircraft|Robin Aircraft]]. This variant of the DR400 family features a diesel engine built by Thielert/Continental and was one of the first general aviation aircraft to have a diesel engine instead of the conventional AVGAS engines. This means that the aircraft can fly using automotive-grade diesel fuel or JET-A1 fuel as typically used in commercial aviation.&lt;br /&gt;
&lt;br /&gt;
The FlightGear simulation of this aircraft was created using references, measurements and photos from a real DR400-135cdi aircraft, D-EAJZ.&lt;br /&gt;
&lt;br /&gt;
== Autopilot ==&lt;br /&gt;
The aircraft includes a simulation of the S-TEC Thirty autopilot which is controlled using two switches, two buttons on the control stick (currently not modelled) and the turn coordinator.&lt;br /&gt;
&lt;br /&gt;
The autopilot is simulated to work in detail like the real thing described in the [https://genesys-aerosystems.com/wp-content/uploads/2023/11/System-Twenty_Thirty_-ThirtyALT.pdf manual available online].&lt;br /&gt;
&lt;br /&gt;
=== Available Modes&amp;lt;ref&amp;gt;[https://genesys-aerosystems.com/wp-content/uploads/2023/11/System-Twenty_Thirty_-ThirtyALT.pdf Autopilot Manual, p. 1-3]&amp;lt;/ref&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
==== Lateral (Roll) ====&lt;br /&gt;
&lt;br /&gt;
* '''ST:''' Stabilizer Mode: Hold Wings Level&lt;br /&gt;
* '''HD:''' Heading Mode: Turn to and Hold Heading (as selected on the directional gyro, to the right of the Turn Coordinator/Roll Computer)&lt;br /&gt;
* '''TRK:''' Track a Navigation beacon&lt;br /&gt;
** '''TRK LO:''' Track using small corrections, typically for following a '''VOR'''&lt;br /&gt;
** '''TRK HI:''' Track using larger corrections, typically for following a '''LOC'''&lt;br /&gt;
&lt;br /&gt;
==== Vertical (Pitch) ====&lt;br /&gt;
There is only one pitch mode available, altitude hold ('''ALT'''). It holds the altitude that it is engaged at. This is accomplished by holding the absolute pressure as measured by its own altitude transducer connected to the aircraft's static pressure line.&lt;br /&gt;
&lt;br /&gt;
=== Tutorial ===&lt;br /&gt;
'''Please note:''' The following tutorial assumes that you're in stable flight, the engine and avionics are switched on and without malfunction.&lt;br /&gt;
[[File:DR400-Ecoflyer Autopilot Control Elements.jpg|alt=Control Elements for the S-TEC Thirty Autopilot System|frameless|800x800px]]&lt;br /&gt;
&lt;br /&gt;
==== Switching on the Autopilot ====&lt;br /&gt;
&lt;br /&gt;
# Switch on the Autopilot Master Switch&lt;br /&gt;
# The autopilot performs a self-test. Wait until the test is done, indicated by the green &amp;quot;RDY&amp;quot; (Ready) light on the Turn Coordinator.&lt;br /&gt;
# Use the Mode Button to select one of the lateral (roll) modes.&lt;br /&gt;
# (Optionally) Engage the Altitude Hold mode by pressing the 'makeshift' altitude click spot next to the the altitude indicator light (use Ctrl-c to spot it).&lt;br /&gt;
&lt;br /&gt;
==== Trim Functionality ====&lt;br /&gt;
The autopilot is '''not connected''' to the aircraft's elevator trim, but can generate commands to the pilot to trim the aircraft up or down in order to relieve load from the pitch servos and improve aerodynamics. To use this functionality, switch on the '''Trim Switch''' next to the Autopilot Master Switch and engage the Altitude Hold mode. When the autopilot detects an out-of-trim condition, the '''TRIM UP''' or '''TRIM DN''' indicator lights will illuminate. Trim the aircraft to the commanded direction using the elevator trim wheel until the indicator light extinguishes.&lt;br /&gt;
&lt;br /&gt;
== External Links ==&lt;br /&gt;
* [https://www.vliegclubseppe.nl/bestanden/2016-poh-robins.pdf Pilot's Operating Handbook Supplement] (for Continental CD-135 engine)&lt;br /&gt;
* [https://mfgo.ch/wp-content/uploads/HB-KLM_AFM.pdf DR400-140B Pilot's Operating Handbook] ''[broken link as of 08/2024]''&lt;br /&gt;
* [http://www.tmg-service.de/doc-download/manuals/OM-02-02_4-6_EASA_Version.pdf Engine Operating Manual] (CD-135 and CD-155)&lt;br /&gt;
* [https://www.easa.europa.eu/sites/default/files/dfu/TCDS_P094_issue03_20150319_1.0.pdf Propeller Type-Certificate Data Sheet]&lt;br /&gt;
* [http://www.tmg-service.de/doc-download/manuals/AMM-60-02_1-5s.pdf Airplane Maintenance Manual Supplement] (for Continental CD-135 engine)&lt;br /&gt;
* [https://genesys-aerosystems.com/wp-content/uploads/2023/11/System-Twenty_Thirty_-ThirtyALT.pdf S-TEC Thirty Autopilot Manual]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:DR400-Ecoflyer_Autopilot_Control_Elements.jpg&amp;diff=140212</id>
		<title>File:DR400-Ecoflyer Autopilot Control Elements.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:DR400-Ecoflyer_Autopilot_Control_Elements.jpg&amp;diff=140212"/>
		<updated>2024-08-06T11:06:00Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Uploaded own work with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=This image provides an overview of the control elements available for the S-TEC Thirty autopilot installed in the DR400-135cdi Ecoflyer}}&lt;br /&gt;
|date=2024-08-06&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:D-ECHO|D-ECHO]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Robin DR400 cockpit detail screenshots]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Robin_DR400_Ecoflyer/info&amp;diff=140199</id>
		<title>Robin DR400 Ecoflyer/info</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Robin_DR400_Ecoflyer/info&amp;diff=140199"/>
		<updated>2024-08-05T12:52:10Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: common manufacturer name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{infobox aircraft&lt;br /&gt;
| name           = Robin DR400-135cdi Ecoflyer&lt;br /&gt;
| hangar         = fgaddon&lt;br /&gt;
| aircraft       = DR400-Ecoflyer&lt;br /&gt;
| image          = Robin DR400 Ecoflyer Exterior.jpg&lt;br /&gt;
| type           = Civil utility aircraft/Civil trainer aircraft&lt;br /&gt;
| config         = Low wing aircraft&lt;br /&gt;
| propulsion     = Piston aircraft/Single-engine aircraft&lt;br /&gt;
| manufacturer   = robin&lt;br /&gt;
| authors        = Bea Wolf (D-ECHO)/PAF Team/Guillaume CHAUVAT/Daniel DUBREUIL/Laurent HAYVEL/Christian THIRIOT/Emmanuel BARANGER&lt;br /&gt;
| fdm            = JSBSim&lt;br /&gt;
| fgname         = dr400-135cdi&lt;br /&gt;
| status-fdm     = 3&lt;br /&gt;
| status-systems = 4&lt;br /&gt;
| status-cockpit = 3&lt;br /&gt;
| status-model   = 3&lt;br /&gt;
| navbar         = 1&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This is the aircraft infobox subpage of the [[Robin DR400 Ecoflyer]].&lt;br /&gt;
[[Category:Aircraft infobox documentation]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Robin_DR400/info&amp;diff=140198</id>
		<title>Robin DR400/info</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Robin_DR400/info&amp;diff=140198"/>
		<updated>2024-08-05T12:51:50Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: common manufacturer name (2)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{infobox aircraft&lt;br /&gt;
| name           = Robin DR400&lt;br /&gt;
| hangar         = fgaddon&lt;br /&gt;
| aircraft       = DR400&lt;br /&gt;
| image          = dr400.jpg&lt;br /&gt;
| type           = Sport aircraft/Civil utility aircraft/Glider tug&lt;br /&gt;
| config         = Low wing aircraft&lt;br /&gt;
| propulsion     = Piston aircraft/Single-engine aircraft&lt;br /&gt;
| manufacturer   = robin&lt;br /&gt;
| authors        = Emmanuel Baranger (3D, FDM, System)/Laurent Wromman (FDM)/Laurent Hayvel (texture)/F-JJTH (Systems)&lt;br /&gt;
| fdm            = YASim&lt;br /&gt;
| fgname         = dr400-120/dr400-180&lt;br /&gt;
| status-fdm     = 3&lt;br /&gt;
| status-systems = 4&lt;br /&gt;
| status-cockpit = 4&lt;br /&gt;
| status-model   = 4&lt;br /&gt;
| devel-hangar   = helijah&lt;br /&gt;
| liverydbid     = 29&lt;br /&gt;
| navbar         = 1&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This is the aircraft infobox subpage of the [[Robin DR400]].&lt;br /&gt;
[[Category:Aircraft infobox documentation]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Robin_DR400_Dauphin/info&amp;diff=140197</id>
		<title>Robin DR400 Dauphin/info</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Robin_DR400_Dauphin/info&amp;diff=140197"/>
		<updated>2024-08-05T12:51:34Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: common manufacturer name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{infobox aircraft&lt;br /&gt;
| name           = Robin DR400 Dauphin&lt;br /&gt;
| hangar         = fgaddon&lt;br /&gt;
| aircraft       = DR400-dauphin&lt;br /&gt;
| image          = DR400-dauphin.jpg&lt;br /&gt;
| image2         = DR400 Dauphin Rembrandt 02.jpg&lt;br /&gt;
| alt2           = The Robin DR400 Dauphin's cockpit lighting.&lt;br /&gt;
| type           = Sport aircraft/Civil utility aircraft/Glider tug&lt;br /&gt;
| config         = Low wing aircraft&lt;br /&gt;
| propulsion     = Propeller aircraft/Single-engine aircraft&lt;br /&gt;
| manufacturer   = robin&lt;br /&gt;
| authors        = Bertrand AUGRAS (3D)/Daniel DUBREUIL (FDM)/Clement de l'Hamaide (3D, Systems, Adaptation)/PAF team&lt;br /&gt;
| fdm            = JSBSIM&lt;br /&gt;
| fgname         = dr400-dauphin&lt;br /&gt;
| status-fdm     = 4&lt;br /&gt;
| status-systems = 4&lt;br /&gt;
| status-cockpit = 5&lt;br /&gt;
| status-model   = 4&lt;br /&gt;
| devel-hangar   = paf&lt;br /&gt;
| ready          = checklist/tutorials/rembrandt&lt;br /&gt;
| navbar         = 1&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This is the aircraft infobox subpage of the [[Robin DR400 Dauphin]].&lt;br /&gt;
[[Category:Aircraft infobox documentation]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:Craft_manufacturer&amp;diff=140196</id>
		<title>Template:Craft manufacturer</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:Craft_manufacturer&amp;diff=140196"/>
		<updated>2024-08-05T12:51:10Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: add Robin Aircraft&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{#switch: {{lc: {{{1|}}}}}&lt;br /&gt;
&amp;lt;!-- Aircraft manufacturers --&amp;gt;&lt;br /&gt;
  | airbus                       = {{{pre|}}}[[:Category:Airbus                      |Airbus]]                       [[Category:Airbus]]&lt;br /&gt;
  | antonov                      = {{{pre|}}}[[:Category:Antonov                     |Antonov]]                      [[Category:Antonov]]&lt;br /&gt;
  | aérospatiale                 = {{{pre|}}}[[:Category:Aérospatiale                |Aérospatiale]]                 [[Category:Aérospatiale]]&lt;br /&gt;
  | beechcraft                   = {{{pre|}}}[[:Category:Beechcraft                  |Beechcraft]]                   [[Category:Beechcraft]]&lt;br /&gt;
  | bell                         = {{{pre|}}}[[:Category:Bell                        |Bell]]                         [[Category:Bell]]&lt;br /&gt;
  | boeing                       = {{{pre|}}}[[:Category:Boeing                      |Boeing]]                       [[Category:Boeing]]&lt;br /&gt;
  | bombardier aerospace         = {{{pre|}}}[[:Category:Bombardier Aerospace        |Bombardier Aerospace]]         [[Category:Bombardier Aerospace]]&lt;br /&gt;
  | british aerospace            = {{{pre|}}}[[:Category:British Aerospace           |British Aerospace]]            [[Category:British Aerospace]]&lt;br /&gt;
  | british aircraft corporation = {{{pre|}}}[[:Category:British Aircraft Corporation|British Aircraft Corporation]] [[Category:British Aircraft Corporation]]&lt;br /&gt;
  | britten-norman               = {{{pre|}}}[[:Category:Britten-Norman              |Britten-Norman]]               [[Category:Britten-Norman]]&lt;br /&gt;
  | cessna                       = {{{pre|}}}[[:Category:Cessna                      |Cessna]]                       [[Category:Cessna]]&lt;br /&gt;
  | convair                      = {{{pre|}}}[[:Category:Convair                     |Convair]]                      [[Category:Convair]]&lt;br /&gt;
  | dassault                     = {{{pre|}}}[[:Category:Dassault                    |Dassault]]                     [[Category:Dassault]]&lt;br /&gt;
  | de havilland                 = {{{pre|}}}[[:Category:de Havilland                |de Havilland]]                 [[Category:de Havilland]]&lt;br /&gt;
  | de havilland canada          = {{{pre|}}}[[:Category:de Havilland Canada         |de Havilland Canada]]          [[Category:de Havilland Canada]]&lt;br /&gt;
  | dornier                      = {{{pre|}}}[[:Category:Dornier                     |Dornier]]                      [[Category:Dornier]]&lt;br /&gt;
  | douglas                      = {{{pre|}}}[[:Category:Douglas                     |Douglas]]                      [[Category:Douglas]]&lt;br /&gt;
  | embraer                      = {{{pre|}}}[[:Category:Embraer                     |Embraer]]                      [[Category:Embraer]]&lt;br /&gt;
  | english electric             = {{{pre|}}}[[:Category:English Electric            |English Electric]]             [[Category:English Electric]]&lt;br /&gt;
  | eurocopter                   = {{{pre|}}}[[:Category:Eurocopter                  |Eurocopter]]                   [[Category:Eurocopter]]&lt;br /&gt;
  | extra                        = {{{pre|}}}[[:Category:Extra                       |Extra]]                        [[Category:Extra]]&lt;br /&gt;
  | focke-wulf                   = {{{pre|}}}[[:Category:Focke-Wulf                  |Focke-Wulf]]                   [[Category:Focke-Wulf]]&lt;br /&gt;
  | fokker                       = {{{pre|}}}[[:Category:Fokker                      |Fokker]]                       [[Category:Fokker]]&lt;br /&gt;
  | glaser-dirks                 = {{{pre|}}}[[:Category:Glaser-Dirks                |Glaser-Dirks]]                 [[Category:Glaser-Dirks]]&lt;br /&gt;
  | grob                         = {{{pre|}}}[[:Category:Grob                        |Grob]]                         [[Category:Grob]]&lt;br /&gt;
  | grumman                      = {{{pre|}}}[[:Category:Grumman                     |Grumman]]                      [[Category:Grumman]]&lt;br /&gt;
  | hawker                       = {{{pre|}}}[[:Category:Hawker                      |Hawker]]                       [[Category:Hawker]]&lt;br /&gt;
  | hughes                       = {{{pre|}}}[[:Category:Hughes                      |Hughes]]                       [[Category:Hughes]]&lt;br /&gt;
  | kawasaki                     = {{{pre|}}}[[:Category:Kawasaki                    |Kawasaki]]                     [[Category:Kawasaki]]&lt;br /&gt;
  | let                          = {{{pre|}}}[[:Category:Let                         |Let]]                          [[Category:Let]]&lt;br /&gt;
  | lockheed                     = {{{pre|}}}[[:Category:Lockheed                    |Lockheed]]                     [[Category:Lockheed]]&lt;br /&gt;
  | mcdonnell douglas            = {{{pre|}}}[[:Category:McDonnell Douglas           |McDonnell Douglas]]            [[Category:McDonnell Douglas]]&lt;br /&gt;
  | mcdonnell douglas corporation = {{{pre|}}}[[:Category:McDonnell Douglas Corporation |McDonnell Douglas Corporation]]            [[Category:McDonnell Douglas Corporation]]&lt;br /&gt;
  | messerschmitt                = {{{pre|}}}[[:Category:Messerschmitt AG            |Messerschmitt AG]]             [[Category:Messerschmitt AG]]&lt;br /&gt;
  | messerschmitt-bölkow-blohm   = {{{pre|}}}[[:Category:Messerschmitt-Bölkow-Blohm  |Messerschmitt-Bölkow-Blohm]]   [[Category:Messerschmitt-Bölkow-Blohm]]&lt;br /&gt;
  | mikoyan and gurevich         = {{{pre|}}}[[:Category:Mikoyan and Gurevich        |Mikoyan and Gurevich]]         [[Category:Mikoyan and Gurevich]]&lt;br /&gt;
  | mitsubishi                   = {{{pre|}}}[[:Category:Mitsubishi                  |Mitsubishi]]                   [[Category:Mitsubishi]]&lt;br /&gt;
  | north american aviation      = {{{pre|}}}[[:Category:North American Aviation     |North American Aviation]]      [[Category:North American Aviation]]&lt;br /&gt;
  | northrop                     = {{{pre|}}}[[:Category:Northrop                    |Northrop]]                     [[Category:Northrop]]&lt;br /&gt;
  | pilatus aircraft             = {{{pre|}}}[[:Category:Pilatus aircraft            |Pilatus aircraft]]             [[Category:Pilatus aircraft]]&lt;br /&gt;
  | piper                        = {{{pre|}}}[[:Category:Piper                       |Piper]]                        [[Category:Piper]]&lt;br /&gt;
  | pipistrel                    = {{{pre|}}}[[:Category:Pipistrel                   |Pipistrel]]                    [[Category:Pipistrel]]&lt;br /&gt;
  | pzl milec                    = {{{pre|}}}[[:Category:PZL Mielec                  |PZL Mielec]]                   [[Category:PZL Mielec]]&lt;br /&gt;
  | robin                        = {{{pre|}}}[[:Category:Robin Aircraft              |Robin Aircraft]]               [[Category:Robin Aircraft]]&lt;br /&gt;
  | robinson                     = {{{pre|}}}[[:Category:Robinson                    |Robinson]]                     [[Category:Robinson]]&lt;br /&gt;
  | saab                         = {{{pre|}}}[[:Category:Saab                        |Saab]]                         [[Category:Saab]]&lt;br /&gt;
  | sikorsky                     = {{{pre|}}}[[:Category:Sikorsky                    |Sikorsky]]                     [[Category:Sikorsky]]&lt;br /&gt;
  | schleicher                   = {{{pre|}}}[[:Category:Schleicher                  |Schleicher]]                   [[Category:Schleicher]]&lt;br /&gt;
  | sopwith aviation company     = {{{pre|}}}[[:Category:Sopwith Aviation Company    |Sopwith Aviation Company]]     [[Category:Sopwith Aviation Company]]&lt;br /&gt;
  | sud aviation                 = {{{pre|}}}[[:Category:Sud Aviation                |Sud Aviation]]                 [[Category:Sud Aviation]]&lt;br /&gt;
  | sukhoi                       = {{{pre|}}}[[:Category:Sukhoi                      |Sukhoi]]                       [[Category:Sukhoi]]&lt;br /&gt;
  | supermarine                  = {{{pre|}}}[[:Category:Supermarine                 |Supermarine]]                  [[Category:Supermarine]]&lt;br /&gt;
  | tupolev                      = {{{pre|}}}[[:Category:Tupolev                     |Tupolev]]                      [[Category:Tupolev]]&lt;br /&gt;
  | yakovlev                     = {{{pre|}}}[[:Category:Yakovlev                    |Yakovlev]]                     [[Category:Yakovlev]]&lt;br /&gt;
&amp;lt;!-- Spacecraft manufacturers --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Vehicle manufacturers --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Seacraft manufacturers --&amp;gt;&lt;br /&gt;
&amp;lt;!-- Unknown manufacturers --&amp;gt;&lt;br /&gt;
  | #default                     = {{#if: {{{1|}}}|{{{pre|}}}{{{1|}}}}}&lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Informative template|1=&lt;br /&gt;
== Goal ==&lt;br /&gt;
Convert a craft's manufacturer into a link to a category page and append the category to the calling page. &lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
 {{obr}}'''craft manufacturer'''&lt;br /&gt;
 {{!}} ''manufacturer''&lt;br /&gt;
 {{!}} ''pre'' =&lt;br /&gt;
 {{cbr}}&lt;br /&gt;
&lt;br /&gt;
; manufacturer:  Configuration of the aircraft, spacecraft, vehicle, or seacraft.  Although this can be any text, special parameter values, independent of capitalisation, will be associated with a category.  This will result in the creation of an internal wiki link to the category as well as appending the category to the article.  See the [[#Craft manufacturer|Craft manufacturer]] section below for a table of values.&lt;br /&gt;
&lt;br /&gt;
; pre:  Text to prefix prior to the link text.  This is useful for creating lists.&lt;br /&gt;
&lt;br /&gt;
{{craft manufacturer/doc}}&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
=== Stealth aircraft ===&lt;br /&gt;
 {{obr}}craft manufacturer{{!}}Antonov{{cbr}}&lt;br /&gt;
{{craft manufacturer|Antonov}}&lt;br /&gt;
&lt;br /&gt;
== Related templates ==&lt;br /&gt;
&lt;br /&gt;
The {{tl|craft manufacturers}} navigation template should show all of the above craft manufacturers:&lt;br /&gt;
&lt;br /&gt;
{{craft manufacturers}}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Robin_DR400_Dauphin&amp;diff=140195</id>
		<title>Robin DR400 Dauphin</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Robin_DR400_Dauphin&amp;diff=140195"/>
		<updated>2024-08-05T12:48:32Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Add link to DR400 Ecoflyer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:{{PAGENAME}}/info}}&lt;br /&gt;
{{for|the [[:Category:Helijah hangar|Helijah hangar]] DR400 in [[FGAddon]]|Robin DR400}}{{for|1=the [[User:D-ECHO|D-ECHO]] DR400-135cdi Ecoflyer in [[FGAddon]]|2=Robin DR400 Ecoflyer}}[[File:Rembrandtready.png]]&lt;br /&gt;
&lt;br /&gt;
= Aircraft help =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Specifications ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== General characteristics ====&lt;br /&gt;
* Capacity: 4&lt;br /&gt;
* Length: 6.96 m (22 ft 10 in)&lt;br /&gt;
* Wingspan: 8.72 m (28 ft 7¼ in)&lt;br /&gt;
* Height: 2.23 m (7 ft 3¾ in)&lt;br /&gt;
* Wing area: 13.60 m2 (146.4 ft2)&lt;br /&gt;
* Empty weight: 620 kg (1323 lb)&lt;br /&gt;
* Gross weight: 1100 kg (2425 lb)&lt;br /&gt;
* Engine: 1 × Lycoming O-360-A flat-four pistons engine, 134 kW (180 hp)&lt;br /&gt;
&lt;br /&gt;
==== Performances ====&lt;br /&gt;
* Stall speed: 87 km/h&lt;br /&gt;
* Cruise speed: 215 km/h&lt;br /&gt;
* Maximum speed: 265 km/h&lt;br /&gt;
* Range: 1200 km (745 miles)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Procedures ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Startup ===&lt;br /&gt;
&lt;br /&gt;
==== Autostart ====&lt;br /&gt;
If you don't want to execute the real startup procedure you can use the &amp;quot;Autostart&amp;quot; feature available from the Menubar &amp;gt; Robin DR400 Dauphin or [[Robin DR400 Dauphin #Options menu|Options menu]]&lt;br /&gt;
&lt;br /&gt;
Pressing this feature you are toggling Startup/Shutdown engine. You just need to press &amp;quot;s&amp;quot; key (starter) in order to startup the engine.&lt;br /&gt;
==== Manual ====&lt;br /&gt;
# Electric master     : ON&lt;br /&gt;
# Avionics master     : ON&lt;br /&gt;
# Carburator heat     : COLD (pushed)&lt;br /&gt;
# Fuel selector valve : CENTER&lt;br /&gt;
# Throttle            : 10%&lt;br /&gt;
# Mixture             : FULL RICH&lt;br /&gt;
# Magnetos            : BOTH&lt;br /&gt;
# Electric pump       : ON&lt;br /&gt;
# Starter             : PRESS until engine is started&lt;br /&gt;
# Electric pump       : OFF&lt;br /&gt;
# Alternator          : ON&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Takeoff ===&lt;br /&gt;
# Brakes              : SET (shift+b)&lt;br /&gt;
# Mixture             : FULL RICH&lt;br /&gt;
# Fuel selector valve : RECHECK SELECTION&lt;br /&gt;
# Elevator trim       : SET for takeoff&lt;br /&gt;
# Radios and Avionics : SET&lt;br /&gt;
# Flaps               : SET for takeoff (15°)&lt;br /&gt;
# Brakes              : RELEASE&lt;br /&gt;
# Throttle            : FULL OPEN&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Climb ===&lt;br /&gt;
* Airspeed            : 115 - 125 KM/H&lt;br /&gt;
* Throttle            : FULL OPEN&lt;br /&gt;
* Mixture             : RICH&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Cruise ===&lt;br /&gt;
* Power               : 2100 - 2700 RPM&lt;br /&gt;
* Flaps               : UP&lt;br /&gt;
* Elevator trim       : ADJUST as required&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Landing ===&lt;br /&gt;
# Brakes              : RELEASE&lt;br /&gt;
# Flaps               : 1 flaps below 170 KM/H&lt;br /&gt;
# Airspeed            : 150 KM/H&lt;br /&gt;
# Flaps               : 2 flaps below 130 KM/H&lt;br /&gt;
# Airpseed            : 110 KM/H&lt;br /&gt;
# After landing       : Flaps UP&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Shutdown ===&lt;br /&gt;
# Brakes               : SET&lt;br /&gt;
# Avionics, electrical : OFF&lt;br /&gt;
# Alternator           : OFF&lt;br /&gt;
# Throttle             : PULLED FULL OUT&lt;br /&gt;
# Mixture              : PULLED FULL OUT&lt;br /&gt;
# Magnetos             : OFF&lt;br /&gt;
# Electric master      : OFF&lt;br /&gt;
# Fuel selector valve  : CLOSED&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Keyboard shortcuts ==&lt;br /&gt;
{| class=&amp;quot;keytable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Key&lt;br /&gt;
! Function&lt;br /&gt;
|-&lt;br /&gt;
| {{key press|d}}&lt;br /&gt;
| Open/close the canopy&lt;br /&gt;
|-&lt;br /&gt;
| {{key press|s}}&lt;br /&gt;
| Starter&lt;br /&gt;
|-&lt;br /&gt;
| {{key press|{{=}}}}&lt;br /&gt;
| Open/close options menu&lt;br /&gt;
|-&lt;br /&gt;
| {{key press|Ctrl|c}}&lt;br /&gt;
| Toggle panel hotspots and labels&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Options menu ==&lt;br /&gt;
[[File:DR400 Dauphin Menu dialogs.jpg|thumb|Options menu]]&lt;br /&gt;
Options menu is available in the menubar &amp;gt; Robin DR400 Dauphin &amp;gt; Options or by pressing &amp;quot;=&amp;quot; key&lt;br /&gt;
&lt;br /&gt;
* Display&lt;br /&gt;
** Show Yokes : show/hide yokes&lt;br /&gt;
** Show Pilot in cockpit view : show/hide the pilot in cockpit view&lt;br /&gt;
* Realism : look at [[Robin DR400 Dauphin#Realism|realism]] section&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
These settings are stored between sessions.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Features =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Tutorials ===&lt;br /&gt;
[[File:DR400 Dauphin Tuto.jpg|thumb|Tutorials]]&lt;br /&gt;
A list of tutorials for training purpose are available in the menu  Help &amp;gt; Aircraft tutorials&lt;br /&gt;
&lt;br /&gt;
They are also available in the [[Robin DR400 Dauphin #Options menu|Options menu]].&lt;br /&gt;
&lt;br /&gt;
Once the tutorial dialog is opened, you can select a tutorial from the right list then press &amp;quot;Start&amp;quot;, the tutorial is loading.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
=== Checklists ===&lt;br /&gt;
[[File:DR400 Dauphin Checklist.jpg|thumb|Checklists]]&lt;br /&gt;
A list of checklists are available in the menu Help &amp;gt; Aircraft checklists&lt;br /&gt;
&lt;br /&gt;
They are also available in the [[Robin DR400 Dauphin #Options menu|Options menu]].&lt;br /&gt;
&lt;br /&gt;
Once the checklist dialog is opened, you can select a checklist from the top droplist.&lt;br /&gt;
&lt;br /&gt;
Each item can be executed by pressing &amp;quot;&amp;gt;&amp;quot; and a focus marker can be displayed in the cockpit by pressing &amp;quot;?&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Slider/knob ===&lt;br /&gt;
Throttle and mixture use the slider animation, it means you have several possibility to handle these parts:&lt;br /&gt;
* Left/Middle mouse click = Increase/Decrease&lt;br /&gt;
* Dragging up/down = Increase/Decrease&lt;br /&gt;
* Mousewheel forward/backward = Increase/Decrease&lt;br /&gt;
&lt;br /&gt;
All knobs use the knob animation, it means you can handle these parts like:&lt;br /&gt;
* Left/Middle mouse click = Increase/Decrease&lt;br /&gt;
* Dragging left/right = Increase/Decrease&lt;br /&gt;
* Mousewheel forward/backward = Increase/Decrease&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
=== Text OSG ===&lt;br /&gt;
[[File:DR400 Dauphin TextOSG.jpg|thumb|TextOSG]]&lt;br /&gt;
[[File:TextOSG 2.jpg|thumb|TextOSG]]&lt;br /&gt;
The panel is plenty of helpful text available with Ctrl+c&lt;br /&gt;
&lt;br /&gt;
That way you know the name and use of each part on the panel.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Tooltips ===&lt;br /&gt;
Tooltips are massively used for state information in the cockpit. Be sure the checkbox &amp;quot;Tooltips&amp;quot; is checked in Debug &amp;gt; User Preferences Interface&lt;br /&gt;
&lt;br /&gt;
That way you can easily know the state of:&lt;br /&gt;
* Throttle (in percent %)&lt;br /&gt;
* Mixture (in percent %)&lt;br /&gt;
* Altimeter (in QNH)&lt;br /&gt;
* Switches (ON/OFF)&lt;br /&gt;
* Lights (in percent %)&lt;br /&gt;
* Flaps (in degrees)&lt;br /&gt;
* Avionics&lt;br /&gt;
* NAV/VOR instruments&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:DR400 Dauphin Tooltip altimeter.jpg&lt;br /&gt;
File:DR400 Dauphin Tooltip brake.jpg&lt;br /&gt;
File:DR400 Dauphin Tooltip elt.jpg&lt;br /&gt;
File:DR400 Dauphin Tooltip flaps.jpg&lt;br /&gt;
File:DR400 Dauphin Tooltip fuel selector.jpg&lt;br /&gt;
File:DR400 Dauphin Tooltip magneto.jpg&lt;br /&gt;
File:DR400 Dauphin Tooltip master.jpg&lt;br /&gt;
File:DR400 Dauphin Tooltip panel light.jpg&lt;br /&gt;
File:DR400 Dauphin Tooltip throttle.jpg&lt;br /&gt;
File:DR400 Dauphin Tooltip vor.jpg&lt;br /&gt;
File:DR400 Dauphin Tooltip warning.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
=== Rembrandt ===&lt;br /&gt;
The DR400 Dauphin is fully Rembrandt compliant. &lt;br /&gt;
&lt;br /&gt;
Taxi light, Landing light, Nav lights, Beacon light, Panel lights.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;gallery&amp;gt;&lt;br /&gt;
File:DR400 Dauphin Rembrandt 01.jpg&lt;br /&gt;
File:DR400 Dauphin Rembrandt 02.jpg&lt;br /&gt;
File:DR400 Dauphin Rembrandt 03.jpg&lt;br /&gt;
File:DR400 Dauphin Rembrandt 04.jpg&lt;br /&gt;
File:DR400 Dauphin Rembrandt 05.jpg&lt;br /&gt;
File:DR400 Dauphin Rembrandt 06.jpg&lt;br /&gt;
File:DR400 Dauphin Rembrandt 07.jpg&lt;br /&gt;
File:DR400 Dauphin Rembrandt 08.jpg&lt;br /&gt;
File:DR400 Dauphin Rembrandt 09.jpg&lt;br /&gt;
File:DR400 Dauphin Rembrandt 10.jpg&lt;br /&gt;
File:DR400 Dauphin Rembrandt 11.jpg&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
=== Liveries ===&lt;br /&gt;
You can change the livery by selecting one in the [[Robin DR400 Dauphin #Options menu|Options menu]] &amp;gt; Liveries&lt;br /&gt;
&lt;br /&gt;
Changing your aircraft livery is shown to other simmers.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Shaders ===&lt;br /&gt;
A reflective shader is applied on exterior model. To make it appear be sur the &amp;quot;Model&amp;quot; slider is at least at 4/5 in the Rendering dialog.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
=== Realism ===&lt;br /&gt;
==== Gears ====&lt;br /&gt;
Be carefull at landing because you could break the gears if you hit the ground too hard!&lt;br /&gt;
==== Water ====&lt;br /&gt;
It's a JSBSim aircraft but you can't land on water, if you do so your aircraft will be considered as crashed, but you just need to press &amp;quot;p&amp;quot; as needed when you are in the water then you can continue your flight.&lt;br /&gt;
==== Negative G ====&lt;br /&gt;
Don't try to get negative G too long! The DR400 Dauphin is not made for acrobatics. If you are flying upside down or even flying with negative G for too long, your engine will shutdown, just like in real life!&lt;br /&gt;
==== Over G ====&lt;br /&gt;
Be careful at manipulating the yoke, you could break the wings if you are too hard at high speed&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= HowTo use =&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
=== Electrical system ===&lt;br /&gt;
The Robin DR400 Dauphin has a realistic electric system. Each electric part (instruments, lights, pump...) consumes electrical power. The more electrical parts are ON, the more the electric system is sought.&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
==== Electric master ====&lt;br /&gt;
[[File:DR400 Dauphin Magneto master.jpg|thumb|Electric master and alternator]]&lt;br /&gt;
Electrical system is supplied by this switch. While this switch is OFF, nothing is working but the GPS and chronometer.&lt;br /&gt;
&lt;br /&gt;
The first thing you would do once you are seating in this aircraft is to trigger this switch ON.&lt;br /&gt;
==== Alternator ====&lt;br /&gt;
Until alternator switch is ON AND engine is OFF, the battery is the only electric provider.&lt;br /&gt;
&lt;br /&gt;
Be carefull to switch it ON as soon as the engine is running to avoid electrical failure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
==== Avionics master ====&lt;br /&gt;
[[File:DR400 Dauphin Lighting.jpg|thumb|Lights switches and Avionics master]]&lt;br /&gt;
This switch is supplying electrical power to:&lt;br /&gt;
* Artificial horizon&lt;br /&gt;
* Radio&lt;br /&gt;
* Transponder&lt;br /&gt;
* NAV/VOR&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Lights ===&lt;br /&gt;
&lt;br /&gt;
==== Interior lights ====&lt;br /&gt;
Three knobs are available to light up three parts of the panel (Left, Right, Center)&lt;br /&gt;
&lt;br /&gt;
Interior lights are only working once the [[Robin DR400 Dauphin #Electric master|electric master]] is ON.&lt;br /&gt;
==== Exterior lights ====&lt;br /&gt;
Available exterior lights are:&lt;br /&gt;
* Landing light - a powerful light for long distance lighting&lt;br /&gt;
* Taxi light - for short distance lighting&lt;br /&gt;
* Nav lights - located at the tips of the wings&lt;br /&gt;
* Beacon light - located on the top of the fuselage&lt;br /&gt;
&lt;br /&gt;
Exterior lights are only working once the [[Robin DR400 Dauphin #Electric master|electric master]] is ON.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
=== Chronometer ===&lt;br /&gt;
[[File:DR400 Dauphin Chrono.jpg|thumb|Chronometer]]&lt;br /&gt;
The chronometer is independant of electrical system: it has its own integrated battery.&lt;br /&gt;
&lt;br /&gt;
* On/Off: Switch ON/OFF the chronometer&lt;br /&gt;
* Reset: Set the chrono to 00:00:00&lt;br /&gt;
* Start: Start/pause the counter, &lt;br /&gt;
* Stop: Stop the counter&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
=== ELT ===&lt;br /&gt;
[[File:DR400 Dauphin ELT.jpg|thumb|ELT]]&lt;br /&gt;
&lt;br /&gt;
ON: if, for some reason, you are feeling in emergency situation but not crashed you can set ON. A message with your callsign and your position is sent over the network.&lt;br /&gt;
&lt;br /&gt;
ARMED: ready to operate in case of crash. A message with your callsign and your position is sent over network in case of a crash.&lt;br /&gt;
&lt;br /&gt;
TEST: press it and make sure you get a testing message on your screen to be sure the ELT is working and ready to operate in case of crash.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
=== Altimeter ===&lt;br /&gt;
[[File:DR400 Dauphin Tooltip altimeter.jpg|thumb|Altimeter]]&lt;br /&gt;
Altimeter is a QNH based pressure. You can change the QNH by handling the knob on the bottom-right.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
=== GPS ===&lt;br /&gt;
[[File:DR400 Dauphin Radio stack.jpg|thumb|Garmin196, KX165 and KT76A]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Radio ===&lt;br /&gt;
A [[Kx165|Bendix King KX165]] is installed, it has a 25kHz spacing and works well with [[FGCom]].&lt;br /&gt;
&lt;br /&gt;
It's only working once [[Robin DR400 Dauphin #Electric master|electric master]] AND [[Robin DR400 Dauphin #Avionics master|avionics master]] are ON&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Transponder ===&lt;br /&gt;
A [[Bendix King KT 76A]] is installed, it's a transponder working over network.&lt;br /&gt;
&lt;br /&gt;
It is only working once [[Robin DR400 Dauphin #Electric master|electric master]] AND [[Robin DR400 Dauphin #Avionics master|avionics master]] are ON&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
=== Electric pump ===&lt;br /&gt;
[[File:DR400 Dauphin Fuel pump.jpg|thumb|Electric pump]]&lt;br /&gt;
&lt;br /&gt;
Electric (fuel) pump ON is required for engine startup. Once the engine is running you can set it OFF.&lt;br /&gt;
&lt;br /&gt;
Electric pump is usually ON during critical flight procedures (takeoff and landing).&lt;br /&gt;
&lt;br /&gt;
The gauge located just above the switch shows the fuel pressure.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Fuel tank selector ===&lt;br /&gt;
[[File:DR400 Dauphin Fuel selector.jpg|thumb|Fuel tank selector and starter]]&lt;br /&gt;
The Robin DR400 Dauphin has 3 tanks, one inside each wing plus one centered in fuselage.&lt;br /&gt;
&lt;br /&gt;
You can select the tank with the fuel tank selector located between the pilot and copilot.&lt;br /&gt;
&lt;br /&gt;
Until the selector is on CLOSED position, the starter switch is unaccessible for security reason (we don't want start the engine until we selected a fuel tank)&lt;br /&gt;
&lt;br /&gt;
Press Ctrl+c in order to see the hotspot. You can use mousewheel or left click to set the selector.&lt;br /&gt;
&lt;br /&gt;
=== Starter ===&lt;br /&gt;
The Starter button is located behind the fuel tank selector tip.&lt;br /&gt;
&lt;br /&gt;
You can only press it once the tip of the [[Robin DR400 Dauphin #Fuel tank selector|fuel tank selector]] has moved from CLOSED position. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
=== Elevator trim ===&lt;br /&gt;
[[File:DR400 Dauphin Middle.jpg|thumb|Elevator trim and flaps]]&lt;br /&gt;
The trim wheel is located ahead of the fuel tank selector. The wheel is working like a knob depending on the mouse action.&lt;br /&gt;
&lt;br /&gt;
A trim indicator is located to the left of the mixture, that way you know the state of the elevator trim.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Flaps ===&lt;br /&gt;
Flaps handle is located to the right of the pilot, just between pilot and copilot seats.&lt;br /&gt;
&lt;br /&gt;
Pressing on the front of the handle makes flaps UP while pressing on the back makes flaps DOWN.&lt;br /&gt;
&lt;br /&gt;
A warning light is lit up green until flaps are not totally UP.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
=== Brakes ===&lt;br /&gt;
[[File:DR400 Dauphin Brake mixture.jpg|thumb|Brakes and mixture]]&lt;br /&gt;
You can handle left and right brake independently. It can be helpful for taxiing in addition of the rudder action.&lt;br /&gt;
&lt;br /&gt;
Pressing &amp;quot;b&amp;quot; acts on both brakes.&lt;br /&gt;
&lt;br /&gt;
Parking brake switch is located on the top of the mixture parts, by pressing it will toggle the parking brake.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Throttle/Mixture ===&lt;br /&gt;
* Left/Middle mouse click = Increase/Decrease&lt;br /&gt;
* Dragging up/down = Increase/Decrease&lt;br /&gt;
* Mousewheel forward/backward = Increase/Decrease&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br style=&amp;quot;clear:both;&amp;quot;/&amp;gt;&lt;br /&gt;
=== Warnings ===&lt;br /&gt;
[[File:DR400 Dauphin Warning.jpg|thumb|Warnings]]&lt;br /&gt;
The warnings are displaying the state of:&lt;br /&gt;
* Starter&lt;br /&gt;
* Flaps&lt;br /&gt;
* Alternator&lt;br /&gt;
* Fuel pressure&lt;br /&gt;
* Oil pressure&lt;br /&gt;
&lt;br /&gt;
The switch to the left of the warnings light has two functions:&lt;br /&gt;
* Bottom hotpsot: make sure there is no broken warning lights - Every warning light should lit up, that way you are sure none are out of service.&lt;br /&gt;
* Switch: toggles day/night mode - At night mode, warning lights intensity is reduced.&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Robin_DR400&amp;diff=140194</id>
		<title>Robin DR400</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Robin_DR400&amp;diff=140194"/>
		<updated>2024-08-05T12:47:59Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Add link to DR400 Ecoflyer&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:{{PAGENAME}}/info}}&lt;br /&gt;
{{for|the [[:Category:PAF hangar|PAF hangar]] DR400 in [[FGAddon]]|Robin DR400 Dauphin}}&lt;br /&gt;
{{for|the [[User:D-ECHO|D-ECHO]] DR400-135cdi Ecoflyer in [[FGAddon]]|Robin DR400 Ecoflyer}}&lt;br /&gt;
The '''Robin DR400''' is a wooden sport monoplane, conceived by Pierre Robin and Jean Délémontez. The Robin DR400 first flew in 1972 and was still in production in 2006. It has a tricycle undercarriage, and can carry four people. The DR400 aircraft have the 'cranked wing' configuration, in which the dihedral angle of the outer wing is much greater than the inboard, a configuration which they share with Jodel [[aircraft]]. This model is considered easy to fly by many and quiet during flight due to its wooden frame. Like all wooden aircraft, the DR400 should be hangared to prevent weather damage to the wood components.&lt;br /&gt;
&lt;br /&gt;
== Aircraft help ==&lt;br /&gt;
{| class=&amp;quot;keytable&amp;quot;&lt;br /&gt;
!Key&lt;br /&gt;
!Function&lt;br /&gt;
|-&lt;br /&gt;
| {{key press|d}}&lt;br /&gt;
| Open/close canopy&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Immatriculation ===&lt;br /&gt;
The user is able to choose a desired callsign which will be shown on the tail of the aircraft and in the cockpit.&lt;br /&gt;
To change it, go to Main menu &amp;gt; Robin DR 400 &amp;gt; Immatriculation and fill in a new callsign.&lt;br /&gt;
&lt;br /&gt;
== External link ==&lt;br /&gt;
* [http://austingwatson.com/aviation/bourges-fr/POH-SIM-Robin-DR400-180.pdf Checklists] (pdf)&lt;br /&gt;
&lt;br /&gt;
[[Category:Red Griffin ATC compatible aircraft]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Robin_DR400/info&amp;diff=140193</id>
		<title>Robin DR400/info</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Robin_DR400/info&amp;diff=140193"/>
		<updated>2024-08-05T12:46:27Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: common manufacturer name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{infobox aircraft&lt;br /&gt;
| name           = Robin DR400&lt;br /&gt;
| hangar         = fgaddon&lt;br /&gt;
| aircraft       = DR400&lt;br /&gt;
| image          = dr400.jpg&lt;br /&gt;
| type           = Sport aircraft/Civil utility aircraft/Glider tug&lt;br /&gt;
| config         = Low wing aircraft&lt;br /&gt;
| propulsion     = Piston aircraft/Single-engine aircraft&lt;br /&gt;
| manufacturer   = Robin Aircraft&lt;br /&gt;
| authors        = Emmanuel Baranger (3D, FDM, System)/Laurent Wromman (FDM)/Laurent Hayvel (texture)/F-JJTH (Systems)&lt;br /&gt;
| fdm            = YASim&lt;br /&gt;
| fgname         = dr400-120/dr400-180&lt;br /&gt;
| status-fdm     = 3&lt;br /&gt;
| status-systems = 4&lt;br /&gt;
| status-cockpit = 4&lt;br /&gt;
| status-model   = 4&lt;br /&gt;
| devel-hangar   = helijah&lt;br /&gt;
| liverydbid     = 29&lt;br /&gt;
| navbar         = 1&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This is the aircraft infobox subpage of the [[Robin DR400]].&lt;br /&gt;
[[Category:Aircraft infobox documentation]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Robin_DR400_Ecoflyer&amp;diff=140192</id>
		<title>Robin DR400 Ecoflyer</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Robin_DR400_Ecoflyer&amp;diff=140192"/>
		<updated>2024-08-05T12:33:45Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Write up a small article&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:{{PAGENAME}}/info}}&lt;br /&gt;
The '''Robin DR400-135cdi Ecoflyer''' is a single-engine four-seater aircraft built by the French company [[:Category:Robin Aircraft|Robin Aircraft]]. This variant of the DR400 family features a diesel engine built by Thielert/Continental and was one of the first general aviation aircraft to have a diesel engine instead of the conventional AVGAS engines. This means that the aircraft can fly using automotive-grade diesel fuel or JET-A1 fuel as typically used in commercial aviation.&lt;br /&gt;
&lt;br /&gt;
The FlightGear simulation of this aircraft was created using references, measurements and photos from a real DR400-135cdi aircraft, D-EAJZ.&lt;br /&gt;
&lt;br /&gt;
=== Autopilot ===&lt;br /&gt;
The aircraft includes a simulation of the S-TEC Thirty autopilot which is controlled using two switches, two buttons on the control stick (currently not modelled) and the turn coordinator.&lt;br /&gt;
&lt;br /&gt;
The autopilot is simulated to work in detail like the real thing described in the [https://genesys-aerosystems.com/wp-content/uploads/2023/11/System-Twenty_Thirty_-ThirtyALT.pdf manual available online].&lt;br /&gt;
&lt;br /&gt;
Tutorial: to follow&lt;br /&gt;
&lt;br /&gt;
=== External Links ===&lt;br /&gt;
&lt;br /&gt;
* [https://www.vliegclubseppe.nl/bestanden/2016-poh-robins.pdf Pilot's Operating Handbook Supplement] (for Continental CD-135 engine)&lt;br /&gt;
* [https://mfgo.ch/wp-content/uploads/HB-KLM_AFM.pdf DR400-140B Pilot's Operating Handbook] ''[broken link as of 08/2024]''&lt;br /&gt;
* [http://www.tmg-service.de/doc-download/manuals/OM-02-02_4-6_EASA_Version.pdf Engine Operating Manual] (CD-135 and CD-155)&lt;br /&gt;
* [https://www.easa.europa.eu/sites/default/files/dfu/TCDS_P094_issue03_20150319_1.0.pdf Propeller Type-Certificate Data Sheet]&lt;br /&gt;
* [http://www.tmg-service.de/doc-download/manuals/AMM-60-02_1-5s.pdf Airplane Maintenance Manual Supplement] (for Continental CD-135 engine)&lt;br /&gt;
* [https://genesys-aerosystems.com/wp-content/uploads/2023/11/System-Twenty_Thirty_-ThirtyALT.pdf S-TEC Thirty Autopilot Manual]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Robin_DR400_Ecoflyer&amp;diff=140191</id>
		<title>Robin DR400 Ecoflyer</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Robin_DR400_Ecoflyer&amp;diff=140191"/>
		<updated>2024-08-05T12:19:54Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Create page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:{{PAGENAME}}/info}}&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Robin_DR400_Ecoflyer/info&amp;diff=140190</id>
		<title>Robin DR400 Ecoflyer/info</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Robin_DR400_Ecoflyer/info&amp;diff=140190"/>
		<updated>2024-08-05T12:19:07Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Create Infobox&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{infobox aircraft&lt;br /&gt;
| name           = Robin DR400-135cdi Ecoflyer&lt;br /&gt;
| hangar         = fgaddon&lt;br /&gt;
| aircraft       = DR400-Ecoflyer&lt;br /&gt;
| image          = Robin DR400 Ecoflyer Exterior.jpg&lt;br /&gt;
| type           = Civil utility aircraft/Civil trainer aircraft&lt;br /&gt;
| config         = Low wing aircraft&lt;br /&gt;
| propulsion     = Piston aircraft/Single-engine aircraft&lt;br /&gt;
| manufacturer   = Robin Aircraft&lt;br /&gt;
| authors        = Bea Wolf (D-ECHO)/PAF Team/Guillaume CHAUVAT/Daniel DUBREUIL/Laurent HAYVEL/Christian THIRIOT/Emmanuel BARANGER&lt;br /&gt;
| fdm            = JSBSim&lt;br /&gt;
| fgname         = dr400-135cdi&lt;br /&gt;
| status-fdm     = 3&lt;br /&gt;
| status-systems = 4&lt;br /&gt;
| status-cockpit = 3&lt;br /&gt;
| status-model   = 3&lt;br /&gt;
| navbar         = 1&lt;br /&gt;
}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This is the aircraft infobox subpage of the [[Robin DR400 Ecoflyer]].&lt;br /&gt;
[[Category:Aircraft infobox documentation]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Template:Craft_manufacturers&amp;diff=140189</id>
		<title>Template:Craft manufacturers</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Template:Craft_manufacturers&amp;diff=140189"/>
		<updated>2024-08-05T12:18:27Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: add Robin Aircraft&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Navbox&lt;br /&gt;
| name      = Craft manufacturers&lt;br /&gt;
| title     = {{LangSwitch&lt;br /&gt;
                | en = Craft manufacturers&lt;br /&gt;
              }}&lt;br /&gt;
| listclass = hlist&lt;br /&gt;
&lt;br /&gt;
| group1 = {{LangSwitch&lt;br /&gt;
             | en = Aircraft&lt;br /&gt;
           }}&lt;br /&gt;
| list1  =&lt;br /&gt;
* [[:Category:Airbus|Airbus]]&lt;br /&gt;
* [[:Category:Antonov|Antonov]]&lt;br /&gt;
* [[:Category:Aérospatiale|Aérospatiale]]&lt;br /&gt;
* [[:Category:Beechcraft|Beechcraft]]&lt;br /&gt;
* [[:Category:Bell|Bell]]&lt;br /&gt;
* [[:Category:Boeing|Boeing]]&lt;br /&gt;
* [[:Category:Bombardier Aerospace|Bombardier Aerospace]]&lt;br /&gt;
* [[:Category:British Aerospace|British Aerospace]]&lt;br /&gt;
* [[:Category:British Aircraft Corporation|British Aircraft Corporation]]&lt;br /&gt;
* [[:Category:Cessna|Cessna]]&lt;br /&gt;
* [[:Category:Dassault|Dassault]]&lt;br /&gt;
* [[:Category:De Havilland|De Havilland]]&lt;br /&gt;
* [[:Category:De Havilland Canada|De Havilland Canada]]&lt;br /&gt;
* [[:Category:Dornier|Dornier]]&lt;br /&gt;
* [[:Category:Douglas|Douglas]]&lt;br /&gt;
* [[:Category:Embraer|Embraer]]&lt;br /&gt;
* [[:Category:English Electric‎|English Electric‎]]&lt;br /&gt;
* [[:Category:Eurocopter|Eurocopter]]&lt;br /&gt;
* [[:Category:Extra|Extra]]&lt;br /&gt;
* [[:Category:Focke-Wulf|Focke-Wulf]]&lt;br /&gt;
* [[:Category:Fokker|Fokker]]&lt;br /&gt;
* [[:Category:Glaser-Dirks|Glaser-Dirks]]&lt;br /&gt;
* [[:Category:Grob|Grob]]&lt;br /&gt;
* [[:Category:Grumman|Grumman]]&lt;br /&gt;
* [[:Category:Hawker|Hawker]]&lt;br /&gt;
* [[:Category:Hughes|Hughes]]&lt;br /&gt;
* [[:Category:Kawasaki|Kawasaki]]&lt;br /&gt;
* [[:Category:Let|Let]]&lt;br /&gt;
* [[:Category:Lockheed|Lockheed]]&lt;br /&gt;
* [[:Category:McDonnell Douglas|McDonnell Douglas]]&lt;br /&gt;
* [[:Category:Messerschmitt AG|Messerschmitt AG]]&lt;br /&gt;
* [[:Category:Messerschmitt-Bölkow-Blohm|Messerschmitt-Bölkow-Blohm]]&lt;br /&gt;
* [[:Category:Mikoyan and Gurevich|Mikoyan and Gurevich]]&lt;br /&gt;
* [[:Category:Mitsubishi|Mitsubishi]]&lt;br /&gt;
* [[:Category:North American Aviation|North American Aviation]]&lt;br /&gt;
* [[:Category:Northrop|Northrop]]&lt;br /&gt;
* [[:Category:Pilatus aircraft|Pilatus aircraft]]&lt;br /&gt;
* [[:Category:Piper|Piper]]&lt;br /&gt;
* [[:Category:Pipistrel|Pipistrel]]&lt;br /&gt;
* [[:Category:PZL Mielec|PZL Mielec]]&lt;br /&gt;
* [[:Category:Robin Aircraft|Robin Aircraft]]&lt;br /&gt;
* [[:Category:Robinson|Robinson]]&lt;br /&gt;
* [[:Category:Saab|Saab]]&lt;br /&gt;
* [[:Category:Schleicher|Schleicher]]&lt;br /&gt;
* [[:Category:Sikorsky|Sikorsky]]&lt;br /&gt;
* [[:Category:Sud Aviation|Sud Aviation]]&lt;br /&gt;
* [[:Category:Sukhoi|Sukhoi]]&lt;br /&gt;
* [[:Category:Supermarine‎|Supermarine‎]]&lt;br /&gt;
* [[:Category:Tupolev|Tupolev]]&lt;br /&gt;
* [[:Category:Yakovlev|Yakovlev]]&lt;br /&gt;
&lt;br /&gt;
| group2 = {{LangSwitch&lt;br /&gt;
             | en = Spacecraft&lt;br /&gt;
           }}&lt;br /&gt;
| list2  =&lt;br /&gt;
* &lt;br /&gt;
| group3 = {{LangSwitch&lt;br /&gt;
             | en = Vehicle&lt;br /&gt;
           }}&lt;br /&gt;
| list3  =&lt;br /&gt;
* &lt;br /&gt;
&lt;br /&gt;
| group4 = {{LangSwitch&lt;br /&gt;
             | en = Seacraft&lt;br /&gt;
           }}&lt;br /&gt;
| list4  =&lt;br /&gt;
* &lt;br /&gt;
}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
{{Informative template|1=&lt;br /&gt;
__NOTOC__&lt;br /&gt;
== Goal ==&lt;br /&gt;
This navigation template shows all aircraft, spacecraft, vehicle, and seacraft manufacturers.&lt;br /&gt;
&lt;br /&gt;
This should not be confused with the {{tl|craft manufacturer}} template used for individual manufacturers.&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
&lt;br /&gt;
 {{obr}}'''craft manufacturers'''{{cbr}}&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Navigation templates]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Category:Robin_Aircraft&amp;diff=140188</id>
		<title>Category:Robin Aircraft</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Category:Robin_Aircraft&amp;diff=140188"/>
		<updated>2024-08-05T12:16:02Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{en|This category contains aircraft currently or previously built or engineered by Robin Aircraft.}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Aircraft manufacturer]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Category:Robin_Aircraft&amp;diff=140187</id>
		<title>Category:Robin Aircraft</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Category:Robin_Aircraft&amp;diff=140187"/>
		<updated>2024-08-05T12:15:23Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Add Category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{en|This category contains aircraft currently or previously built or engineered by Robin Aircraft.}}&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=File:Robin_DR400_Ecoflyer_Exterior.jpg&amp;diff=140186</id>
		<title>File:Robin DR400 Ecoflyer Exterior.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=File:Robin_DR400_Ecoflyer_Exterior.jpg&amp;diff=140186"/>
		<updated>2024-08-05T12:13:13Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Uploaded own work with UploadWizard&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=={{int:filedesc}}==&lt;br /&gt;
{{Information&lt;br /&gt;
|description={{en|1=Robin DR400-135cdi Ecoflyer in-flight}}&lt;br /&gt;
|date=2023-11-07&lt;br /&gt;
|source={{own}}&lt;br /&gt;
|author=[[User:D-ECHO|D-ECHO]]&lt;br /&gt;
|permission=&lt;br /&gt;
|other versions=&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=={{int:license-header}}==&lt;br /&gt;
{{self|cc-by-sa-4.0}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Robin DR400 screenshots]]&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=JSBSim_Engines&amp;diff=139566</id>
		<title>JSBSim Engines</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=JSBSim_Engines&amp;diff=139566"/>
		<updated>2024-03-25T16:47:24Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: /* Notes */ add dead link notice&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[JSBSim]] provides a framework for aerodynamics. This page will attempt to explain how to create engines for the JSBSim framework.  Engines also require [[JSBSim Thrusters|thrusters]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== FGPiston ==&lt;br /&gt;
Piston engine model. You enter values based on commonly available data and this model creates reasonable output values.&lt;br /&gt;
=== Configuration File Format ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt; &lt;br /&gt;
 &amp;lt;piston_engine name=&amp;quot;{string}&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;minmp unit=&amp;quot;{INHG | PA | ATM}&amp;quot;&amp;gt; {number} &amp;lt;/minmp&amp;gt;&lt;br /&gt;
  &amp;lt;maxmp unit=&amp;quot;{INHG | PA | ATM}&amp;quot;&amp;gt; {number} &amp;lt;/maxmp&amp;gt;&lt;br /&gt;
  &amp;lt;displacement unit=&amp;quot;{IN3 | LTR | CC}&amp;quot;&amp;gt; {number} &amp;lt;/displacement&amp;gt;&lt;br /&gt;
  &amp;lt;bore unit=&amp;quot;{IN | M}&amp;quot;&amp;gt; {number} &amp;lt;/bore&amp;gt; &amp;lt;!-- Unused --&amp;gt;&lt;br /&gt;
  &amp;lt;stroke unit=&amp;quot;{IN | M}&amp;quot;&amp;gt; {number} &amp;lt;/stroke&amp;gt;&lt;br /&gt;
  &amp;lt;cylinders&amp;gt; {number} &amp;lt;/cylinders&amp;gt;&amp;lt;!-- Unused --&amp;gt;&lt;br /&gt;
  &amp;lt;cylinder-head-mass unit=&amp;quot;{KG | LBS}&amp;quot;&amp;gt; {number} &amp;lt;/cylinder-head-mass&amp;gt; &lt;br /&gt;
  &amp;lt;compression-ratio&amp;gt; {number} &amp;lt;/compression-ratio&amp;gt;&lt;br /&gt;
  &amp;lt;sparkfaildrop&amp;gt; {number} &amp;lt;/sparkfaildrop&amp;gt;&lt;br /&gt;
  &amp;lt;maxhp unit=&amp;quot;{HP | WATTS}&amp;quot;&amp;gt; {number} &amp;lt;/maxhp&amp;gt;&lt;br /&gt;
  &amp;lt;cycles&amp;gt; {number} &amp;lt;/cycles&amp;gt; &lt;br /&gt;
  &amp;lt;idlerpm&amp;gt; {number} &amp;lt;/idlerpm&amp;gt;&lt;br /&gt;
  &amp;lt;maxrpm&amp;gt; {number} &amp;lt;/maxrpm&amp;gt;&lt;br /&gt;
  &amp;lt;numboostspeeds&amp;gt; {number} &amp;lt;/numboostspeeds&amp;gt;&lt;br /&gt;
  &amp;lt;boostoverride&amp;gt; {0 | 1} &amp;lt;/boostoverride&amp;gt;&lt;br /&gt;
  &amp;lt;boostmanual&amp;gt; {0 | 1} &amp;lt;/boostmanual&amp;gt;&lt;br /&gt;
  &amp;lt;ratedboost1 unit=&amp;quot;{INHG | PA | ATM}&amp;quot;&amp;gt; {number} &amp;lt;/ratedboost1&amp;gt;&lt;br /&gt;
  &amp;lt;ratedpower1 unit=&amp;quot;{HP | WATTS}&amp;quot;&amp;gt; {number} &amp;lt;/ratedpower1&amp;gt;&lt;br /&gt;
  &amp;lt;ratedrpm1&amp;gt; {number} &amp;lt;/ratedrpm1&amp;gt;&lt;br /&gt;
  &amp;lt;ratedaltitude1 unit=&amp;quot;{FT | M}&amp;quot;&amp;gt; {number} &amp;lt;/ratedaltitude1&amp;gt;&lt;br /&gt;
 (repeat for speeds 2 and 3)&lt;br /&gt;
  &amp;lt;takeoffboost unit=&amp;quot;{INHG | PA | ATM}&amp;quot;&amp;gt; {number} &amp;lt;/takeoffboost&amp;gt;&lt;br /&gt;
 &amp;lt;!-- advanced tags! --&amp;gt;&lt;br /&gt;
  &amp;lt;bsfc unit=&amp;quot;{LBS/HP*HR | KG/KW*HR}&amp;quot;&amp;gt; {number} &amp;lt;/bsfc&amp;gt;&lt;br /&gt;
  &amp;lt;volumetric-efficiency&amp;gt; {number} &amp;lt;/volumetric-efficiency&amp;gt;&lt;br /&gt;
  &amp;lt;air-intake-impedance-factor&amp;gt; {number} &amp;lt;/air-intake-impedance-factor&amp;gt;&lt;br /&gt;
  &amp;lt;ram-air-factor&amp;gt; {number} &amp;lt;/ram-air-factor&amp;gt;&lt;br /&gt;
  &amp;lt;cooling-factor&amp;gt; {number} &amp;lt;/cooling-factor&amp;gt; &lt;br /&gt;
&amp;lt;!-- Added in FlightGear 2.8 --&amp;gt;&lt;br /&gt;
  &amp;lt;starter-torque&amp;gt; {number} &amp;lt;/starter-torque&amp;gt;&lt;br /&gt;
  &amp;lt;starter-rpm&amp;gt; {number} &amp;lt;/starter-rpm&amp;gt;&lt;br /&gt;
  &amp;lt;static-friction  unit=&amp;quot;{HP | WATTS}&amp;quot;&amp;gt; {number} &amp;lt;/static-friction&amp;gt;&lt;br /&gt;
  &amp;lt;man-press-lag&amp;gt; {number} &amp;lt;/man-press-lag&amp;gt;&lt;br /&gt;
  &amp;lt;boost-loss-factor&amp;gt; {number} &amp;lt;/boost-loss-factor&amp;gt;&lt;br /&gt;
&amp;lt;!-- Added in FlightGear 2017.2 --&amp;gt;&lt;br /&gt;
  &amp;lt;oil-pressure-relief-valve-psi&amp;gt; {number} &amp;lt;/oil-pressure-relief-valve-psi&amp;gt;&lt;br /&gt;
  &amp;lt;design-oil-temp-degK&amp;gt; {number} &amp;lt;/design-oil-temp-degK&amp;gt;&lt;br /&gt;
  &amp;lt;oil-pressure-rpm-max&amp;gt; {number} &amp;lt;/oil-pressure-rpm-max&amp;gt;&lt;br /&gt;
  &amp;lt;oil-viscosity-index&amp;gt; {number} &amp;lt;/oil-viscosity-index&amp;gt;&lt;br /&gt;
 &amp;lt;/piston_engine&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Parameter definitions ===&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot;&lt;br /&gt;
|minmp&lt;br /&gt;
|this value is the nominal idle manifold pressure at sea-level without boost. Along with idlerpm, it determines the throttle response slope.&lt;br /&gt;
|- &lt;br /&gt;
|maxmp&lt;br /&gt;
|this value is the nomial maximum manifold pressure at sea-level without boost. Along with maxrpm it determines the resistance of the aircraft's intake system. See air-intake-impedance-factor&lt;br /&gt;
|-&lt;br /&gt;
|displacement&lt;br /&gt;
|this value is used to determine mass air and fuel flow which impacts engine power and cooling.&lt;br /&gt;
|-&lt;br /&gt;
|bore&lt;br /&gt;
|cylinder bore is currently unused.&lt;br /&gt;
|-&lt;br /&gt;
|stroke&lt;br /&gt;
|piston stroke is used to determine the mean piston speed. A longer stroke results in an engine that does not work as well at higher speeds.&lt;br /&gt;
|-&lt;br /&gt;
|cylinders &lt;br /&gt;
|number of cylinders scales the cylinder head mass.&lt;br /&gt;
|-&lt;br /&gt;
|cylinder-head-mass&lt;br /&gt;
|the nominal mass of a cylinder head. A larger value slows changes in engine temperature&lt;br /&gt;
|-&lt;br /&gt;
|compression-ratio&lt;br /&gt;
|the compression ratio affects the change in volumetric efficiency with altitude.&lt;br /&gt;
|-&lt;br /&gt;
|sparkfaildrop&lt;br /&gt;
|this is the percentage drop in horsepower for single magneto operation.&lt;br /&gt;
|-&lt;br /&gt;
|maxhp&lt;br /&gt;
|this value is the nominal power the engine creates at maxrpm. It will determine bsfc if that tag is not input. It also determines the starter motor power.&lt;br /&gt;
|-&lt;br /&gt;
|static-friction&lt;br /&gt;
|this value is the power required to turn an engine that is not running. Used to control and slow a windmilling propeller.&lt;br /&gt;
|-&lt;br /&gt;
|cycles&lt;br /&gt;
|Designate a 2 or 4 stroke engine. Currently only the 4 stroke engine is supported.&lt;br /&gt;
|-&lt;br /&gt;
|idlerpm&lt;br /&gt;
|this value affects the throttle fall off and the engine stops running if it is slowed below 80% of this value. The engine starts running when it reaches 80% of this value.&lt;br /&gt;
|-&lt;br /&gt;
|maxrpm&lt;br /&gt;
|this value is used to calculate air-box resistance and BSFC. It also affects oil pressure among other things.&lt;br /&gt;
|-&lt;br /&gt;
|maxthrottle&lt;br /&gt;
|Deprecated / unused&lt;br /&gt;
|-&lt;br /&gt;
|minthrottle&lt;br /&gt;
|Deprecated / unused&lt;br /&gt;
|-&lt;br /&gt;
|numboostspeed&lt;br /&gt;
| zero (or not present) for a naturally-aspirated engine, either 1, 2 or 3 for a boosted engine.  This corresponds to the number of supercharger speeds.  Merlin XII had 1 speed, Merlin 61 had 2, a late  Griffon engine apparently had 3.  No known engine more than 3, although some German engines apparently had a continuously variable-speed supercharger.&lt;br /&gt;
|-&lt;br /&gt;
|boostoverride&lt;br /&gt;
|unused&lt;br /&gt;
|-&lt;br /&gt;
|boost-loss-factor (fgfs 2.8)&lt;br /&gt;
|boost-loss-factor - zero (or not present) for 'free' supercharging. A value entered will be used as a multiplier to the power required to compress the input air. Typical value should be 1.15 to 1.20.&lt;br /&gt;
|-&lt;br /&gt;
|boostmanual&lt;br /&gt;
|whether a multispeed supercharger will manually or automatically shift boost speeds. On manual shifting the boost speeds is accomplished by controlling propulsion/engine/boostspeed&lt;br /&gt;
|-&lt;br /&gt;
|takeoffboost&lt;br /&gt;
|boost in psi above sea level ambient.&lt;br /&gt;
|-&lt;br /&gt;
|ratedboost[123]&lt;br /&gt;
|the absolute rated boost above sea level ambient (14.7 PSI, 29.92 inHg) for a given boost speed, in psi&lt;br /&gt;
|-&lt;br /&gt;
|ratedpower[123]&lt;br /&gt;
|required by the parser but ignored&lt;br /&gt;
|-&lt;br /&gt;
|ratedrpm[123]&lt;br /&gt;
|The rpm at which rated boost is developed&lt;br /&gt;
|-&lt;br /&gt;
|ratedaltitude[123]&lt;br /&gt;
|The altitude up to which rated boost can be maintained. Up to this altitude the boost is maintained constant for a given throttle position by the BCV or wastegate. Beyond this altitude the manifold pressure must drop, since the supercharger is now at maximum unregulated output. The actual pressure multiplier of the supercharger system is calculated at initialisation from this value.&lt;br /&gt;
|-&lt;br /&gt;
|bsfc (Advanced)&lt;br /&gt;
|Indicated Specific Fuel Consumption. The power produced per unit of fuel. Higher numbers give worse fuel economy. This number may need to be lowered slightly from actual BSFC numbers because some internal engine losses are modeled separately.&lt;br /&gt;
|-&lt;br /&gt;
|volumetric-efficiency (Advanced)&lt;br /&gt;
|the nominal volumetric efficiency of the engine. Boosted engines require values above 1.&lt;br /&gt;
|-&lt;br /&gt;
|air-intake-impedance-factor (Advanced)&lt;br /&gt;
|this number is the pressure drop across the intake system. Increasing it reduces available manifold pressure.&lt;br /&gt;
|-&lt;br /&gt;
|ram-air-factor (Advanced)&lt;br /&gt;
|this number creates a pressure increase with an increase in dynamic pressure (aircraft speed).&lt;br /&gt;
|-&lt;br /&gt;
|cooling-factor (Advanced)&lt;br /&gt;
|this number models how efficient the aircraft cooling system is.&lt;br /&gt;
|-&lt;br /&gt;
|starter-torque (fgfs 2.8)&lt;br /&gt;
|A value specifying the zero RPM torque in lb*ft the starter motor provides. Current default value is 40% of the maximum horsepower value.&lt;br /&gt;
|-&lt;br /&gt;
|starter-rpm (fgfs 2.8)&lt;br /&gt;
| A value specifying the maximum RPM the unloaded starter motor can achieve. Loads placed on the engine by the propeller and throttle will further limit RPM achieved in practice.  The actual RPM needs to be more than idlerpm * 0.8 for the engine to start running.&lt;br /&gt;
|-&lt;br /&gt;
|static-friction (fgfs 2.8)&lt;br /&gt;
|this value is the power required to turn an engine that is not running. Used to control and slow a windmilling propeller. Choose a small percentage of maxhp. It can also be adjusted at run-time to simulate accessory or other non-thruster engine load.&lt;br /&gt;
|-&lt;br /&gt;
|man-press-lag (fgfs 2.8)&lt;br /&gt;
|Delay in seconds for manifold pressure changes to take effect after the throttle is moved or the RPM changes. Default is 1 second.&lt;br /&gt;
|-&lt;br /&gt;
|oil-pressure-relief-valve-psi (fgfs 2017.2)&lt;br /&gt;
|the basic max value reached by oil pressure at engine RPM &amp;gt;= [oil-pressure-rpm-max]. Default = 60 psi. This basic value is later corrected for oil temperature and viscosity, to give the final oil pressure.&lt;br /&gt;
|-&lt;br /&gt;
|oil-pressure-rpm-max (fgfs 2017.2)&lt;br /&gt;
|the engine RPM value above which the basic oil pressure stabilizes at [oil-pressure-relief-valve-psi]. Default = maxrpm * 0.75. Below this regime, the oil pressure increases linearly with RPM as (oil-pressure-relief-valve-psi) * RPM / (oil-pressure-rpm-max).&lt;br /&gt;
|-&lt;br /&gt;
|design-oil-temp-degK (fgfs 2017.2)&lt;br /&gt;
|A characteristic oil temperature at which the final oil pressure = [oil-pressure-relief-valve-psi] if RPM are &amp;gt;= [oil-pressure-rpm-max]. Default = 358 K. Otherwise, the final oil pressure depends on oil temperature and viscosity index (and RPM at low regime).&lt;br /&gt;
|-&lt;br /&gt;
|oil-viscosity-index (fgfs 2017.2)&lt;br /&gt;
|A coefficient for oil viscosity dependence on oil temperature. Default = 0.25 psi / K regarding the effect on oil pressure.&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
* Intake &amp;amp; Throttle&lt;br /&gt;
** The intake is modeled by &amp;lt;ram-air-factor&amp;gt;,&amp;lt;minmp&amp;gt;, &amp;lt;maxmp&amp;gt;, and &amp;lt;air-intake-impedance-factor&amp;gt;. &lt;br /&gt;
** &amp;lt;ram-air-factor&amp;gt; is the efficiency of the air scoop intake. 0 turns ram air off. Default is 1. This value is exposed on the property tree so it may be altered at runtime to simulate alternate air, etc. The value can be calculated by (ambient pressure)/(desired pressure)-1 where desired pressure is full throttle at rated RPM.&lt;br /&gt;
** &amp;lt;maxmp&amp;gt; is the maximum manifold pressure achievable. It is used for determining &amp;lt;BSFC&amp;gt; and &amp;lt;air-intake-impedance-factor&amp;gt; if a values are not supplied for those items.&lt;br /&gt;
** &amp;lt;minmp&amp;gt; is used along with &amp;lt;idlerpm&amp;gt; to determine the slope of the throttle response&lt;br /&gt;
** &amp;lt;air-intake-impedance-factor&amp;gt; is the fixed impedance in the air intake system. It is determined by &amp;lt;maxmp&amp;gt; if not supplied. This value is exposed on the property tree so it may be altered at runtime to simulate intake icing, alternate air, etc.&lt;br /&gt;
* Boost&lt;br /&gt;
** &amp;lt;boostmanual&amp;gt; whether a multispeed supercharger will manually or automatically shift boost speeds. On manual shifting the boost speeds is accomplished by controlling propulsion/engine/boostspeed&lt;br /&gt;
** &amp;lt;takeoffboost&amp;gt; -  Many aircraft had an extra boost setting beyond rated boost, but not totally uncontrolled as in the already mentioned boost-control-cutout, typically attained by pushing the throttle past a mechanical 'gate' preventing its inadvertant use. This was typically used for takeoff, and emergency situations, generally for not more than five minutes. This is a change in the boost control setting, not the actual supercharger speed, and so would only give extra power below the rated altitude. When TAKEOFFBOOST is specified in the config file (and is above RATEDBOOST1), then the throttle position is interpreted as:&lt;br /&gt;
*** 0 to 0.98 : idle manifold pressure to rated boost (where attainable)&lt;br /&gt;
*** 0.99, 1.0 : takeoff boost (where attainable).&lt;br /&gt;
*** A typical takeoff boost for an earlyish Merlin was about 12psi, compared with a rated boost of 9psi.&lt;br /&gt;
*** It is quite possible that other boost control settings could have been used on some aircraft, or that takeoff/extra boost could have activated by other means than pushing the throttle full forward through a gate, but this will suffice for now.&lt;br /&gt;
** &amp;lt;ratedboost[123]&amp;gt; - the absolute rated boost above sea level ambient (14.7 PSI, 29.92 inHg) for a given boost speed, in psi. Eg the Merlin XII had a rated boost of 9psi, giving approximately 39inHg manifold pressure up to the rated altitude.&lt;br /&gt;
*** Note that &amp;lt;maxmp&amp;gt; is still the non-boosted max manifold pressure even for boosted engines - effectively this is simply a measure of the pressure drop through the fully open throttle.&lt;br /&gt;
** &amp;lt;ratedaltitude[123]&amp;gt; - The altitude up to which rated boost can be maintained. Up to this altitude the boost is maintained constant for a given throttle position by the BCV or wastegate. Beyond this altitude the manifold pressure must drop, since the supercharger is now at maximum unregulated output. The actual pressure multiplier of the supercharger system is calculated at initialisation from this value.&lt;br /&gt;
** &amp;lt;ratedpower[123]&amp;gt; - The power developed at rated boost at rated altitude at rated rpm.&lt;br /&gt;
** &amp;lt;ratedrpm[123]&amp;gt; - The rpm at which rated power is developed.&lt;br /&gt;
* Power production&lt;br /&gt;
** &amp;lt;sparkfaildrop&amp;gt; is the amount of power you get for single magneto operation, try a value of 0.8 or so.&lt;br /&gt;
** &amp;lt;volumetric-efficiency&amp;gt; controls how much air goes through the engine at a given RPM. Values below 1 for unboosted engines and values over 1 for boosted engines. This value is exposed on the property tree so it may be altered at runtime.&lt;br /&gt;
** &amp;lt;bsfc&amp;gt; is the amount of power the engine produces per unit of fuel consumed. Use it to tune the power produced. This value is exposed on the property tree so it may be altered at runtime.&lt;br /&gt;
* Cooling&lt;br /&gt;
** &amp;lt;cylinder-head-mass&amp;gt; controls how fast the engine heats up and cools off. So if you have a '5-minute' limit on a power setting you can adjust this value so the engine just starts to overheat at the end of the given time frame.&lt;br /&gt;
** &amp;lt;cooling-factor&amp;gt; controls how much 'air' flows over the engine to cool it. Raising the value makes the engine run cooler. This value is exposed on the property tree so it may be altered at runtime to simulate cowl flaps, for example.&lt;br /&gt;
* Tuning&lt;br /&gt;
** Using a constant speed load, set the engine model to full throttle and rated RPM.&lt;br /&gt;
** Set &amp;lt;ram-air-factor&amp;gt; to zero.&lt;br /&gt;
** Adjust &amp;lt;air-intake-impedance-factor&amp;gt; to achieve the proper static full throttle manifold pressure.&lt;br /&gt;
** Increase airspeed to cruise and adjust &amp;lt;ram-air-factor&amp;gt; to achieve the proper dynamic full throttle manifold pressure.&lt;br /&gt;
** Adjust &amp;lt;volumetric-efficiency&amp;gt; first to achieve desired fuel flow rate, leaning engine as required.&lt;br /&gt;
** Adjust &amp;lt;bsfc&amp;gt; to achieve desired power.&lt;br /&gt;
** Some piston engines will have power curves that will need to be altered from default depending on operating conditions.  For example engines with multi-speed superchargers will produce less horse power on high speed at the same manifold pressure compared to low speed.  Functions can be setup to alter &amp;lt;volumetric-efficiency&amp;gt; and &amp;lt;bsfc&amp;gt; at run time to get the power and fuel consumption curves correct by using different values for high and low supercharger speeds.&lt;br /&gt;
&lt;br /&gt;
== FGTurbine ==&lt;br /&gt;
The jet turbine engine&lt;br /&gt;
&lt;br /&gt;
=== Configuration File Format ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt; &lt;br /&gt;
 &amp;lt;turbine_engine name=&amp;quot;{string}&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;milthrust unit=&amp;quot;{LBS | N}&amp;quot;&amp;gt; {number} &amp;lt;/milthrust&amp;gt;&lt;br /&gt;
  &amp;lt;maxthrust unit=&amp;quot;{LBS | N}&amp;quot;&amp;gt; {number} &amp;lt;/maxthrust&amp;gt;&lt;br /&gt;
  &amp;lt;bypassratio&amp;gt; {number} &amp;lt;/bypassratio&amp;gt;&lt;br /&gt;
  &amp;lt;bleed&amp;gt; {number} &amp;lt;/bleed&amp;gt;&lt;br /&gt;
  &amp;lt;tsfc&amp;gt; {number} &amp;lt;/tsfc&amp;gt;&lt;br /&gt;
  &amp;lt;atsfc&amp;gt; {number} &amp;lt;/atsfc&amp;gt;&lt;br /&gt;
  &amp;lt;ignitionn1&amp;gt; {number} &amp;lt;/ignitionn1&amp;gt;&lt;br /&gt;
  &amp;lt;ignitionn2&amp;gt; {number} &amp;lt;/ignitionn2&amp;gt;&lt;br /&gt;
  &amp;lt;idlen1&amp;gt; {number} &amp;lt;/idlen1&amp;gt;&lt;br /&gt;
  &amp;lt;idlen2&amp;gt; {number} &amp;lt;/idlen2&amp;gt;&lt;br /&gt;
  &amp;lt;n1spinup&amp;gt; {number} &amp;lt;/n1spinup&amp;gt;&lt;br /&gt;
  &amp;lt;n2spinup&amp;gt; {number} &amp;lt;/n2spinup&amp;gt;&lt;br /&gt;
  &amp;lt;n1startrate&amp;gt; {number} &amp;lt;/n1startrate&amp;gt;&lt;br /&gt;
  &amp;lt;n2startrate&amp;gt; {number} &amp;lt;/n2startrate&amp;gt;&lt;br /&gt;
  &amp;lt;maxn1&amp;gt; {number} &amp;lt;/maxn1&amp;gt;&lt;br /&gt;
  &amp;lt;maxn2&amp;gt; {number} &amp;lt;/maxn2&amp;gt;&lt;br /&gt;
  &amp;lt;augmented&amp;gt; {0 | 1} &amp;lt;/augmented&amp;gt;&lt;br /&gt;
  &amp;lt;augmethod&amp;gt; {0 | 1 | 2} &amp;lt;/augmethod&amp;gt;&lt;br /&gt;
  &amp;lt;injected&amp;gt; {0 | 1} &amp;lt;/injected&amp;gt;&lt;br /&gt;
  &amp;lt;injection-time&amp;gt; {number} &amp;lt;/injection-time&amp;gt;&lt;br /&gt;
  &amp;lt;function name=&amp;quot;IdleThrust&amp;quot;&amp;gt; &amp;lt;/function&amp;gt;&lt;br /&gt;
  &amp;lt;function name=&amp;quot;MilThrust&amp;quot;&amp;gt;  &amp;lt;/function&amp;gt;&lt;br /&gt;
  &amp;lt;function name=&amp;quot;AugThrust&amp;quot;&amp;gt;  &amp;lt;/function&amp;gt;&lt;br /&gt;
  &amp;lt;function name=&amp;quot;Injection&amp;quot;&amp;gt;  &amp;lt;/function&amp;gt;&lt;br /&gt;
 &amp;lt;/turbine_engine&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Parameter definitions ===&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot;&lt;br /&gt;
|milthrust&lt;br /&gt;
|Maximum thrust, static, at sea level.&lt;br /&gt;
|-&lt;br /&gt;
|maxthrust&lt;br /&gt;
|Afterburning thrust, static, at sea level.&lt;br /&gt;
|-&lt;br /&gt;
|bypassratio&lt;br /&gt;
|Ratio of bypass air flow to core air flow.&lt;br /&gt;
|-&lt;br /&gt;
|bleed&lt;br /&gt;
|Thrust reduction factor due to losses (0.0 to 1.0).&lt;br /&gt;
|-&lt;br /&gt;
|tsfc&lt;br /&gt;
|Thrust-specific fuel consumption at cruise, lbm/hr/lbf&lt;br /&gt;
|-&lt;br /&gt;
|atsfc&lt;br /&gt;
|Afterburning TSFC, lbm/hr/lbf&lt;br /&gt;
|-&lt;br /&gt;
|ignitionn1&lt;br /&gt;
|Fan rotor rpm (% of max) while starting&lt;br /&gt;
|-&lt;br /&gt;
|ignitionn2&lt;br /&gt;
|Core rotor rpm (% of max) while starting&lt;br /&gt;
|-&lt;br /&gt;
|idlen1&lt;br /&gt;
|Fan rotor rpm (% of max) at idle&lt;br /&gt;
|-&lt;br /&gt;
|idlen2&lt;br /&gt;
|Core rotor rpm (% of max) at idle&lt;br /&gt;
|-&lt;br /&gt;
|n1spinup&lt;br /&gt;
|Fan rotor rpm starter acceleration (default 1.0%/sec)&lt;br /&gt;
|-&lt;br /&gt;
|n2spinup&lt;br /&gt;
|Core rotor rpm starter acceleration (default 3.0%/sec)&lt;br /&gt;
|-&lt;br /&gt;
|n1startrate&lt;br /&gt;
|Fan rotor rpm time taken to accelerate from ignitionn1 to idlen1 value (default 1.4%/sec)&lt;br /&gt;
|-&lt;br /&gt;
|n2startrate&lt;br /&gt;
|Core rotor rpm time taken to accelerate from ignitionn2 to idlen2 value (default 2.0%/sec)&lt;br /&gt;
|-&lt;br /&gt;
|maxn1&lt;br /&gt;
|Fan rotor rpm (% of max) at full throttle&lt;br /&gt;
|-&lt;br /&gt;
|maxn2&lt;br /&gt;
|Core rotor rpm (% of max) at full throttle&lt;br /&gt;
|-&lt;br /&gt;
|augmented&lt;br /&gt;
|0 = afterburner not installed&amp;lt;br /&amp;gt;1 = afterburner installed&lt;br /&gt;
|-&lt;br /&gt;
|augmethod&lt;br /&gt;
|0 = afterburner activated by property /engines/engine[n]/augmentation&amp;lt;br /&amp;gt;1 = afterburner activated by pushing throttle above 99% position&amp;lt;br /&amp;gt;2 = throttle range is expanded in the FCS, and values above 1.0 are afterburner range&lt;br /&gt;
|-&lt;br /&gt;
|injected&lt;br /&gt;
|0 = Water injection not installed&amp;lt;br /&amp;gt;1 = Water injection installed&lt;br /&gt;
|-&lt;br /&gt;
|injection-time&lt;br /&gt;
|Time, in seconds, of water injection duration&lt;br /&gt;
|-&lt;br /&gt;
|function&lt;br /&gt;
|Two functions, IdleThrust and MilThrust must always be defined. AugThrust is required for afterburning (reheated) engines. Injection is for water injected engines. These functions return a multiplier that is applied to the supplied static thrust values. In aeromatic configurations these functions are tables based on sonic velocity and air density&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
*Bypass ratio is used only to estimate engine acceleration time. The effect of bypass ratio on engine efficiency is already included in the TSFC value. Feel free to set this parameter (even for turbojets) to whatever value gives a desired spool-up rate. Default value is 0.&lt;br /&gt;
*The bleed factor is multiplied by thrust to give a resulting thrust after losses. This can represent losses due to bleed, or any other cause. Default value is 0. A common value would be 0.04.&lt;br /&gt;
*Nozzle position, for variable area exhaust nozzles, is provided for users needing to drive a nozzle gauge or animate a virtual nozzle.&lt;br /&gt;
*This model can only be used with the &amp;quot;direct&amp;quot; thruster. See the file: /engine/direct.xml&lt;br /&gt;
*TSFC=fuel consumption per hour/thrust&lt;br /&gt;
*There is a Java program here to calculate thrust vs airspeed and altitude. http://adg.stanford.edu/aa241/propulsion/engmodel.html&amp;lt;nowiki/&amp;gt;{{Dead link}}&lt;br /&gt;
* n1spinup and n2spinup are the rate (in %/sec) of increase below 25.8% N2, or until 15% if cutoff is false. These N% values can be manipulated by ignitionn1 and ignitionn2.&lt;br /&gt;
* acceleration between 25.8% N2 and Idle is at a preset rate of 2.0/%sec for M2, 1.4%/sec for N1. Can now be manipulated by n1startrate / n2startrate&lt;br /&gt;
* once running the acceleration is (90.0 / (BypassRatio + 3.0) ) per second&lt;br /&gt;
* ignitionn1 / ignitionn2 and n1startrate / n2startrate available from 2018.4+&lt;br /&gt;
&lt;br /&gt;
== FGTurboprop ==&lt;br /&gt;
The turboprop engine&lt;br /&gt;
&lt;br /&gt;
=== Configuration File Format ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt; &lt;br /&gt;
&amp;lt;milthrust unit=&amp;quot;{LBS | N}&amp;quot;&amp;gt; {number} &amp;lt;/milthrust&amp;gt;&lt;br /&gt;
&amp;lt;idlen1&amp;gt; {number} &amp;lt;/idlen1&amp;gt;&lt;br /&gt;
&amp;lt;idlen2&amp;gt; {number} &amp;lt;/idlen2&amp;gt;&lt;br /&gt;
&amp;lt;maxn1&amp;gt; {number} &amp;lt;/maxn1&amp;gt;&lt;br /&gt;
&amp;lt;maxn2&amp;gt; {number} &amp;lt;/maxn2&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;betarangeend&amp;gt; {number} &amp;lt;/betarangeend&amp;gt;&lt;br /&gt;
&amp;lt;reversemaxpower&amp;gt; {number} &amp;lt;/reversemaxpower&amp;gt;&lt;br /&gt;
&amp;lt;maxpower&amp;gt; {number} &amp;lt;/maxpower&amp;gt;&lt;br /&gt;
&amp;lt;psfc&amp;gt; {number} &amp;lt;/psfc&amp;gt;&lt;br /&gt;
&amp;lt;n1idle_max_delay&amp;gt; {number} &amp;lt;/n1idle_max_delay&amp;gt;&lt;br /&gt;
&amp;lt;maxstartingtime&amp;gt; {number} &amp;lt;/maxstartingtime&amp;gt;&lt;br /&gt;
&amp;lt;startern1&amp;gt; {number} &amp;lt;/startern1&amp;gt;&lt;br /&gt;
&amp;lt;ielumaxtorque&amp;gt; {number} &amp;lt;/ielumaxtorque&amp;gt;&lt;br /&gt;
&amp;lt;itt_delay&amp;gt; {number} &amp;lt;/itt_delay&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;table name=&amp;quot;EnginePowerVC&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;description&amp;gt; Engine power, function of airspeed and pressure &amp;lt;/description&amp;gt;&lt;br /&gt;
    &amp;lt;independentVar lookup=&amp;quot;row&amp;quot;&amp;gt;atmosphere/P-sl-psf&amp;lt;/independentVar&amp;gt;&lt;br /&gt;
    &amp;lt;independentVar lookup=&amp;quot;column&amp;quot;&amp;gt;velocities/ve-kts&amp;lt;/independentVar&amp;gt;&lt;br /&gt;
    &amp;lt;tableData&amp;gt;&lt;br /&gt;
                 0     50    100    150    200    250&lt;br /&gt;
       503   0.357  0.380  0.400  0.425  0.457  0.486&lt;br /&gt;
      1048   0.586  0.589  0.600  0.621  0.650  0.686&lt;br /&gt;
      1328   0.707  0.721  0.731  0.757  0.786  0.821&lt;br /&gt;
      1496   0.779  0.786  0.808  0.821  0.857  0.900&lt;br /&gt;
      1684   0.850  0.857  0.874  0.900  0.943  0.979&lt;br /&gt;
      1896   0.914  0.929  0.946  0.971  1      1.057&lt;br /&gt;
      2135   1      1.011  1.029  1.043  1.083  1.150&lt;br /&gt;
      2213   1.029  1.043  1.057  1.079  1.114  1.171&lt;br /&gt;
    &amp;lt;/tableData&amp;gt;&lt;br /&gt;
  &amp;lt;/table&amp;gt; &lt;br /&gt;
&lt;br /&gt;
  &amp;lt;table name=&amp;quot;EnginePowerRPM_N1&amp;quot; type=&amp;quot;internal&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;description&amp;gt; Engine Power, function of RPM and N1 &amp;lt;/description&amp;gt;&lt;br /&gt;
    &amp;lt;tableData&amp;gt;&lt;br /&gt;
            0   5   60    86   94   95   96   97   98   99  100  101&lt;br /&gt;
         0  0   0.5  0.5   0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5  0.5&lt;br /&gt;
       800  0   0.5 35   200  350  380  420  460  500  530  580  620&lt;br /&gt;
      1200  0   0.5 30   230  400  430  470  505  550  590  640  680&lt;br /&gt;
      1600  0   0.5  5   240  440  475  510  550  595  630  680  720&lt;br /&gt;
      2000  0   0.1  0.1 225  450  495  525  565  610  650  700  745&lt;br /&gt;
      2200  0   0.1  0.1 205  440  480  515  560  605  645  695  743&lt;br /&gt;
    &amp;lt;/tableData&amp;gt;&lt;br /&gt;
  &amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;table name=&amp;quot;ITT_N1&amp;quot; type=&amp;quot;internal&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;description&amp;gt; Inter-Turbine Temperature ITT [deg C] depending on N1 and engine run (0=off / 1=running) &amp;lt;/description&amp;gt;&lt;br /&gt;
    &amp;lt;tableData&amp;gt;&lt;br /&gt;
              0     1&lt;br /&gt;
      {n1 value} {number} {number}&lt;br /&gt;
       ...&lt;br /&gt;
      {n1 value} {number} {number}&lt;br /&gt;
      &amp;lt;/tableData&amp;gt;&lt;br /&gt;
  &amp;lt;/table&amp;gt; &lt;br /&gt;
  &lt;br /&gt;
  &amp;lt;table name=&amp;quot;CombustionEfficiency_N1&amp;quot; type=&amp;quot;internal&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;tableData&amp;gt;&lt;br /&gt;
      {n1 value} {number}&lt;br /&gt;
       ...&lt;br /&gt;
      {n1 value} {number}&lt;br /&gt;
      &amp;lt;/tableData&amp;gt;&lt;br /&gt;
  &amp;lt;/table&amp;gt; &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Parameter definitions ===&lt;br /&gt;
{| class=&amp;quot;prettytable&amp;quot;&lt;br /&gt;
|milthrust&lt;br /&gt;
|[LBS]&lt;br /&gt;
|-&lt;br /&gt;
|idlen1&lt;br /&gt;
|[%]&lt;br /&gt;
|-&lt;br /&gt;
|maxn1&lt;br /&gt;
|[%]&lt;br /&gt;
|-&lt;br /&gt;
|betarangeend[%]&lt;br /&gt;
| if ThrottleCmd &amp;amp;lt; betarangeend/100.0 then engine power=idle, propeller pitch is controled by ThrottleCmd (between MINPITCH and  REVERSEPITCH).&amp;lt;br /&amp;gt; if ThrottleCmd &amp;amp;gt; betarangeend/100.0 then engine power increases up to max reverse power reversemaxpower [%] max engine power in reverse mode&lt;br /&gt;
|-&lt;br /&gt;
|maxpower&lt;br /&gt;
| [HP]&lt;br /&gt;
|-&lt;br /&gt;
|psfc&lt;br /&gt;
| power specific fuel consumption [pph/HP] for N1=100%&lt;br /&gt;
|-&lt;br /&gt;
|n1idle_max_delay&lt;br /&gt;
|[-] time constant for N1 change&lt;br /&gt;
|-&lt;br /&gt;
|maxstartenginetime [sec]&lt;br /&gt;
|    after this time the automatic starting cycle is interrupted when the engine doesn't start (0=automatic starting not present)&lt;br /&gt;
|-&lt;br /&gt;
|startern1&lt;br /&gt;
|[%] when starting starter spin up engine to this spin&lt;br /&gt;
|-&lt;br /&gt;
|ielumaxtorque [lb.ft]&lt;br /&gt;
|if torque&amp;gt;ielumaxtorque limiters decrease the throttle (ielu = Integrated Electronic Limiter Unit)&lt;br /&gt;
|-&lt;br /&gt;
|itt_delay&lt;br /&gt;
|[-] time constant for ITT change (ITT = Inter Turbine Temperature)&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Starting the engine ===&lt;br /&gt;
Unlike [[YASim]], JSBSim simulates the startup of Turbine engines.&lt;br /&gt;
&lt;br /&gt;
# Set the [[property]] &amp;lt;code&amp;gt;/controls/engines/engine[~n~]/starter&amp;lt;/code&amp;gt; to &amp;lt;b&amp;gt;true&amp;lt;/b&amp;gt;.&lt;br /&gt;
# JSBsim will begin to crank the engine spinning it up to around 5% N1, and about 25% N2.&lt;br /&gt;
# You can set the property &amp;lt;code&amp;gt;/engines/engine[~n~]/cutoff&amp;lt;/code&amp;gt; to &amp;lt;b&amp;gt;true&amp;lt;/b&amp;gt; at any point.&lt;br /&gt;
# If the engine is above 15% N2, and the cutoff property is set to true, JSBsim will introduce fuel to the engine, and the engine will spin up.&lt;br /&gt;
# &amp;lt;code&amp;gt;/engines/engine[~n~]/n1&amp;lt;/code&amp;gt; will increase further until it stabilizes at the value which is defined in &amp;lt;code&amp;gt;idlen1&amp;lt;/code&amp;gt; in the [{{fgaddon aircraft url|707|Engines/RCo12.xml|l=42}} engine definition file].&lt;br /&gt;
# [[Nasal]] can be used to automate this process, allowing any number of engine start simulations. Various JSBsim aircraft will do this differently, depending on how the real plane functions, and how the author implemented it.&lt;br /&gt;
&lt;br /&gt;
== FGRocket ==&lt;br /&gt;
The rocket engine&lt;br /&gt;
=== Configuration File Format ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt; &lt;br /&gt;
&amp;lt;rocket_engine name=&amp;quot;{string}&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;isp&amp;gt; {number} &amp;lt;/isp&amp;gt;&lt;br /&gt;
  &amp;lt;builduptime&amp;gt; {number} &amp;lt;/builduptime&amp;gt;&lt;br /&gt;
  &amp;lt;maxthrottle&amp;gt; {number} &amp;lt;/maxthrottle&amp;gt;&lt;br /&gt;
  &amp;lt;minthrottle&amp;gt; {number} &amp;lt;/minthrottle&amp;gt;&lt;br /&gt;
  &amp;lt;slfuelflowmax&amp;gt; {number} &amp;lt;/slfuelflowmax&amp;gt;&lt;br /&gt;
  &amp;lt;sloxiflowmax&amp;gt;  {number} &amp;lt;/sloxiflowmax&amp;gt;&lt;br /&gt;
  &amp;lt;variation&amp;gt;&lt;br /&gt;
    &amp;lt;thrust&amp;gt; {number} &amp;lt;/thrust&amp;gt;&lt;br /&gt;
    &amp;lt;total_isp&amp;gt; {number} &amp;lt;/total_isp&amp;gt;&lt;br /&gt;
  &amp;lt;/variation&amp;gt; &lt;br /&gt;
  &amp;lt;thrust_table name=&amp;quot;propulsion/thrust_prop_remain&amp;quot; type=&amp;quot;internal&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;tableData&amp;gt;&lt;br /&gt;
      {number} {number}&lt;br /&gt;
	...&lt;br /&gt;
      {number} {number}&lt;br /&gt;
    &amp;lt;/tableData&amp;gt;&lt;br /&gt;
  &amp;lt;/thrust_table&amp;gt;&lt;br /&gt;
&amp;lt;/rocket_engine&amp;gt;&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== FGElectric ==&lt;br /&gt;
Simple thrust producer. You enter the max power as &amp;lt;power unit=&amp;quot;WATTS&amp;quot;&amp;gt; and the engine model produces throttle_setting*power watts of output.&lt;br /&gt;
* Enter the max power as &amp;lt;power unit=&amp;quot;WATTS&amp;quot;&amp;gt; and the engine model produces throttle_setting*power watts of output.&lt;br /&gt;
=== Configuration File Format ===&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;xml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt; &lt;br /&gt;
&amp;lt;electric_engine name=&amp;quot;{string}&amp;quot;&amp;gt;&lt;br /&gt;
 &amp;lt;power unit=&amp;quot;{HP | WATTS}&amp;quot;&amp;gt; {number} &amp;lt;/power&amp;gt;&lt;br /&gt;
&amp;lt;/electric_engine&amp;gt; &lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Notes ===&lt;br /&gt;
FGElectric models an electric motor based on the configuration file &amp;lt;power&amp;gt; parameter. The throttle controls motor output linearly from zero to &amp;lt;power&amp;gt;. This power value (converted internally to horsepower) is then used by FGPropeller to apply torque to the propeller.  At present there is no battery model available, so this motor does not consume any energy.  There is no internal friction.&lt;br /&gt;
&lt;br /&gt;
== Sources ==&lt;br /&gt;
* http://jsbsim.sourceforge.net/JSBSim/classJSBSim_1_1FGPiston.html&lt;br /&gt;
* http://jsbsim.sourceforge.net/JSBSim/classJSBSim_1_1FGTurbine.html&lt;br /&gt;
* http://jsbsim.sourceforge.net/JSBSim/classJSBSim_1_1FGTurboProp.html&lt;br /&gt;
&lt;br /&gt;
{{JSBSim}}&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=MC-15_Cri-Cri/info&amp;diff=139541</id>
		<title>MC-15 Cri-Cri/info</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=MC-15_Cri-Cri/info&amp;diff=139541"/>
		<updated>2024-03-19T18:47:48Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Correct aircraft/folder name&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{Infobox Aircraft|name=MC-15 Cri-Cri|hangar=fgaddon|type=Civil aircraft/Aerobatic aircraft/Light aircraft/Sport aircraft|config=Low wing aircraft/Tractor aircraft/Fixed gear aircraft/|propulsion=Twin-engine piston aircraft|manufacturer=Michel Colomban|author1=Bea Wolf (D-ECHO)|fdm=JSBSim|fgname=mc-15|aircraft=MC-15}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This is the aircraft infobox subpage of the [[MC-15 Cri-Cri]].&lt;br /&gt;
[[Category:Aircraft infobox documentation]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=MC-15_Cri-Cri&amp;diff=139406</id>
		<title>MC-15 Cri-Cri</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=MC-15_Cri-Cri&amp;diff=139406"/>
		<updated>2024-03-15T14:45:07Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:{{PAGENAME}}/info}}&lt;br /&gt;
{{for|the [[:Category:Helijah hangar|Helijah hangar]] Cri-Cri|Colomban Cri-cri}}&lt;br /&gt;
&lt;br /&gt;
Michel Colomban's '''MC-15 Cri-Cri''' is a tiny twin-engine piston aircraft seating one person.&lt;br /&gt;
&lt;br /&gt;
===Status of the FlightGear Model===&lt;br /&gt;
The FlightGear model of this aircraft was started in early 2024 by [[User:D-ECHO|Bea Wolf (D-ECHO)]]. It's far from finished though flyable and featuring a quite well external and cockpit 3d model. If you would like to help, especially in the areas highlighted below, feel free to contact Bea via the Forum or Discord.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Area&lt;br /&gt;
!Status&lt;br /&gt;
|-&lt;br /&gt;
|3D Model&lt;br /&gt;
|Detailed Model based on the available Building Plans. Textures are still very basic and more liveries would also be nice ('''Help welcome''').&lt;br /&gt;
Some areas of complex shape aren't done yet (e.g. flaperon control joints, rudder cables + connections) and some parts that are individually accurate per-plan don't yet fit together too well.&lt;br /&gt;
A few parts aren't yet done, for example the fuel tank and fuel linings.&lt;br /&gt;
|-&lt;br /&gt;
|Instruments&lt;br /&gt;
|All (of the few) instruments typically found in real-life Cri-Cris are modelled and functional. &lt;br /&gt;
TinyTach RPM Indicators include operating hour recording functionality as per manual.&amp;lt;ref&amp;gt;[https://www.tinytach.com/pdf/Tiny2AInstructions11263.pdf TinyTach TT2A Instructions]&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Flight Dynamics Model (FDM)&lt;br /&gt;
|Flyable, but very basic. '''Help welcome!'''&lt;br /&gt;
|-&lt;br /&gt;
|Systems&lt;br /&gt;
|&lt;br /&gt;
*Electrical System: {{Done}}&lt;br /&gt;
*Fuel System:{{Not done}}&lt;br /&gt;
*Engine System: Only very basically simulated. {{Progressbar|percentage=10}}&lt;br /&gt;
|-&lt;br /&gt;
|Additional Variants&lt;br /&gt;
|This aircraft also exists with Jet Engines&amp;lt;ref&amp;gt;[https://pilotweb.aero/aircraft/flight-tests/flight-test-colomban-jet-cri-cri-6303028/ &amp;quot;Flight test: Colomban Jet Cri-Cri&amp;quot; (Pilot Web Article)]&amp;lt;/ref&amp;gt; as well as Electric Engines&amp;lt;ref&amp;gt;[http://www.rotexelectric.eu/portfolio-item/cri-cri/ Rotex Electric Portfolio: Cri-Cri Airplane Project]&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[https://newatlas.com/eads-green-cri-test-flight-success/16245/?itm_source=newatlas&amp;amp;itm_medium=article-body Electric Green Cri takes to the skies (New Atlas)]&amp;lt;/ref&amp;gt; - those variants aren't modelled yet but are planned for the future!&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
There is extensive documentation and information available online. &lt;br /&gt;
&lt;br /&gt;
The following is a short list of what is used as reference in the development of this aircraft:&lt;br /&gt;
&lt;br /&gt;
* [https://archive.org/details/cri-cri-plane-plans/CriCri-Flight-Manual.pdf Flight Manual]&lt;br /&gt;
* [https://archive.org/details/cri-cri-plane-plans/MC15-Cri-Cri-Plans-Binder.pdf Building Plans]&lt;br /&gt;
* [https://drive.google.com/drive/folders/1O54KbAlsWvh_joA0b7MtiyEqoe3cjtCq Powerplant Information]&lt;br /&gt;
* [https://drive.google.com/drive/folders/1f_P60Sv3ynuu7brC0aeWQ0ZOepB6SPjU Info Pack]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=MC-15_Cri-Cri&amp;diff=139405</id>
		<title>MC-15 Cri-Cri</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=MC-15_Cri-Cri&amp;diff=139405"/>
		<updated>2024-03-15T14:44:13Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Add status, add disambiguation, add external links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:{{PAGENAME}}/info}}&lt;br /&gt;
{{for|the [[:Category:Helijah hangar|Helijah hangar]] Cri-Cri|Colomban Cri-cri}}&lt;br /&gt;
&lt;br /&gt;
Michel Colomban's MC-15 Cri-Cri is a tiny twin-engine piston aircraft seating one person.&lt;br /&gt;
&lt;br /&gt;
===Status of the FlightGear Model===&lt;br /&gt;
The FlightGear model of this aircraft was started in early 2024 by [[User:D-ECHO|Bea Wolf (D-ECHO)]]. It's far from finished though flyable and featuring a quite well external and cockpit 3d model. If you would like to help, especially in the areas highlighted below, feel free to contact Bea via the Forum or Discord.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Area&lt;br /&gt;
!Status&lt;br /&gt;
|-&lt;br /&gt;
|3D Model&lt;br /&gt;
|Detailed Model based on the available Building Plans. Textures are still very basic and more liveries would also be nice ('''Help welcome''').&lt;br /&gt;
Some areas of complex shape aren't done yet (e.g. flaperon control joints, rudder cables + connections) and some parts that are individually accurate per-plan don't yet fit together too well.&lt;br /&gt;
A few parts aren't yet done, for example the fuel tank and fuel linings.&lt;br /&gt;
|-&lt;br /&gt;
|Instruments&lt;br /&gt;
|All (of the few) instruments typically found in real-life Cri-Cris are modelled and functional. &lt;br /&gt;
TinyTach RPM Indicators include operating hour recording functionality as per manual.&amp;lt;ref&amp;gt;[https://www.tinytach.com/pdf/Tiny2AInstructions11263.pdf TinyTach TT2A Instructions]&amp;lt;/ref&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|Flight Dynamics Model (FDM)&lt;br /&gt;
|Flyable, but very basic. '''Help welcome!'''&lt;br /&gt;
|-&lt;br /&gt;
|Systems&lt;br /&gt;
|&lt;br /&gt;
*Electrical System: {{Done}}&lt;br /&gt;
*Fuel System:{{Not done}}&lt;br /&gt;
*Engine System: Only very basically simulated. {{Progressbar|percentage=10}}&lt;br /&gt;
|-&lt;br /&gt;
|Additional Variants&lt;br /&gt;
|This aircraft also exists with Jet Engines&amp;lt;ref&amp;gt;[https://pilotweb.aero/aircraft/flight-tests/flight-test-colomban-jet-cri-cri-6303028/ &amp;quot;Flight test: Colomban Jet Cri-Cri&amp;quot; (Pilot Web Article)]&amp;lt;/ref&amp;gt; as well as Electric Engines&amp;lt;ref&amp;gt;[http://www.rotexelectric.eu/portfolio-item/cri-cri/ Rotex Electric Portfolio: Cri-Cri Airplane Project]&amp;lt;/ref&amp;gt;&amp;lt;ref&amp;gt;[https://newatlas.com/eads-green-cri-test-flight-success/16245/?itm_source=newatlas&amp;amp;itm_medium=article-body Electric Green Cri takes to the skies (New Atlas)]&amp;lt;/ref&amp;gt; - those variants aren't modelled yet but are planned for the future!&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==External Links==&lt;br /&gt;
There is extensive documentation and information available online. &lt;br /&gt;
&lt;br /&gt;
The following is a short list of what is used as reference in the development of this aircraft:&lt;br /&gt;
&lt;br /&gt;
* [https://archive.org/details/cri-cri-plane-plans/CriCri-Flight-Manual.pdf Flight Manual]&lt;br /&gt;
* [https://archive.org/details/cri-cri-plane-plans/MC15-Cri-Cri-Plans-Binder.pdf Building Plans]&lt;br /&gt;
* [https://drive.google.com/drive/folders/1O54KbAlsWvh_joA0b7MtiyEqoe3cjtCq Powerplant Information]&lt;br /&gt;
* [https://drive.google.com/drive/folders/1f_P60Sv3ynuu7brC0aeWQ0ZOepB6SPjU Info Pack]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;references /&amp;gt;&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=Colomban_Cri-cri&amp;diff=139404</id>
		<title>Colomban Cri-cri</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=Colomban_Cri-cri&amp;diff=139404"/>
		<updated>2024-03-15T14:27:06Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: added disambiguation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{aero-stub}}&lt;br /&gt;
{{:{{PAGENAME}}/info}}&lt;br /&gt;
{{for|D-ECHO's MC-15 Cri-Cri|MC-15 Cri-Cri}}&lt;br /&gt;
The '''Colomban Cri-cri''' (short for cricket) is the smallest twin-engined [[aircraft]] in the world.&lt;br /&gt;
&lt;br /&gt;
== Aircraft help ==&lt;br /&gt;
{| class=&amp;quot;keytable&amp;quot;&lt;br /&gt;
! Key&lt;br /&gt;
! Function&lt;br /&gt;
|-&lt;br /&gt;
|{{key press|d}}&lt;br /&gt;
|Canopy open/close command&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=MC-15_Cri-Cri&amp;diff=139403</id>
		<title>MC-15 Cri-Cri</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=MC-15_Cri-Cri&amp;diff=139403"/>
		<updated>2024-03-15T14:22:42Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Add page, WIP&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{:{{PAGENAME}}/info}}&lt;br /&gt;
&lt;br /&gt;
Michel Colomban's MC-15 Cri-Cri is a tiny twin-engine piston aircraft seating one person.&lt;br /&gt;
&lt;br /&gt;
{{WIP}}&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=MC-15_Cri-Cri/info&amp;diff=139402</id>
		<title>MC-15 Cri-Cri/info</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=MC-15_Cri-Cri/info&amp;diff=139402"/>
		<updated>2024-03-15T14:21:53Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{Infobox Aircraft|name=MC-15 Cri-Cri|hangar=fgaddon|type=Civil aircraft/Aerobatic aircraft/Light aircraft/Sport aircraft|config=Low wing aircraft/Tractor aircraft/Fixed gear aircraft/|propulsion=Twin-engine piston aircraft|manufacturer=Michel Colomban|author1=Bea Wolf (D-ECHO)|fdm=JSBSim|fgname=MC-15|aircraft=mc-15}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This is the aircraft infobox subpage of the [[MC-15 Cri-Cri]].&lt;br /&gt;
[[Category:Aircraft infobox documentation]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
	<entry>
		<id>https://wiki.flightgear.org/w/index.php?title=MC-15_Cri-Cri/info&amp;diff=139401</id>
		<title>MC-15 Cri-Cri/info</title>
		<link rel="alternate" type="text/html" href="https://wiki.flightgear.org/w/index.php?title=MC-15_Cri-Cri/info&amp;diff=139401"/>
		<updated>2024-03-15T14:21:17Z</updated>

		<summary type="html">&lt;p&gt;D-ECHO: Add infobox for MC-15&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Infobox Aircraft|name=MC-15 Cri-Cri|hangar=fgaddon|type=Civil aircraft/Aerobatic aircraft/Light aircraft/Sport aircraft|config=Low wing aircraft/Tractor aircraft/Fixed gear aircraft/|propulsion=Twin-engine piston aircraft|manufacturer=Michel Colomban|author1=Bea Wolf (D-ECHO)|fdm=JSBSim|fgname=MC-15|aircraft=mc-15}}&lt;/div&gt;</summary>
		<author><name>D-ECHO</name></author>
	</entry>
</feed>