-
Notifications
You must be signed in to change notification settings - Fork 5
/
do328-300.xml
1931 lines (1781 loc) · 72 KB
/
do328-300.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"?>
<?xml-stylesheet type="text/xsl" href="http://jsbsim.sourceforge.net/JSBSim.xsl"?>
<fdm_config name="Dornier 328-300" version="2.0" release="ALPHA"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://jsbsim.sourceforge.net/JSBSim.xsd">
<fileheader>
<author> Aeromatic v 0.95 </author>
<filecreationdate>2013-07-21</filecreationdate>
<version>$Revision: 1.15 $</version>
<description> Models a Dornier 328-300. </description>
</fileheader>
<!--
File: Dornier 328-300.xml
Inputs:
name: Dornier 328-300
type: multi-engine jet transport
max weight: 30843.54 lb
wing span: 68.8 ft
length: 69.8 ft
wing area: 430.6 sq-ft
gear type: tricycle
retractable?: yes
# engines: 2
engine type: turbine
engine layout: wings
yaw damper? yes
Outputs:
wing loading: 71.63 lb/sq-ft
payload: 3339.3 lbs
CL-alpha: 4.9 per radian
CL-0: 0.24
CL-max: 1.4
CD-0: 0.025
K: 0.039
-->
<!--
SPECS:
Height: 7.24m
Length: 21.11
Wing span: 20.98
Cruise Speed 270 KIAS up to 20000ft
Maximum mach speed 0.59 from 20000 to 31000
MTAS= 335ktn
Landing gear speed 200 KIAS
Flap Design Speed:
12degrees = 200 KIAS = Takeoff/ Approach Climb
20 degrees = 180 KIAS = Landing/ Approach Climb
31 degrees = 160 KIAS = landing
Max level spd: 324 kts
Max TO weight: 30840 lbs
Empty weight: 19670lbs
Range: 1000nm
Service ceiling: 31000ft
Cat II certification
MTOW, flaps 12 degrees, no icing: v2= 133 (?) kt from: http://uk.answers.yahoo.com/question/index?qid=20070125034605AAc90Bd
MTOW, flaps 12 degrees, no icing: Vr= 114kt
12500 kg (27557.78lbs)flaps 12 degrees, no icing condition:V1/vr= 109kt, V2: 113kt from: http://www.skybrary.aero/bookshelf/books/1285.pdf
with ice condition (deice) around 20kt higher according to the source: V1/Vr= 128kt, V2= 129kt
Another possible setting, 11710kg, (25816.13lbs) flaps 12 degrees, V1= 112kt, Vr= 117kt from: http://www.flightglobal.com/pdfarchive/view/1995/1995%20-%203235.html
probaly with icing conditions, without it should/could be: V1= 92 Vr= 97kt ??
Or: 11758.47kg, (25922.98lbs) flaps 12 degrees,OAT = -1 Celsius (icing condition), V1= 112kt, Vr=117kt, V2= 119kt from: http://compair.aviationresearch.com/database_files/TheImage_41.pdf
So no icing it should/could be 92/97/99kt ??
Weight/Vspeeds expected to be linear- here it is not. if it would be linear, than Vr would be at 11700kg = 104kt
Stall speed @max weight clean: 113kt
" " " " flap 32 degrees: 91kt
More stall speeds: http://www.caa.co.uk/docs/1455/SRG_FLT_CFS_284_Issue1_27072006.pdf
Vref= 1,3* Vs (Stall speed landing config)
Approach speed Vref at 11000kg (24250.84lbs)flaps 32: ca. 101kt (condition?) from :http://www.flightglobal.com/news/articles/a-better-pace-setter-21159
http://www.flightglobal.com/pdfarchive/view/1995/1995%20-%203235.html
Approach speed Vref at 12400kg (27337.32lbs)icing condition: 124 kt (so no icing should be 104kt?): BFU Saarbruecken accident
Approach speed Vref at <10500kg (23148.53lbs)icing condition: 115 kt (so no icing should be 95kt?): BFU Bremen Accident
Weight/Vrefs are more or less linear here
Landing Distance MLW (1/0.6): 3524ft/1025m (Landing distance with safety margin)
Landing Distance MLW unfactored (what the aircraft demostrated without any safety margin): 2115ft/645m
-->
<metrics>
<wingarea unit="M2"> 40.000 </wingarea>
<wingspan unit="FT"> 68.8000 </wingspan>
<wing_incidence unit="DEG"> 1.50 </wing_incidence>
<chord unit="FT"> 9.0000 </chord>
<htailarea unit="FT2"> 81.6480 </htailarea>
<htailarm unit="FT"> 37.6141 </htailarm>
<vtailarea unit="FT2"> 104.8608 </vtailarea>
<vtailarm unit="FT"> 33.5977 </vtailarm>
<location name="AERORP" unit="IN">
<x> -86.5 </x>
<y> 0.00 </y>
<z> 84.0</z>
</location>
<location name="EYEPOINT" unit="IN">
<x>317.764 </x>
<y> 28.39 </y>
<z> 95.68 </z>
</location>
<location name="VRP" unit="IN">
<x>0</x>
<y>0</y>
<z>0</z>
</location>
</metrics>
<mass_balance>
<ixx unit="SLUG*FT2"> 74023 </ixx>
<iyy unit="SLUG*FT2"> 91146 </iyy>
<izz unit="SLUG*FT2"> 162013 </izz>
<emptywt unit="LBS" > 20280 </emptywt>
<location name="CG" unit="IN">
<x> -76.5 </x>
<y> 0.00 </y>
<z> 84.0 </z>
</location>
<pointmass name="Payload">
<description> 3339 LBS + full (7834 LBS) fuel should bring model up to entered max weight</description>
<weight unit="LBS">0</weight>
<location name="POINTMASS" unit="IN">
<x> -91.45 </x>
<y> 0.00 </y>
<z> 62.98 </z>
</location>
</pointmass>
<pointmass name="Crew">
<description> Crew</description>
<weight unit="LBS"> 371 </weight>
<location name="POINTMASS" unit="IN">
<x> -312.27 </x>
<y> 0.00 </y>
<z> 62.98 </z>
</location>
</pointmass>
<pointmass name="Cargo">
<description> Cargo</description>
<weight unit="LBS">0 </weight>
<location name="POINTMASS" unit="IN">
<x> 149.89</x>
<y> 0.00 </y>
<z> 73.37 </z>
</location>
</pointmass>
</mass_balance>
<ground_reactions>
<contact type="BOGEY" name="NOSE">
<!--structure by Michael Soitanen, coefficients by Heiko Schulz-->
<location unit="IN">
<x> -343.49 </x>
<y> 0.00 </y>
<z> -11.74 </z>
</location>
<static_friction> 0.80 </static_friction>
<dynamic_friction> 0.50 </dynamic_friction>
<rolling_friction> 0.02 </rolling_friction>
<strut_force>
<function>
<sum>
<product>
<value>-1</value>
<table>
<independentVar>gear/unit[0]/compression-ft</independentVar>
<tableData>
0 0
0.65 600
1.3 45500
1.31 49000
</tableData>
</table>
</product>
<ifthen>
<ge>
<property> gear/unit[0]/compression-velocity-fps </property>
<value> 0.0 </value>
</ge>
<product>
<value> -1100 </value>
<property> gear/unit[0]/compression-velocity-fps </property>
</product>
<product>
<value> -2600 </value>
<property> gear/unit[0]/compression-velocity-fps </property>
</product>
</ifthen>
</sum>
</function>
</strut_force>
<max_steer unit="DEG"> 10 </max_steer>
<brake_group> NONE </brake_group>
<retractable>1</retractable>
</contact>
<contact type="BOGEY" name="LEFT_MAIN">
<!--structure by Michael Soitanen, coefficients by Heiko Schulz-->
<location unit="IN">
<x> -54.044 </x>
<y> -63.39 </y>
<z> -9.11 </z>
</location>
<static_friction>0.8</static_friction>
<dynamic_friction> 0.5 </dynamic_friction>
<rolling_friction> 0.02 </rolling_friction>
<strut_force>
<function>
<sum>
<product>
<value>-1</value>
<table>
<independentVar>gear/unit[1]/compression-ft</independentVar>
<tableData>
0 0
0.042 555
1.30 50500
1.31 65000
</tableData>
</table>
</product>
<ifthen>
<ge>
<property> gear/unit[1]/compression-velocity-fps </property>
<value> 0.0 </value>
</ge>
<product>
<value> -2500 </value>
<property> gear/unit[1]/compression-velocity-fps </property>
</product>
<product>
<value> -3900</value>
<property> gear/unit[1]/compression-velocity-fps </property>
</product>
</ifthen>
</sum>
</function>
</strut_force>
<max_steer unit="DEG">0</max_steer>
<brake_group>LEFT</brake_group>
<retractable>1</retractable>
</contact>
<contact type="BOGEY" name="RIGHT_MAIN">
<!--structure by Michael Soitanen, coefficients by Heiko Schulz-->
<location unit="IN">
<x> -54.044 </x>
<y> 63.39 </y>
<z> -9.11 </z>
</location>
<static_friction> 0.8 </static_friction>
<dynamic_friction>0.5 </dynamic_friction>
<rolling_friction> 0.02</rolling_friction>
<strut_force>
<function>
<sum>
<product>
<value>-1</value>
<table>
<independentVar>gear/unit[2]/compression-ft</independentVar>
<tableData>
0 0
0.042 555
1.30 50500
1.31 65000
</tableData>
</table>
</product>
<ifthen>
<ge>
<property> gear/unit[2]/compression-velocity-fps </property>
<value> 0.0 </value>
</ge>
<product>
<value> -2500</value>
<property> gear/unit[2]/compression-velocity-fps </property>
</product>
<product>
<value> -3900 </value>
<property> gear/unit[2]/compression-velocity-fps </property>
</product>
</ifthen>
</sum>
</function>
</strut_force>
<max_steer unit="DEG">0</max_steer>
<brake_group>RIGHT</brake_group>
<retractable>1</retractable>
</contact>
<!-- to prevent from sinking in to deep
<contact type="BOGEY" name="NOSE2">
<location unit="IN">
<x> -343.49 </x>
<y> 0.00 </y>
<z> -1.74 </z>
</location>
<static_friction> 0.00 </static_friction>
<dynamic_friction> 0.00 </dynamic_friction>
<rolling_friction> 0.0 </rolling_friction>
<spring_coeff unit="LBS/FT"> 0 </spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 000 </damping_coeff>
<damping_coeff_rebound unit="LBS/FT/SEC">0000</damping_coeff_rebound>
<max_steer unit="DEG"> 5.00 </max_steer>
<brake_group>NONE</brake_group>
<retractable>1</retractable>
</contact>
<contact type="BOGEY" name="LEFT_MAIN2">
<location unit="IN">
<x> -54.044 </x>
<y> -71.88 </y>
<z> -1.8 </z>
</location>
<static_friction> 0.0</static_friction>
<dynamic_friction> 0.00 </dynamic_friction>
<rolling_friction> 0.0 </rolling_friction>
<spring_coeff unit="LBS/FT"> 0 </spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 0 </damping_coeff>
<damping_coeff_rebound unit="LBS/FT/SEC">000</damping_coeff_rebound>
<max_steer unit="DEG">0</max_steer>
<retractable>1</retractable>
</contact>
<contact type="BOGEY" name="RIGHT_MAIN2">
<location unit="IN">
<x> -54.044 </x>
<y> 71.88 </y>
<z> -1.8 </z>
</location>
<static_friction> 0.0 </static_friction>
<dynamic_friction> 0.00 </dynamic_friction>
<rolling_friction> 0.0 </rolling_friction>
<spring_coeff unit="LBS/FT"> 0 </spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 0</damping_coeff>
<damping_coeff_rebound unit="LBS/FT/SEC">00</damping_coeff_rebound>
<max_steer unit="DEG">0</max_steer>
<retractable>1</retractable>
</contact>-->
<contact type="STRUCTURE" name="LEFT_WING">
<location unit="IN">
<x> 44.82 </x>
<y> -414.98 </y>
<z>119.76 </z>
</location>
<static_friction> 0.8 </static_friction>
<dynamic_friction> 0.5 </dynamic_friction>
<spring_coeff unit="LBS/FT"> 1</spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 10000 </damping_coeff>
</contact>
<contact type="STRUCTURE" name="RIGHT_WING">
<location unit="IN">
<x> 44.82 </x>
<y> 414.98 </y>
<z>119.76 </z>
</location>
<static_friction> 0.8 </static_friction>
<dynamic_friction> 0.5 </dynamic_friction>
<spring_coeff unit="LBS/FT"> 1</spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 10000 </damping_coeff>
</contact>
<contact type="STRUCTURE" name="LEFT_FIN">
<location unit="IN">
<x> 252.588 </x>
<y>-16.07 </y>
<z>45.64</z>
</location>
<static_friction> 0.8</static_friction>
<dynamic_friction> 0.5 </dynamic_friction>
<spring_coeff unit="LBS/FT"> 1</spring_coeff>
<damping_coeff unit="LBS/FT/SEC">10000 </damping_coeff>
</contact>
<contact type="STRUCTURE" name="RIGHT_FIN">
<location unit="IN">
<x> 252.588 </x>
<y>16.07 </y>
<z>45.64</z>
</location>
<static_friction> 0.8 </static_friction>
<dynamic_friction> 0.5 </dynamic_friction>
<spring_coeff unit="LBS/FT"> 1</spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 10000 </damping_coeff>
</contact>
<contact type="STRUCTURE" name="TAIL">
<location unit="IN">
<x> 401.92 </x>
<y>0</y>
<z>90.588</z>
</location>
<static_friction> 0.8 </static_friction>
<dynamic_friction> 0.5 </dynamic_friction>
<spring_coeff unit="LBS/FT"> 1</spring_coeff>
<damping_coeff unit="LBS/FT/SEC">10000 </damping_coeff>
</contact>
<contact type="STRUCTURE" name="NOSE">
<location unit="IN">
<x> -414.19</x>
<y>0</y>
<z>43.84</z>
</location>
<static_friction> 0.8 </static_friction>
<dynamic_friction> 0.5 </dynamic_friction>
<spring_coeff unit="LBS/FT"> 1</spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 10000 </damping_coeff>
</contact>
<contact type="STRUCTURE" name="BELLY_FORWARD">
<location unit="IN">
<x> -390.8</x>
<y>0</y>
<z>30.07</z>
</location>
<static_friction> 0.8 </static_friction>
<dynamic_friction> 0.5 </dynamic_friction>
<spring_coeff unit="LBS/FT"> 1</spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 10000 </damping_coeff>
</contact>
<contact type="STRUCTURE" name="BELLY_AFT_LEFT">
<location unit="IN">
<x> -44.9</x>
<y>-28.78</y>
<z>12.94</z>
</location>
<static_friction> 0.8 </static_friction>
<dynamic_friction> 0.5 </dynamic_friction>
<spring_coeff unit="LBS/FT"> 1</spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 10000 </damping_coeff>
</contact>
<contact type="STRUCTURE" name="BELLY_AFT_RIGHT">
<location unit="IN">
<x> -44.9</x>
<y>28.78</y>
<z>12.94</z>
</location>
<static_friction> 0.8 </static_friction>
<dynamic_friction> 0.5 </dynamic_friction>
<spring_coeff unit="LBS/FT"> 1</spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 10000 </damping_coeff>
</contact>
</ground_reactions>
<propulsion>
<engine file="PW306B">
<location unit="IN">
<x>-143.17 </x>
<y> -139 </y>
<z>114.823 </z>
</location>
<orient unit="DEG">
<pitch> 1.50 </pitch>
<roll> 0.00 </roll>
<yaw> 0.00 </yaw>
</orient>
<feed>0</feed>
<feed>1</feed>
<feed>2</feed>
<feed>3</feed>
<feed>4</feed>
<feed>5</feed>
<thruster file="direct">
<sense>1</sense>
<location unit="IN">
<x>-200.35 </x>
<y> -139 </y>
<z>114.823 </z>
</location>
<orient unit="DEG">
<pitch>1.50 </pitch>
<roll> 0.00 </roll>
<yaw> 0.00 </yaw>
</orient>
</thruster>
</engine>
<engine file="PW306B">
<location unit="IN">
<x>-143.17 </x>
<y> 139 </y>
<z>114.823 </z>
</location>
<orient unit="DEG">
<pitch> 1.50 </pitch>
<roll> 0.00 </roll>
<yaw> 0.00 </yaw>
</orient>
<feed>0</feed>
<feed>1</feed>
<feed>2</feed>
<feed>3</feed>
<feed>4</feed>
<feed>5</feed>
<thruster file="direct">
<sense>1</sense>
<location unit="IN">
<x>-200.35 </x>
<y> 139 </y>
<z>114.823 </z>
</location>
<orient unit="DEG">
<pitch> 1.50 </pitch>
<roll> 0.00 </roll>
<yaw> 0.00 </yaw>
</orient>
</thruster>
</engine>
<!--http://328.eu/wp-content/uploads/2013/04/easa-tcds-do328.pdf-->
<tank type="FUEL" number="0"><!--feeder tank-->
<location unit="M">
<x>-2.0 </x>
<y>-7.634 </y>
<z> 3.1 </z>
</location>
<priority>1</priority>
<capacity unit="LBS"> 187.4 </capacity>
<contents unit="LBS"> 187.4 </contents>
<density unit="LBS/GAL"> 6.643 </density>
</tank>
<tank type="FUEL" number="1">
<location unit="M">
<x>-2.0 </x>
<y>-5.0 </y>
<z> 3.2 </z>
</location>
<priority>1</priority>
<capacity unit="LBS"> 1395.5 </capacity>
<contents unit="LBS"> 1395.5 </contents>
<density unit="LBS/GAL"> 6.643 </density>
</tank>
<tank type="FUEL" number="2">
<location unit="M">
<x>-2.0 </x>
<y>-2.2 </y>
<z> 3.2 </z>
</location>
<priority>1</priority>
<capacity unit="LBS"> 2182.6 </capacity>
<contents unit="LBS"> 2182.6 </contents>
<density unit="LBS/GAL"> 6.643 </density>
</tank>
<tank type="FUEL" number="3">
<location unit="M">
<x>-2.0 </x>
<y> 2.2 </y>
<z> 3.2 </z>
</location>
<priority>1</priority>
<capacity unit="LBS"> 2182.6 </capacity>
<contents unit="LBS"> 2182.6 </contents>
<density unit="LBS/GAL"> 6.643 </density>
</tank>
<tank type="FUEL" number="4">
<location unit="M">
<x>-2.0 </x>
<y> 5.0 </y>
<z> 3.2 </z>
</location>
<priority>1</priority>
<capacity unit="LBS"> 1395.5 </capacity>
<contents unit="LBS"> 1395.5 </contents>
<density unit="LBS/GAL"> 6.643 </density>
</tank>
<tank type="FUEL" number="5"><!--feeder tank-->
<location unit="M">
<x>-2.0 </x>
<y> 7.634 </y>
<z> 3.1 </z>
</location>
<priority>1</priority>
<capacity unit="LBS"> 187.4 </capacity>
<contents unit="LBS"> 187.4 </contents>
<density unit="LBS/GAL"> 6.643 </density>
</tank>
</propulsion>
<flight_control name="FCS: Dornier 328-110">
<channel name = "aeromechanical">
<switch name="/controls/gear/tiller-disabled">
<default value="0"/>
<test logic="AND" value="1">
/controls/gear/tiller-enabled == 0
</test>
</switch>
<fcs_function name="Nose Wheel Steering 0">
<function name="fcs/steer-nose-deg[0]">
<description>Steering command for nose gear</description>
<sum>
<product>
<table>
<independentVar lookup="row">/controls/gear/tiller-cmd-norm</independentVar>
<independentVar lookup="column">/controls/flight/rudder</independentVar>
<tableData>
-1 0 1
-1 -61 -61 -61
0 -10 0 10
1 61 61 61
</tableData>
</table>
<property>/controls/gear/tiller-enabled</property>
</product>
<product>
<product>
<property>/controls/flight/rudder</property>
<value>61</value>
</product>
<property>/controls/gear/tiller-disabled</property>
</product>
</sum>
</function>
</fcs_function>
<!--<fcs_function name="aero/aero-rp-x-in">
<function>
<description>Centre of pressure due to mach </description>
<table>
<independentVar lookup="row">velocities/mach</independentVar>
<tableData>
0.00 86.5
0.5 96.5
</tableData>
</table>
</function>
<output>metrics/aero-rp-x-in</output>
</fcs_function>-->
<!-- need %Cg in chord for moments [Xcg - Xref)/100]
<summer name="cg-x-offset-chord-in">
<input> inertia/cg-x-in</input>
<input> -metrics/aero-rp-x-in</input>
<output>inertia/cg-x-offset-chord-in</output>
</summer>
<pure_gain name="cg-x-chord-percent">
<description>Percent offset of the CoP from the CG</description>
<input>inertia/cg-x-offset-chord-in</input>
<gain> -0.01</gain>
<clipto>
<min> -1 </min>
<max> 1 </max>
</clipto>
<output> inertia/cg-x-mac-percent </output>
</pure_gain>-->
<!-- simulate rotational friction -->
<actuator name="Gear Nose Actuator">
<input>fcs/steer-nose-deg[0]</input>
<rate_limit>61</rate_limit>
<output>fcs/steer-pos-deg[0]</output>
</actuator>
</channel>
<channel name="Pitch">
<summer name="Pitch Trim Sum">
<input>fcs/elevator-cmd-norm</input>
<input>fcs/pitch-trim-cmd-norm</input>
<clipto>
<min> -1 </min>
<max> 1 </max>
</clipto>
</summer>
<aerosurface_scale name="Elevator Control">
<input>fcs/pitch-trim-sum</input>
<gain>0.01745</gain>
<range>
<min> -25 </min>
<max> 30 </max>
</range>
<output>fcs/elevator-pos-rad</output>
</aerosurface_scale>
</channel>
<channel name="Roll">
<summer name="Roll Trim Sum">
<input>fcs/aileron-cmd-norm</input>
<input>fcs/roll-trim-cmd-norm</input>
<clipto>
<min>-1</min>
<max>1</max>
</clipto>
</summer>
<aerosurface_scale name="Left Aileron Control">
<input>fcs/roll-trim-sum</input>
<gain>0.01745</gain>
<range>
<min>-25</min>
<max>28</max>
</range>
<output>fcs/left-aileron-pos-rad</output>
</aerosurface_scale>
<aerosurface_scale name="Left Aileron Norm">
<input>fcs/roll-trim-sum</input>
<range>
<min>-1</min>
<max>1</max>
</range>
<output>fcs/left-aileron-pos-norm</output>
</aerosurface_scale>
<aerosurface_scale name="Right Aileron Control">
<input>-fcs/roll-trim-sum</input>
<gain>0.01745</gain>
<range>
<min>-25</min>
<max>28</max>
</range>
<output>fcs/right-aileron-pos-rad</output>
</aerosurface_scale>
<aerosurface_scale name="Right Aileron Norm">
<input>-fcs/roll-trim-sum</input>
<range>
<min>-1</min>
<max>1</max>
</range>
<output>fcs/right-aileron-pos-norm</output>
</aerosurface_scale>
<aerosurface_scale name="Left Spoileron Control">
<input>fcs/roll-trim-sum</input>
<gain>0.01745</gain>
<range>
<min>-58</min>
<max>0</max>
</range>
<output>fcs/left-spoileron-pos-rad</output>
</aerosurface_scale>
<aerosurface_scale name="Left Spoileron Norm">
<input>fcs/roll-trim-sum</input>
<range>
<min>-1</min>
<max>0</max>
</range>
<output>fcs/left-spoileron-pos-norm</output>
</aerosurface_scale>
<aerosurface_scale name="Right Spoileron Control">
<input>-fcs/roll-trim-sum</input>
<gain>0.01745</gain>
<range>
<min>-58</min>
<max>0</max>
</range>
<output>fcs/right-spoileron-pos-rad</output>
</aerosurface_scale>
<aerosurface_scale name="Right Spoileron Norm">
<input>-fcs/roll-trim-sum</input>
<range>
<min>-1</min>
<max>0</max>
</range>
<output>fcs/right-spoileron-pos-norm</output>
</aerosurface_scale>
</channel>
<property value="1">fcs/yaw-damper-enable</property>
<channel name="Yaw">
<scheduled_gain name="Yaw Damper Rate">
<input>velocities/r-aero-rad_sec</input>
<table>
<independentVar lookup="row">velocities/ve-kts</independentVar>
<tableData>
30 0.00
60 2.00
</tableData>
</table>
<gain>fcs/yaw-damper-enable</gain>
</scheduled_gain>
<summer name="Rudder Sum">
<input>fcs/rudder-command-sum</input>
<input>fcs/yaw-damper-rate</input>
<clipto>
<min> -1.0 </min>
<max> 1.0 </max>
</clipto>
</summer>
<aerosurface_scale name="Rudder Control">
<input>fcs/rudder-sum</input>
<domain>
<min> -1.0 </min>
<max> 1.0</max>
</domain>
<range>
<min> -0.349 </min>
<max> 0.4188 </max>
</range>
<output>fcs/rudder-pos-rad</output>
</aerosurface_scale>
<aerosurface_scale name="rudder normalization">
<input>fcs/rudder-pos-rad</input>
<domain>
<min> -0.349 </min>
<max> 0.4188 </max>
</domain>
<range>
<min> -1 </min>
<max> 1 </max>
</range>
<output>fcs/rudder-pos-norm</output>
</aerosurface_scale>
<summer name="Rudder Command Sum">
<input>fcs/rudder-cmd-norm</input>
<input>fcs/yaw-trim-cmd-norm</input>
<clipto>
<min> -1 </min>
<max> 1 </max>
</clipto>
</summer>
</channel>
<channel name="Flaps">
<kinematic name="Flaps Control">
<input>fcs/flap-cmd-norm</input>
<traverse>
<setting>
<position> 0 </position>
<time> 0 </time>
</setting>
<setting>
<position> 12 </position>
<time> 4 </time>
</setting>
<setting>
<position> 32 </position>
<time> 3 </time>
</setting>
</traverse>
<output>fcs/flap-pos-deg</output>
</kinematic>
<aerosurface_scale name="flap normalization">
<input>fcs/flap-pos-deg</input>
<domain>
<min> 0 </min>
<max> 32 </max>
</domain>
<range>
<min> 0 </min>
<max> 1 </max>
</range>
<output>fcs/flap-pos-norm</output>
</aerosurface_scale>
</channel>
<channel name="Landing Gear">
<kinematic name="Gear Control">
<input>gear/gear-cmd-norm</input>
<traverse>
<setting>
<position> 0 </position>
<time> 0 </time>
</setting>
<setting>
<position> 1 </position>
<time> 13</time>
</setting>
</traverse>
<output>gear/gear-pos-norm</output>
</kinematic>
</channel>
<channel name="Groundspoiler">
<kinematic name="Groundspoiler Control">
<input>fcs/spoiler-cmd-norm</input>
<traverse>
<setting>
<position> 0 </position>
<time> 0 </time>
</setting>
<setting>
<position> 1 </position>
<time> 0.1 </time>
</setting>
</traverse>
<output>fcs/groundspoiler-pos-norm</output>
</kinematic>
</channel>
<channel name="alpha-wing-rad-to-deg">
<pure_gain name="wing-incidence-deg">
<input>aero/alpha-wing-rad</input>
<gain>57.29578</gain>
<output>aero/alpha-wing-deg</output>
</pure_gain>
</channel>
<property>fcs/aeromatic</property>
</flight_control>
<aerodynamics>
<function name="aero/function/kCDge">
<description>Change_in_drag_due_to_ground_effect</description>
<product>
<table>
<independentVar>aero/h_b-mac-ft</independentVar>
<tableData>
0.0000 0.0480
0.1000 0.5150
0.1500 0.6290
0.2000 0.7090
0.3000 0.8150
0.4000 0.8820
0.5000 0.9280
0.6000 0.9620
0.7000 0.9880
0.8000 1.0000
</tableData>
</table>
</product>
</function>
<function name="aero/function/kCLge">
<description>Change_in_lift_due_to_ground_effect</description>
<product>
<table>
<independentVar>aero/h_b-mac-ft</independentVar>
<tableData>
0.0000 1.2030
0.1000 1.1270
0.1500 1.0900
0.2000 1.0730
0.3000 1.0460
0.4000 1.0550
0.5000 1.0190
0.6000 1.0130
0.7000 1.0080
0.8000 1.0060
0.9000 1.0030
1.0000 1.0020
1.1000 1.0000
</tableData>
</table>
</product>
</function>
<!--<function name="aero/function/kCLsb">
<description>Change_in_lift_due_to_speed_brake</description>
<product>
<table>