2015-07-24 17:37:16 +00:00
<?xml version="1.0"?>
2008-12-31 16:25:45 +00:00
<PropertyList >
2015-07-24 17:37:16 +00:00
<name > Taxiing</name>
<description >
2008-12-31 16:25:45 +00:00
This tutorial covers moving the aircraft around on the ground, from the parking position to the run-up area.
2014-01-12 19:57:27 +00:00
2008-12-31 16:25:45 +00:00
For more information on taxiing, see Section 2-9 of the FAA Airplane Flying Handbook available at http://www.faa.gov/library/manuals/aircraft/airplane_handbook/.
2015-07-24 17:37:16 +00:00
</description>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<audio-dir > Tutorials/taxiing</audio-dir>
<timeofday > morning</timeofday>
<presets >
<airport-id > KLVK</airport-id>
<on-ground > 1</on-ground>
<runway > 12</runway>
<altitude-ft > -9999</altitude-ft>
<latitude-deg > 37.6952</latitude-deg>
<longitude-deg > -121.8167</longitude-deg>
<heading-deg > 175.0</heading-deg>
<airspeed-kt > 0</airspeed-kt>
<glideslope-deg > 0</glideslope-deg>
<offset-azimuth-deg > 0</offset-azimuth-deg>
<offset-distance-nm > 0</offset-distance-nm>
</presets>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<targets >
<j1 >
<!-- Turn right onto taxiway -->
<longitude-deg > -121.81664</longitude-deg>
<latitude-deg > 37.6949</latitude-deg>
</j1>
<j2 >
<!-- Mention differential braking -->
<longitude-deg > -121.82258</longitude-deg>
<latitude-deg > 37.6949</latitude-deg>
</j2>
<j3 >
<!-- Left turn in taxiway -->
<longitude-deg > -121.8250</longitude-deg>
<latitude-deg > 37.69498</latitude-deg>
</j3>
<a1 >
<!-- Right turn onto taxiway A -->
<longitude-deg > -121.8251</longitude-deg>
<latitude-deg > 37.694616</latitude-deg>
</a1>
<a2 >
<!-- Runup aread -->
<longitude-deg > -121.8294</longitude-deg>
<latitude-deg > 37.69459</latitude-deg>
</a2>
</targets>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<init >
<set >
2016-02-10 21:32:19 +00:00
<property > /sim/model/c172p/brake-parking</property>
2015-07-24 17:37:16 +00:00
<value > 1</value>
</set>
<set >
<property > /controls/flight/flaps</property>
<value > 0.0</value>
</set>
<set >
<property > /controls/switches/magnetos</property>
<value > 3</value>
</set>
<set >
<property > /controls/engines/current-engine/throttle</property>
<value > 0.2</value>
</set>
<set >
<property > /controls/switches/starter</property>
<value > true</value>
</set>
<set >
<property > /instrumentation/adf/frequencies/selected-khz</property>
<value > 340</value>
</set>
<set >
<property > /environment/weather-scenario</property>
<value > Fair weather</value>
</set>
<set >
<property > /controls/flight/elevator-trim</property>
<value > 0.17</value>
</set>
</init>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<step >
<message > In this lesson we'll taxi the aircraft from its parking position infront of the FBO,
along taxiways Juliet and Alpha to the run-up area near runway 07L.</message>
<nasal >
<script >
# Script to simulate holding down the starter button until the engine starts
var starter = func() {
setprop("/controls/switches/starter", 1);
if (!getprop("/engines/active-engine/running")) {
settimer(starter, 0);
}
};
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
# The FDM resets the starter property on each FDM cycle. By effectively starting
# a number of threads to continually keep setting the starter to true, we can
# get around this and give the engine the opportunity to catch.
starter();
starter();
starter();
starter();
starter();
</script>
</nasal>
</step>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<step >
<set >
<property > /controls/switches/starter</property>
<value > false</value>
</set>
<message > I've already started the engine. Press Shift-B to release the parking brake. Throttle up to about
20% to move forward slightly, then hold b to check that the normal brakes work.</message>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<error >
<message > The parking brake is still on. Release it by pressing Shift-B.</message>
<condition >
<equals >
2016-02-10 21:32:19 +00:00
<property > /sim/model/c172p/brake-parking</property>
2015-07-24 17:37:16 +00:00
<value > 1</value>
</equals>
</condition>
</error>
<error >
<message > Throttle up to about 20% to move forward slightly.</message>
<condition >
<and >
<equals >
2016-02-10 21:32:19 +00:00
<property > /sim/model/c172p/brake-parking</property>
2015-07-24 17:37:16 +00:00
<value > 0</value>
</equals>
<less-than >
<property > /controls/engines/current-engine/throttle</property>
<value > 0.15</value>
</less-than>
</and>
</condition>
</error>
<error >
<message > Apply the brakes by pressing b.</message>
<condition >
<and >
<equals >
2016-02-10 21:32:19 +00:00
<property > /sim/model/c172p/brake-parking</property>
2015-07-24 17:37:16 +00:00
<value > 0</value>
</equals>
<equals >
<property > /controls/gear/brake-left</property>
<value > 0</value>
</equals>
<equals >
<property > /controls/gear/brake-left</property>
<value > 0</value>
</equals>
</and>
</condition>
</error>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<exit >
<condition >
<and >
<equals >
2016-02-10 21:32:19 +00:00
<property > /sim/model/c172p/brake-parking</property>
2015-07-24 17:37:16 +00:00
<value > 0</value>
</equals>
<equals >
<property > /controls/gear/brake-left</property>
<value > 1</value>
</equals>
<equals >
<property > /controls/gear/brake-left</property>
<value > 1</value>
</equals>
</and>
</condition>
</exit>
</step>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<step >
<message > Keep applying the brakes. You can steer the aircraft on the ground by either using 0/Enter on the
numeric keypad, or using the mouse in yoke mode (+) with the left mouse button held down. If you need to slow
down, just press b to apply the brakes.</message>
<wait > 10</wait>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<error >
<message > Keep the brakes on until I tell you to start taxiing.</message>
<condition >
<or >
<equals >
<property > /controls/gear/brake-left</property>
<value > 0</value>
</equals>
<equals >
<property > /controls/gear/brake-left</property>
<value > 0</value>
</equals>
</or>
</condition>
</error>
</step>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<step >
<message > Release the brakes and taxi forwards. You may need to apply a little throttle to get going. Make a right turn onto taxiway Juliet.</message>
<wait > 5</wait>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<error >
<message > That's left, not right.</message>
<condition >
<or >
<less-than >
<property > /sim/tutorials/targets/j2/direction-deg</property>
<value > -135.0</value>
</less-than>
<greater-than >
<property > /sim/tutorials/targets/j2/direction-deg</property>
<value > 135.0</value>
</greater-than>
</or>
</condition>
</error>
<error >
<message > Apply a little throttle to get going, but then reduce it once you're moving.</message>
<condition >
<less-than >
<property > /velocities/groundspeed-kt</property>
<value > 1.0</value>
</less-than>
</condition>
</error>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<exit >
<condition >
<and >
<less-than >
<property > /sim/tutorials/targets/j2/direction-deg</property>
<value > 20.0</value>
</less-than>
<greater-than >
<property > /sim/tutorials/targets/j2/direction-deg</property>
<value > -20.0</value>
</greater-than>
</and>
</condition>
</exit>
</step>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<step >
<message > Continue taxiing along taxiway Juliet. Keep the nosewheel on the yellow line. Don't allow the aircraft to go too fast - use b to brake if you need to. </message>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<error >
<message >
2008-12-31 16:25:45 +00:00
You're straying off the taxiway. Keep heading on taxiway Juliet, keeping your nosewheel on the yellow line.
2015-07-24 17:37:16 +00:00
</message>
<condition >
<or >
<less-than >
<property > /sim/tutorials/targets/j2/direction-deg</property>
<value > -20.0</value>
</less-than>
<greater-than >
<property > /sim/tutorials/targets/j2/direction-deg</property>
<value > 20.0</value>
</greater-than>
</or>
</condition>
</error>
<error >
<message > You're going too fast. Reduce your throttle slightly and apply your brakes.</message>
<condition >
<greater-than >
<property > /velocities/groundspeed-kt</property>
<value > 10.0</value>
</greater-than>
</condition>
</error>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<exit >
<condition >
<less-than >
<property > /sim/tutorials/targets/j2/distance-m</property>
<value > 150.0</value>
</less-than>
</condition>
</exit>
</step>
<step >
<message > If you need to turn very tightly, you can apply differential braking, and only brake one wheel, by pressing ',' for the left, or '.' for the right.</message>
<error >
<message >
2008-12-31 16:25:45 +00:00
You're straying off the taxiway. Keep your nosewheel on the yellow line.
2015-07-24 17:37:16 +00:00
</message>
<condition >
<or >
<less-than >
<property > /sim/tutorials/targets/j3/direction-deg</property>
<value > -20.0</value>
</less-than>
<greater-than >
<property > /sim/tutorials/targets/j3/direction-deg</property>
<value > 20.0</value>
</greater-than>
</or>
</condition>
</error>
<error >
<message > You're going too fast. Reduce your throttle slightly and apply your brakes.</message>
<condition >
<greater-than >
<property > /velocities/groundspeed-kt</property>
<value > 10.0</value>
</greater-than>
</condition>
</error>
<exit >
<condition >
<less-than >
<property > /sim/tutorials/targets/j3/distance-m</property>
<value > 100.0</value>
</less-than>
</condition>
</exit>
</step>
<step >
<message > The taxiway turns left here. Slow down by applying some brakes (b) and follow it round.</message>
<error >
<message > You're straying off the taxiway. Turn left.</message>
<condition >
<or >
<less-than >
<property > /sim/tutorials/targets/a1/direction-deg</property>
<value > -45.0</value>
</less-than>
<greater-than >
<property > /sim/tutorials/targets/a1/direction-deg</property>
<value > 45.0</value>
</greater-than>
</or>
</condition>
</error>
<exit >
<condition >
<less-than >
<property > /sim/tutorials/targets/a1/distance-m</property>
<value > 25.0</value>
</less-than>
</condition>
</exit>
</step>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<step >
<message > We're now at the intersection of taxiways Juliet, Golf and Alpha. Turn right onto taxiway Alpha.</message>
<error >
<message > That's left, not right.</message>
<condition >
<or >
<less-than >
<property > /sim/tutorials/targets/a2/direction-deg</property>
<value > -135.0</value>
</less-than>
<greater-than >
<property > /sim/tutorials/targets/a2/direction-deg</property>
<value > 135.0</value>
</greater-than>
</or>
</condition>
</error>
2014-01-12 19:57:27 +00:00
2015-07-24 17:37:16 +00:00
<exit >
<condition >
<and >
<less-than >
<property > /sim/tutorials/targets/a2/direction-deg</property>
<value > 20.0</value>
</less-than>
<greater-than >
<property > /sim/tutorials/targets/a2/direction-deg</property>
<value > -20.0</value>
</greater-than>
</and>
</condition>
</exit>
</step>
2008-12-31 16:25:45 +00:00
2015-07-24 17:37:16 +00:00
<step >
<message > Continue taxiing along taxiway Alpha to the end of the taxiway. </message>
<error >
<message >
2008-12-31 16:25:45 +00:00
You're straying off the taxiway. Keep heading on taxiway Alpha, keeping your nosewheel on the yellow line.
2015-07-24 17:37:16 +00:00
</message>
<condition >
<or >
<less-than >
<property > /sim/tutorials/targets/a2/direction-deg</property>
<value > -15.0</value>
</less-than>
<greater-than >
<property > /sim/tutorials/targets/a2/direction-deg</property>
<value > 15.0</value>
</greater-than>
</or>
</condition>
</error>
<exit >
<condition >
<less-than >
<property > /sim/tutorials/targets/a2/distance-m</property>
<value > 60.0</value>
</less-than>
</condition>
</exit>
</step>
<step >
<message > We've reached the run-up area. Brake slowly to a stop and set the parking brake (shift-b).</message>
<exit >
<condition >
<equals >
2016-02-10 21:32:19 +00:00
<property > /sim/model/c172p/brake-parking</property>
2015-07-24 17:37:16 +00:00
<value > 1</value>
</equals>
</condition>
</exit>
</step>
2008-12-31 16:25:45 +00:00
2015-07-24 17:37:16 +00:00
<end >
<message > We've reached the run-up area. Well done.</message>
</end>
2014-01-12 19:57:27 +00:00
2008-12-31 16:25:45 +00:00
</PropertyList>