-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathA380-set.xml
1537 lines (1433 loc) · 48.5 KB
/
A380-set.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<!--
This is the Airbus A380 double-deck wide body subsonic general passenger transport aircraft.
Modification History:
When Who What
2008 KAmpere Initial version
2008 Innis Cunningham Fuselage model
2008 KAmpere updated model, electrical, hydaulic
2008 FDalvi update livery and model
2009 SHamilton Added fuel tanks and cockpit interactions
2009 FDalvi lot's of new stuff
2009 SHamilton AFS, FMS, Flight Guidance, Doors, weight and other stuff
2009 SHamilton MFD, STAR/SID, updated PFD, Pre-flight Tutorial
2010 SHamilton Electrical system
2011 SHamilton added AFS, autobrake
-->
<PropertyList>
<sim>
<description>Airbus A380</description>
<aircraft-version>1.2</aircraft-version>
<author>Ampere.K, I.Cunningham, F.Dalvi, S.Hamilton, et al</author>
<status>production</status>
<rating>
<FDM type="int">4</FDM>
<systems type="int">4</systems>
<cockpit type="int">4</cockpit>
<model type="int">4</model>
</rating>
<flight-model>jsb</flight-model>
<livery>Aircraft/A380/Textures/Livery/House</livery>
<aero>A380_RJ</aero>
<startup>
<splash-texture>Aircraft/A380/a380-splash.png</splash-texture>
</startup>
<systems>
<!-- autopilot>
<name>A380 custom</name>
<path>Aircraft/A380/A380-autopilot.xml</path>
</autopilot -->
<autopilot>
<name>A380 custom V2</name>
<path>Aircraft/A380/A380-autopilot_v1.xml</path>
</autopilot>
<autopilot>
<name>ecs</name>
<path>Aircraft/A380/Systems/CabinPressureSystem.xml</path>
</autopilot>
<autopilot>
<name>autobrake</name>
<path>Aircraft/A380/Systems/autobrake.xml</path>
</autopilot>
<autopilot>
<name>helper</name>
<path>Aircraft/Generic/generic-autopilot-helper.xml</path>
</autopilot>
<!--Modified by Ampere-->
<!-- electrical>
<path>Aircraft/A380/Systems/Electrical/electrical.xml</path>
</electrical -->
<hydraulical>
<path>Aircraft/A380/Systems/Hydraulical/hydraulics.xml</path>
</hydraulical>
<!--End modifications -->
<electrical>
<path>Aircraft/A380/Systems/Electrical/A380-electrical.xml</path>
</electrical>
</systems>
<sound>
<path>Aircraft/A380/Sounds/A380-sound.xml</path>
<audible>true</audible>
</sound>
<model>
<path>Aircraft/A380/XML/A380.xml</path>
<livery>
<file type="string">House</file>
</livery>
<pushback>
<kp type="double">900</kp>
<ki type="double">100</ki> <!-- was 25 -->
<kd type="double">0</kd>
<target-speed-fps>0</target-speed-fps>
<position-norm type="double">0</position-norm>
</pushback>
<door>
<position-x-m type="float">13.136</position-x-m>
<position-y-m type="float">5.0626</position-y-m>
<position-z-m type="float">2.9947</position-z-m>
<jetway-hood-deg type="float">9</jetway-hood-deg>
</door>
<door>
<position-x-m type="float">23.359</position-x-m>
<position-y-m type="float">4.928</position-y-m>
<position-z-m type="float">3.706</position-z-m>
<jetway-hood-deg type="float">9</jetway-hood-deg>
</door>
<door>
<position-x-m type="float">27.978</position-x-m>
<position-y-m type="float">7.353</position-y-m>
<position-z-m type="float">3.454</position-z-m>
<jetway-hood-deg type="float">5</jetway-hood-deg>
</door>
</model>
<view n="0">
<name>Captain Cockpit</name>
<type>lookfrom</type>
<internal type="bool">true</internal>
<config>
<!-- x-offset-m type="double">-0.558</x-offset-m>
<y-offset-m type="double">-1.66</y-offset-m>
<z-offset-m type="double">-19.43</z-offset-m -->
<x-offset-m type="double">-3.2</x-offset-m>
<y-offset-m type="double">4.29</y-offset-m>
<z-offset-m type="double">-1.77</z-offset-m>
<pitch-offset-deg>-5.73</pitch-offset-deg>
<default-field-of-view-deg type="double">82.0</default-field-of-view-deg>
</config>
</view>
<view n="1">
<config>
<z-offset-m archive="y" type="double">-100.0</z-offset-m>
<default-field-of-view-deg type="double">60</default-field-of-view-deg>
</config>
</view>
<view n="2">
<config>
<z-offset-m archive="y" type="double">-100.0</z-offset-m>
<default-field-of-view-deg type="double">62</default-field-of-view-deg>
<pitch-offset-deg>5.5</pitch-offset-deg>
</config>
</view>
<view n="5">
<config>
<z-offset-m archive="y" type="double">-100.0</z-offset-m>
</config>
</view>
<view n="100">
<name>Passenger Upper View</name>
<type>lookfrom</type>
<internal archive="y">true</internal>
<config>
<from-model type="bool">true</from-model>
<from-model-idx type="int">0</from-model-idx>
<ground-level-nearplane-m type="double">0.01f</ground-level-nearplane-m>
<default-field-of-view-deg type="double">97</default-field-of-view-deg>
<pitch-offset-deg>-20.55</pitch-offset-deg>
<heading-offset-deg type="double">307.68</heading-offset-deg> <!-- parallel to the panel -->
<x-offset-m archive="y"> 2.6223 </x-offset-m> <!-- Left/Right -->
<y-offset-m archive="y"> -0.10 </y-offset-m> <!-- Up/Down -->
<z-offset-m archive="y"> 0.8602 </z-offset-m> <!-- Fdw/Back -->
</config>
</view>
<view n="101">
<name>Passenger Lower View</name>
<type>lookfrom</type>
<internal archive="y">true</internal>
<config>
<from-model type="bool">true</from-model>
<from-model-idx type="int">0</from-model-idx>
<ground-level-nearplane-m type="double">0.01f</ground-level-nearplane-m>
<default-field-of-view-deg type="double">107</default-field-of-view-deg>
<pitch-offset-deg>-17.184</pitch-offset-deg>
<heading-offset-deg type="double">96.97</heading-offset-deg> <!-- parallel to the panel -->
<x-offset-m archive="y"> -3.205 </x-offset-m> <!-- Left/Right -->
<y-offset-m archive="y"> -2.60 </y-offset-m> <!-- Up/Down -->
<z-offset-m archive="y"> 13.701 </z-offset-m> <!-- Fdw/Back -->
</config>
</view>
<view n="102">
<name>First Officer</name>
<type>lookfrom</type>
<internal type="bool">true</internal>
<config>
<from-model type="bool">true</from-model>
<from-model-idx type="int">0</from-model-idx>
<!-- ground-level-nearplane-m type="double">6f</ground-level-nearplane-m -->
<x-offset-m type="double">0.55</x-offset-m> <!-- 0.55 -->
<y-offset-m type="double">-1.66</y-offset-m> <!-- 3.75 / -1.55 -->
<z-offset-m type="double">-19.50</z-offset-m> <!-- -23.15 -->
<pitch-offset-deg>-10</pitch-offset-deg> <!-- -15 -->
<default-field-of-view-deg type="double">96.0</default-field-of-view-deg> <!-- 70.0 -->
<heading-offset-deg type="double">358.0</heading-offset-deg>
</config>
<dynamic>
<enabled type="bool">false</enabled>
</dynamic>
</view>
<view n="103">
<name>jump seat</name>
<enabled type="bool">false</enabled>
<type>lookfrom</type>
<config>
<from-model type="bool">true</from-model>
<from-model-idx type="int">0</from-model-idx>
<x-offset-m type="double"> -0.0 </x-offset-m>
<y-offset-m type="double"> -1.5 </y-offset-m>
<z-offset-m type="double"> -18.5 </z-offset-m>
<pitch-offset-deg>-10.2</pitch-offset-deg>
<default-field-of-view-deg type="double">75.0</default-field-of-view-deg>
<heading-offset-deg type="double">0.0</heading-offset-deg>
</config>
<dynamic>
<enabled type="bool">false</enabled>
</dynamic>
</view>
<chase-distance-m>-100</chase-distance-m> <!-- -75 -->
<flaps>
<setting>0.000</setting> <!-- flaps up -->
<setting>0.2424</setting>
<setting>0.5151</setting>
<setting>0.7878</setting>
<setting>1.000</setting>
</flaps>
<spoilers>
<setting>0.00</setting>
<setting>0.16</setting>
<setting>0.30</setting>
<setting>0.60</setting>
<setting>1.00</setting>
</spoilers>
<limits>
<max-flap-extension-speed>
<flaps>0.0001</flaps>
<speed>263</speed>
</max-flap-extension-speed>
<max-flap-extension-speed>
<flaps>0.2424</flaps>
<speed>220</speed>
</max-flap-extension-speed>
<max-flap-extension-speed>
<flaps>0.5151</flaps>
<speed>210</speed>
</max-flap-extension-speed>
<max-flap-extension-speed>
<flaps>0.7878</flaps>
<speed>196</speed>
</max-flap-extension-speed>
<max-flap-extension-speed>
<flaps>1.000</flaps>
<speed>182</speed>
</max-flap-extension-speed>
<vne>590</vne>
<max-gear-extension-speed>270</max-gear-extension-speed>
<max-positive-g>5.4</max-positive-g>
<max-negative-g>-2.76</max-negative-g>
</limits>
<!-- sound>
<path>Aircraft/A380/Sounds/A380-sound.xml</path>
<switch type = "bool"></switch>
</sound -->
<hud>
<enable3d>false</enable3d>
</hud>
<virtual-cockpit archive="y">true</virtual-cockpit>
<allow-toggle-cockpit>true</allow-toggle-cockpit>
<help>
<title>A380</title>
<key>
<name>Delete</name>
<desc>toggle thrust reversers</desc>
</key>
<key>
<name>Ctrl-b</name>
<desc>toggle speed brakes</desc>
</key>
<key>
<name>Ctrl-e</name>
<desc>Toggle external ground power connection</desc>
</key>
<key>
<name>k</name>
<desc>increase spoiler</desc>
</key>
<key>
<name>j</name>
<desc>decrease spoilers</desc>
</key>
<key>
<name>Shift-PG UP</name>
<desc>Increments the A/THR detent on the thrust levers</desc>
</key>
<key>
<name>Shift-PG DWN</name>
<desc>Decrements the A/THR detent on the thrust levers</desc>
</key>
<key>
<name>TAB</name>
<desc>Cycles the auto-brake settings. At startup it is at 5 (full)</desc>
</key>
<key>
<name>d</name>
<desc>Forward cargo door</desc>
</key>
<key>
<name>D</name>
<desc>Aft cargo door</desc>
</key>
<key>
<name>! (shift+1)</name>
<desc>Pax Lower Left door 1</desc>
</key>
<key>
<name>@ (shift+2)</name>
<desc>Pax Upper Left door 1</desc>
</key>
<key>
<name># (shift+3)</name>
<desc>Pax Lower Right door 1</desc>
</key>
<key>
<name>$ (shift+4)</name>
<desc>Pax Upper Right door 1</desc>
</key>
<key>
<name>% (shift+5)</name>
<desc>Pax Lower Left door 2</desc>
</key>
<key>
<name>^ (shift+6)</name>
<desc>Pax Lower Right door 2</desc>
</key>
<!-- Walk -->
<key n="114">
<name>w</name>
<desc>Walk forward toward view</desc>
<repeatable type="bool">true</repeatable>
<binding>
<command>nasal</command>
<script>
walk.walk_about(0.1);
</script>
</binding>
</key>
<key n="82">
<name>R</name>
<desc>Run forward toward view</desc>
<repeatable type="bool">true</repeatable>
<binding>
<command>nasal</command>
<script>
walk.walk_about(0.25);
</script>
</binding>
</key>
<key n="102">
<name>W</name>
<desc>Walk backward from view</desc>
<repeatable type="bool">true</repeatable>
<binding>
<command>nasal</command>
<script>
walk.walk_about(-0.1);
</script>
</binding>
</key>
<text>
Use the mouse scrollwheel to increment and decrement dial values. Use the tutorial to understand all the major areas of the cockpit.
On the AFS CP, the SPD, ALT, V/S and HDG dials operate in two modes, either "managed" or "selected". To pull the knob for "selected" mode use the middle mouse button. To push the knob for "managed" mode, use the normal (left) mouse button.
To start the engines, the APU must be started and running on the overhead panel, check the ECAM page.
Turn the engine switch to IGN/START and then switch the ENGINE MASTER switches on the pedestal one at a time, after N2 reaches atleast 18% for each.
There are 4 thrust detents by pressing SHIFT+Page-Up and SHIFT+Page-Down that will enable A/THR. The detents are;
* Idle
* CL
* Flex
* TOGA
Use Flex for normal take-off conditions with reduced thrust (up to around 500 000kg gross depending on runway length), use TOGA for heavy, short or wet conditions. SRS will automatically be enabled if using Flex or TOGA after the gear is retracted according to current flap configuration. If using thrust detents, managed modes should be enabled for SPD, ALT and V/S, all remaining phases will be managed. Reduce thrust to CL detent after REDUCE ALT (generally 1500 ft or as entered in MFD under T.O. Perf page) or on EGT OVERLIMIT. Ensure flaps are retracted before ACCEL ALT (5500ft or as entered in MFD under T.O. Perf page).
If you use the "managed" ALT mode, you must ensure the CRZ FL is set on the MFD and preferably enter the SID and STAR routes in the MFD Flight Plan before take-off and double-check the AP route manager for correct route and altitude settings. You can download SID/STAR files in 'Level-D 767' format, see the README file under the FMS/ directory.
The A380 Aircraft is released under GPL as part of the FlightGear.org project.
</text>
</help>
<rendering>
<line-smooth type="bool">true</line-smooth>
<point-sprite type="bool">true</point-sprite>
</rendering>
<tutorials include="A380-tutorial.xml"/>
<menubar>
<default>
<menu n="10">
<label>A380</label>
<enabled type="bool">true</enabled>
<!-- item>
<label>Autostart</label>
<binding>
<command>property-toggle</command>
<property>sim/model/start-idling</property>
</binding>
</item -->
<item>
<label>Contrails</label>
<binding>
<command>property-toggle</command>
<property>ai/submodels/contrails</property>
</binding>
</item>
<item>
<label>Map Lights</label>
<binding>
<command>property-toggle</command>
<property>controls/switches/storm</property>
</binding>
</item>
<item>
<label>Panel Lights</label>
<binding>
<command>property-toggle</command>
<property>controls/switches/panel-lights</property>
</binding>
</item>
<item>
<label>Cabin Lights</label>
<binding>
<command>property-toggle</command>
<property>controls/lighting/cabin-lights</property>
</binding>
</item>
<item>
<label>Select Livery</label>
<binding>
<command>nasal</command>
<script>aircraft.livery.dialog.toggle()</script>
</binding>
</item>
</menu>
<menu n="5">
<item n="10">
<label>Pushback</label>
<name>pushback</name>
<binding>
<command>dialog-show</command>
<dialog-name>pushback</dialog-name>
</binding>
</item>
</menu>
</default>
</menubar>
<instrumentation>
<path>Aircraft/A380/Systems/instrumentation.xml</path>
</instrumentation>
</sim>
<payload>
<weight n="0">
<name>Crew</name>
<weight-lb alias="/fdm/jsbsim/inertia/pointmass-weight-lbs[0]">350</weight-lb>
<max-lb>500</max-lb>
<min-lb>350</min-lb>
</weight>
<weight n="1">
<!-- 538 pax max @ 180 lbs-->
<name>Pax Main</name>
<weight-lb alias="/fdm/jsbsim/inertia/pointmass-weight-lbs[1]">48420</weight-lb>
<max-lb>96840</max-lb>
<min-lb>0</min-lb>
</weight>
<weight n="2">
<!-- 315 pax max @ 180 lbs-->
<name>Pax Upper</name>
<weight-lb alias="/fdm/jsbsim/inertia/pointmass-weight-lbs[2]">28350</weight-lb>
<max-lb>56700</max-lb>
<min-lb>0</min-lb>
</weight>
<weight n="3">
<name>Cargo Forward</name>
<weight-lb alias="/fdm/jsbsim/inertia/pointmass-weight-lbs[3]">31500</weight-lb>
<max-lb>63000</max-lb>
<min-lb>0</min-lb>
</weight>
<weight n="4">
<name>Cargo Aft</name>
<weight-lb alias="/fdm/jsbsim/inertia/pointmass-weight-lbs[4]">22387</weight-lb>
<max-lb>44775</max-lb>
<min-lb>0</min-lb>
</weight>
<weight n="5">
<name>Cargo Bulk</name>
<weight-lb alias="/fdm/jsbsim/inertia/pointmass-weight-lbs[5]">1200</weight-lb>
<max-lb>5540</max-lb>
<min-lb>0</min-lb>
</weight>
</payload>
<engines>
<engine n="0">
<running>false</running>
<rpm>1000</rpm>
</engine>
<engine n="1">
<running>false</running>
<rpm>1000</rpm>
<reverser-position type="double">0.000000</reverser-position>
</engine>
<engine n="2">
<running>false</running>
<rpm>1000</rpm>
<reverser-position type="double">0.000000</reverser-position>
</engine>
<engine n="3">
<running>false</running>
<rpm>1000</rpm>
</engine>
<!-- APU engine -->
<engine n="4">
<running type="bool">false</running>
<throttle>0</throttle>
<off-start-run type="int">0</off-start-run>
<rpm>1000</rpm>
</engine>
</engines>
<aircraft>
<jetway-pos>
<x-tra>-2</x-tra>
<y-rot>2</y-rot>
<z-rot>18</z-rot>
<hood-rot>0</hood-rot>
</jetway-pos>
<jetway2-pos>
<x-tra>2.5</x-tra>
<y-rot>2.5</y-rot>
<z-rot>45</z-rot>
<hood-rot>0</hood-rot>
</jetway2-pos>
<jetway3-pos>
<x-tra>4</x-tra>
<y-rot>5</y-rot>
<z-rot>47</z-rot>
<hood-rot>3</hood-rot>
</jetway3-pos>
</aircraft>
<autopilot>
<autobrake>
<step type="int">-1</step> <!-- OFF on selection -->
<config>
<idle-throttle type="double">0.10</idle-throttle>
<pilot-input type="double">0.25</pilot-input> <!-- 25% input cancel AB operation -->
</config>
</autobrake>
<locks>
<pitch-engaged type="bool">1</pitch-engaged>
<roll-engaged type="bool">1</roll-engaged>
</locks>
<internal>
<stage1-ki type="double">0.000</stage1-ki> <!-- 0.001 -->
<stage1-kp type="double">0.001</stage1-kp> <!-- 0.01 -->
<stage1-td type="double">0.1</stage1-td>
<stage1-ti type="double">10</stage1-ti>
<stage2-ki type="double">0.0000</stage2-ki> <!-- 0.000 -->
<stage2-kp type="double">0.001</stage2-kp> <!-- -0.0025 -->
<stage2-td type="double">0.1</stage2-td> <!-- 0.00002 -->
<stage2-ti type="double">40</stage2-ti> <!-- 20.0 -->
<test-speed-trend-kt type="double">0.0</test-speed-trend-kt>
<test-speed-trend-norm type="double">0.0</test-speed-trend-norm>
</internal>
</autopilot>
<!--autopilot>
<path>Aircraft/Instruments/afdr-a320.xml</path>
</autopilot -->
<input>
<keyboard>
<key n="5">
<name>CTRL-E</name>
<desc>Toggle connection of ground external power</desc>
<binding>
<command>nasal</command>
<script>A380.toggleExternalServices()</script>
</binding>
</key>
<key n="127">
<name>Delete</name>
<desc>Toggle Reversers</desc>
<binding>
<command>nasal</command>
<script>reversethrust.togglereverser()</script>
</binding>
</key>
<key n="40">
<name>[</name>
<desc>Decrease flaps</desc>
<binding>
<command>nasal</command>
<script>controls.flapsDown(-1)</script>
</binding>
<mod-up>
<binding>
<command>nasal</command>
<script>controls.flapsDown(0)</script>
</binding>
</mod-up>
</key>
<key n="41">
<name>]</name>
<desc>Increase flaps</desc>
<binding>
<command>nasal</command>
<script>controls.flapsDown(1)</script>
</binding>
<mod-up>
<binding>
<command>nasal</command>
<script>controls.flapsDown(0)</script>
</binding>
</mod-up>
</key>
<key n="106">
<name>j</name>
<desc>Decrease spoilers</desc>
<binding>
<command>nasal</command>
<script>A380.stepSpeedbrake(-1)</script>
</binding>
</key>
<key n="107">
<name>k</name>
<desc>Increase spoilers</desc>
<binding>
<command>nasal</command>
<script>A380.stepSpeedbrake(1)</script>
</binding>
</key>
<!-- key n="101">
<name>e</name>
<desc>Cycle cockpit location - Stand up, walk around, sit down</desc>
<binding>
<command>nasal</command>
<script>walk.cycle_cockpit(1)</script>
</binding>
</key>
<key n="69">
<name>E</name>
<desc>Cycle cockpit location - Return to cockpit</desc>
<binding>
<command>nasal</command>
<script>walk.cycle_cockpit(10)</script>
</binding>
</key -->
<key n="119">
<name>w</name>
<desc>Walk forward toward view</desc>
<repeatable>true</repeatable>
<binding>
<command>nasal</command>
<script>walk.walk_about(0.1)</script>
</binding>
</key>
<key n="87">
<name>W</name>
<desc>Walk backward from view</desc>
<repeatable>true</repeatable>
<binding>
<command>nasal</command>
<script>walk.walk_about(-0.1)</script>
</binding>
</key>
<key n="68">
<name>D</name>
<desc>Aft Cargo door</desc>
<binding>
<command>nasal</command>
<script>DOORS.doorsystem.aftCargo()</script>
</binding>
</key>
<key n="100">
<name>d</name>
<desc>Forward Cargo door</desc>
<binding>
<command>nasal</command>
<script>DOORS.doorsystem.forwardCargo()</script>
</binding>
</key>
<key n="33">
<name>!</name>
<desc>Pax Left Lower door 1</desc>
<binding>
<command>nasal</command>
<script>DOORS.doorsystem.paxLeftLow1()</script>
</binding>
</key>
<key n="64">
<name>@</name>
<desc>Pax Left Upper door 1</desc>
<binding>
<command>nasal</command>
<script>DOORS.doorsystem.paxLeftUp1()</script>
</binding>
</key>
<key n="35">
<name>#</name>
<desc>Pax Right Lower door 1</desc>
<binding>
<command>nasal</command>
<script>DOORS.doorsystem.paxRightLow1()</script>
</binding>
</key>
<key n="36">
<name>$</name>
<desc>Pax Right Upper door 1</desc>
<binding>
<command>nasal</command>
<script>DOORS.doorsystem.paxRightUp1()</script>
</binding>
</key>
<key n="37">
<name>%</name>
<desc>Pax Left Lower door 2</desc>
<binding>
<command>nasal</command>
<script>DOORS.doorsystem.paxLeftLow2()</script>
</binding>
</key>
<key n="94">
<name>^</name>
<desc>Pax Right Lower door 2</desc>
<binding>
<command>nasal</command>
<script>DOORS.doorsystem.paxRightLow2()</script>
</binding>
</key>
<key n="9">
<name>Tab</name>
<desc>switch autobrake</desc>
<binding>
<command>property-cycle</command>
<property>/controls/gear/autobrakes</property>
<value>0</value>
<value>1</value>
<value>2</value>
<value>3</value>
<value>4</value>
<value>5</value>
</binding>
</key>
<key n="360">
<name>PAGEUP</name>
<desc>Increments Thrust</desc>
<binding>
<command>nasal</command>
<script>FCU.adjust_thrust(1)</script>
</binding>
<mod-shift>
<desc>Increments Thrust detent</desc>
<binding>
<command>nasal</command>
<script>FCU.toggle_thrust_detent(1)</script>
</binding>
</mod-shift>
</key>
<key n="361">
<name>PAGEDN</name>
<desc>Decrements Thrust</desc>
<binding>
<command>nasal</command>
<script>FCU.adjust_thrust(-1)</script>
</binding>
<mod-shift>
<desc>Decrements Thrust Detent</desc>
<binding>
<command>nasal</command>
<script>FCU.toggle_thrust_detent(-1)</script>
</binding>
</mod-shift>
</key>
<key n="261">
<name>F5</name>
<repeatable type="bool">true</repeatable>
<mod-shift>
<desc>Reload autopilot configuration</desc>
<binding>
<command>nasal</command>
<script>
fgcommand('reinit', props.Node.new({ subsystem: "xml-autopilot" }));
print("xml-autopilot reinitialized!");
</script>
</binding>
</mod-shift>
</key>
</keyboard>
</input>
<surface-positions>
<speedbrake-pos-norm type="float">0.0</speedbrake-pos-norm>
</surface-positions>
<controls>
<gear>
<autobrakes type="int">0</autobrakes>
<!-- 0=off, 1=1, 2=2, 3=3, 4=MAX, 5=RTO -->
</gear>
<flight>
<CG-trim-fwd type="double">60000</CG-trim-fwd>
<CG-trim-aft type="double">0</CG-trim-aft>
<autospeedbrakes-armed type="bool">true</autospeedbrakes-armed>
<slats type="double" alias="/fdm/jsbsim/fcs/slat-cmd-norm">0.0</slats>
</flight>
<switches>
<panel-lights type="bool">0</panel-lights>
<storm type="bool">0</storm>
<landing-lights type="bool">0</landing-lights>
<taxi-lights type="bool">0</taxi-lights>
<wing-lights type="bool">0</wing-lights>
<nose-light type="double">0.0</nose-light>
<beacon type="bool">0</beacon>
<strobe type="double">0.0</strobe>
<seat-belt type="double">0.0</seat-belt>
<smoking type="double">0.0</smoking>
<nav-lights type="bool">0</nav-lights>
<logo-light type="double">0.0</logo-light>
<logo-lights type="bool">0</logo-lights>
<cabin-lights type="double">0.8</cabin-lights>
<map-lights type="double">0.0</map-lights>
<master-panel type="bool">1</master-panel>
</switches>
<engines>
<engine n="0">
<thrust-lever>0</thrust-lever>
</engine>
<engine n="1">
<thrust-lever>0</thrust-lever>
<starter-sound type="double">0.0</starter-sound>
</engine>
<engine n="2">
<thrust-lever>0</thrust-lever>
</engine>
<engine n="3">
<thrust-lever>0</thrust-lever>
</engine>
</engines>
<electric>
<contact>
<engine_1 type="bool">1</engine_1>
<engine_2 type="bool">1</engine_2>
<engine_3 type="bool">1</engine_3>
<engine_4 type="bool">1</engine_4>
<apu_gen-a type="bool">1</apu_gen-a>
<apu_gen-b type="bool">1</apu_gen-b>
<batt_1 type="bool">1</batt_1>
<batt_2 type="bool">1</batt_2>
<ess_bat type="bool">1</ess_bat>
<apu_bat type="bool">1</apu_bat>
<external_1 type="bool">0</external_1>
<external_2 type="bool">0</external_2>
<external_3 type="bool">0</external_3>
<external_4 type="bool">0</external_4>
<pax_sys type="bool">1</pax_sys>
<galley type="bool">1</galley>
<commercial type="bool">1</commercial>
<bus_tie type="bool">1</bus_tie>
<dc_left_tie type="bool">1</dc_left_tie>
<dc_right_tie type="bool">0</dc_right_tie>
<tr_left_tie type="bool">0</tr_left_tie>
<tr_right_tie type="bool">0</tr_right_tie>
</contact>
<ground>
<external_1 type="bool">0</external_1>
<external_2 type="bool">0</external_2>
<external_3 type="bool">0</external_3>
<external_4 type="bool">0</external_4>
</ground>
</electric>
<pressurization>
<pack>
<hotair-on type="bool">0</hotair-on>
<pack-valve type="float">1.0</pack-valve>
<hotair-valve type="float">1.0</hotair-valve>
<pack-on type="bool">false</pack-on>
</pack>
<pack>
<hotair-on type="bool">0</hotair-on>
<pack-valve type="float">1.0</pack-valve>
<hotair-valve type="float">1.0</hotair-valve>
<pack-on type="bool">false</pack-on>
</pack>
<engine>
<bleed-on type="bool">0</bleed-on>
<hp-valve type="float">0</hp-valve>
<lp-valve type="float">0</lp-valve>
<bleed-psi type="int">0</bleed-psi>
<bleed-degc type="int">0</bleed-degc>
</engine>
<engine>
<bleed-on type="bool">0</bleed-on>
<hp-valve type="float">0</hp-valve>
<lp-valve type="float">0</lp-valve>
<bleed-psi type="int">0</bleed-psi>
<bleed-degc type="int">0</bleed-degc>
</engine>
<engine>
<bleed-on type="bool">0</bleed-on>
<hp-valve type="float">0</hp-valve>
<lp-valve type="float">0</lp-valve>
<bleed-psi type="int">0</bleed-psi>
<bleed-degc type="int">0</bleed-degc>
</engine>
<engine>
<bleed-on type="bool">0</bleed-on>
<hp-valve type="float">0</hp-valve>
<lp-valve type="float">0</lp-valve>
<bleed-psi type="int">0</bleed-psi>
<bleed-degc type="int">0</bleed-degc>
</engine>
<apu>
<bleed-on type="bool">0</bleed-on>
</apu>
</pressurization>
<lighting>
<panel-norm n="0" type="double">0.0</panel-norm>
<panel-norm n="1" type="double">0.0</panel-norm>
</lighting>
</controls>
<instrumentation>
<annunciator>
<master-caution type="bool">0</master-caution>
<atc-inbox type="bool">0</atc-inbox>
</annunciator>
<afs>
<rwy-cat type="string"></rwy-cat>
<approach-radio-lh type="string">VOR</approach-radio-lh>
<approach-radio-rh type="string">VOR</approach-radio-rh>
<appr_conf3 type="bool">1</appr_conf3>
<appr_full type="bool">0</appr_full>
<appr_wind_deg type="int">360</appr_wind_deg>
<appr_wind_kts type="int">00</appr_wind_kts>
<appr_oat type="int">15</appr_oat>
<appr_alt_baro_ft type="int">0</appr_alt_baro_ft>
<appr_alt_radio_ft type="int">0</appr_alt_radio_ft>
<appr_unknown_temp type="int">15</appr_unknown_temp>
<limit-bank-angle-max type="double">30</limit-bank-angle-max>
<limit-bank-angle-min type="double">-30</limit-bank-angle-min>
<flight-control-law type="string">normal</flight-control-law>
<flight-control-mode type="string">ground</flight-control-mode>
<ATC_logon_acft-type type="string">A388</ATC_logon_acft-type>