forked from FGMEMBERS/f16
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathf16.xml
3314 lines (3121 loc) · 189 KB
/
f16.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="General Dynamics YF-16" version="2.0" release="ALPHA"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://jsbsim.sourceforge.net/JSBSim.xsd">
<fileheader>
<author> Erik Hofman, Nikolai V. Chr. </author>
<filecreationdate> 2001-12-28 </filecreationdate>
<version> $Revision: 1.93 $ </version>
<license>
<licenseName>GPL (General Public License)</licenseName>
<licenseURL>http://www.gnu.org/licenses/gpl.html</licenseURL>
</license>
<description> Models an YF-16 </description>
<note>
This model was created using data that is, or has been, publically
available by means of technical reports, textbooks, image graphs or
published code. This aircraft description file is in no way related
to the manufacturer of the real aircraft.
Neither the name of (any of) the authors nor the names of (any of) the
manufacturers may be used to endorse or promote products derived from
this file.
The data is provided ''as is'' and any express or implied
warranties, including, but not limitted to the implied warranties of
merchantability and fitness for a particular purpose are disclaimed.
</note>
<reference refID="ISBN 0-7232-3458-2" author="William Green" title="General Dynamics F-16 Dash-1" date="1987"/>
<reference refID="NASA TP-1538" author="Nguyen, L. T.; Ogburn, M. E.; Gilbert, W. P.; Kibler, K. S.; Brown, P. W.; Deal, P. L."
title="Simulator study of stall/post-stall characteristics of a fighter airplane with relaxed longitudinal static stability." date="12/1979"/>
<reference refID="AD A 055417" author="Marchand,Michael A" title="Pitch Rate Flight Control for the F-16 Aircraft to Improve Air-To-Air Combat" date="Dec 1977"/>
<reference refID="AD A 189675" author="Kassan, Mark W" title="F-16 Simulator for Man-in-the-Loop Testing of Aircraft Control Systems (SIMTACS)" date="Dec 1987"/>
<reference refID="AFD-070827-032" author="Goddard and Lemm" title="Simulation of the F-16 Lantirn Automatic Terrain Avoidance System" date="Aug 1986"/>
<reference refID="NASA TN-D-8176" author="Gilbert, W. P.; Nguyen, L. T.; Vangunst, R. W."
title="Simulator study of the effectiveness of an automatic control system designed to improve the high-angle-of-attack characteristics of a fighter airplane" date="1976"/>
<reference refID="NASA TP-2857" author="Dale A. Mackall" title="Development and flight test experiences with a flight-crucial digital control system" date="1988"/>
<reference refID="PW-100 Engine" author="Elodie Roux" title="Turbofan and Turbojet Engines: Database Handbook" date="2007"/>
<reference refID="Manual" author="Lockheed Martin" title="F-16C/D Block 50 Flight Manual" date="2 December 1996"/>
<reference refID="Youtube video showing speed brake actuation time (2 secs)" author="MultiplyLeadership's channel"
title="Air-to-air chase video of F-16 AB light off FTT" date="Oct 20, 2010"/>
<reference refID="None" author="Richard Murray" title="http://www.cds.caltech.edu/~murray/projects/afosr95-vehicles/models/f16/" date="n/a"/>
<reference refID="H-1999" author="NASA" title="Dynamic ground effects flight test of an F-15 aircraft" date="n/a"/>
<reference refID="H-2177" author="NASA" title="Dynamic ground effect for a Cranked Arrow Wing Airplane" date="n/a"/>
<reference refID="None" author="n/a" title="http://www.codeonemagazine.com/archives/1991/articles/jul_91/july2a_91.html" date="n/a"/>
</fileheader>
<metrics>
<wingarea unit="FT2"> 300 </wingarea>
<wingspan unit="FT"> 30 </wingspan>
<chord unit="FT"> 11.32 </chord>
<htailarea unit="FT2"> 63.7 </htailarea>
<htailarm unit="FT"> 16.46 </htailarm>
<vtailarea unit="FT2"> 54.75 </vtailarea>
<vtailarm unit="FT"> 0 </vtailarm>
<location name="AERORP" unit="IN">
<x> -198.4336 </x><!-- -198.4336 = static margin of -0.04 -->
<y> 0 </y>
<z> 0 </z>
</location>
<location name="EYEPOINT" unit="IN">
<x> -336.2 </x>
<y> 0 </y>
<z> 29.5 </z>
</location>
<location name="VRP" unit="IN">
<x> -180 </x>
<y> 0 </y>
<z> 0 </z>
</location>
</metrics>
<mass_balance>
<ixx unit="SLUG*FT2"> 9496 </ixx>
<iyy unit="SLUG*FT2"> 55814 </iyy>
<izz unit="SLUG*FT2"> 63100 </izz>
<ixy unit="SLUG*FT2"> 0 </ixy>
<ixz unit="SLUG*FT2"> 982 </ixz>
<iyz unit="SLUG*FT2"> 0 </iyz>
<emptywt unit="LBS"> 17400 </emptywt>
<location name="CG" unit="IN">
<x> -193 </x>
<y> 0 </y>
<z> 0 </z>
</location>
<pointmass name="Pilot">
<weight unit="LBS"> 159 </weight>
<location name="POINTMASS" unit="IN">
<x> -336.2 </x>
<y> 0 </y>
<z> 0 </z>
</location>
</pointmass>
</mass_balance>
<ground_reactions>
<contact type="BOGEY" name="NOSE_LG">
<location unit="IN">
<x> -299.6 </x>
<y> 0 </y>
<z> -72 </z>
</location>
<static_friction> 0.8 </static_friction>
<dynamic_friction> 0.5 </dynamic_friction>
<rolling_friction> 0.02 </rolling_friction>
<spring_coeff unit="LBS/FT"> 17250 </spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 4250 </damping_coeff>
<max_steer unit="DEG"> 32 </max_steer><!-- as per manual -->
<brake_group> NOSE </brake_group>
<retractable>1</retractable>
</contact>
<contact type="BOGEY" name="LEFT_MLG">
<location unit="IN">
<x> -158.6 </x>
<y> -48 </y>
<z> -71.6 </z>
</location>
<static_friction> 0.8 </static_friction>
<dynamic_friction> 0.5 </dynamic_friction>
<rolling_friction> 0.02 </rolling_friction>
<spring_coeff unit="LBS/FT"> 37500 </spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 7500 </damping_coeff>
<max_steer unit="DEG"> 0.0 </max_steer>
<brake_group> LEFT </brake_group>
<retractable>1</retractable>
</contact>
<contact type="BOGEY" name="RIGHT_MLG">
<location unit="IN">
<x> -158.6 </x>
<y> 48 </y>
<z> -71.6 </z>
</location>
<static_friction> 0.8 </static_friction>
<dynamic_friction> 0.5 </dynamic_friction>
<rolling_friction> 0.02 </rolling_friction>
<spring_coeff unit="LBS/FT"> 37500 </spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 7500 </damping_coeff>
<max_steer unit="DEG"> 0.0 </max_steer>
<brake_group> RIGHT </brake_group>
<retractable>1</retractable>
</contact>
<contact type="STRUCTURE" name="LEFT_WT">
<location unit="IN">
<x> -121.3 </x>
<y> -189 </y>
<z> 0 </z>
</location>
<static_friction> 5.0 </static_friction>
<dynamic_friction> 4.0 </dynamic_friction>
<spring_coeff unit="LBS/FT"> 10000 </spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 2000 </damping_coeff>
<damping_coeff_rebound unit="LBS/FT/SEC"> 40000 </damping_coeff_rebound>
</contact>
<contact type="STRUCTURE" name="RIGHT_WT">
<location unit="IN">
<x> -121.3 </x>
<y> 189 </y>
<z> 0 </z>
</location>
<static_friction> 5.0 </static_friction>
<dynamic_friction> 4.0 </dynamic_friction>
<spring_coeff unit="LBS/FT"> 10000 </spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 2000 </damping_coeff>
<damping_coeff_rebound unit="LBS/FT/SEC"> 40000 </damping_coeff_rebound>
</contact>
<contact type="STRUCTURE" name="TOP_VS">
<location unit="IN">
<x> -27.2 </x>
<y> 0 </y>
<z> 123.2 </z>
</location>
<static_friction> 5.0 </static_friction>
<dynamic_friction> 4.0 </dynamic_friction>
<spring_coeff unit="LBS/FT"> 10000 </spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 2000 </damping_coeff>
<damping_coeff_rebound unit="LBS/FT/SEC"> 40000 </damping_coeff_rebound>
</contact>
<contact type="STRUCTURE" name="LEFT_VFT">
<location unit="IN">
<x> -97.6 </x>
<y> -24.8 </y>
<z> -52 </z>
</location>
<static_friction> 5.0 </static_friction>
<dynamic_friction> 4.0 </dynamic_friction>
<spring_coeff unit="LBS/FT"> 10000 </spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 2000 </damping_coeff>
<damping_coeff_rebound unit="LBS/FT/SEC"> 40000 </damping_coeff_rebound>
</contact>
<contact type="STRUCTURE" name="RIGHT_VFT">
<location unit="IN">
<x> -97.6 </x>
<y> 24.8 </y>
<z> -52 </z>
</location>
<static_friction> 5.0 </static_friction>
<dynamic_friction> 4.0 </dynamic_friction>
<spring_coeff unit="LBS/FT"> 10000 </spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 2000 </damping_coeff>
<damping_coeff_rebound unit="LBS/FT/SEC"> 40000 </damping_coeff_rebound>
</contact>
<contact type="STRUCTURE" name="INTAKE">
<location unit="IN">
<x> -322.4 </x>
<y> 0 </y>
<z> -36.6 </z>
</location>
<static_friction> 5.0 </static_friction>
<dynamic_friction> 4.0 </dynamic_friction>
<spring_coeff unit="LBS/FT"> 10000 </spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 2000 </damping_coeff>
<damping_coeff_rebound unit="LBS/FT/SEC"> 40000 </damping_coeff_rebound>
</contact>
<contact type="STRUCTURE" name="RADOME">
<location unit="IN">
<x> -486.6 </x>
<y> 0 </y>
<z> -8.7 </z>
</location>
<static_friction> 5.0 </static_friction>
<dynamic_friction> 4.0 </dynamic_friction>
<spring_coeff unit="LBS/FT"> 10000 </spring_coeff>
<damping_coeff unit="LBS/FT/SEC"> 2000 </damping_coeff>
<damping_coeff_rebound unit="LBS/FT/SEC"> 40000 </damping_coeff_rebound>
</contact>
</ground_reactions>
<external_reactions>
<force name="pushback" frame="BODY">
<location unit="IN">
<x> -2.98081 </x>
<y> 0.0 </y>
<z> -1.9683 </z>
</location>
<direction>
<x>1</x>
<y>0</y>
<z>0</z>
</direction>
</force>
<force name="hook" frame="BODY">
<location unit="IN">
<x> 100.669 </x>
<y> 0.0 </y>
<z> -28.818 </z>
</location>
<direction>
<x> -0.9995 </x>
<y> 0.0 </y>
<z> 0.01 </z>
</direction>
</force>
</external_reactions>
<propulsion>
<engine file="F100-PW-229">
<location unit="IN">
<x> 0 </x>
<y> 0 </y>
<z> 0 </z>
</location>
<orient unit="DEG">
<roll> 0.0 </roll>
<pitch> 0 </pitch>
<yaw> 0 </yaw>
</orient>
<feed>0</feed>
<feed>1</feed>
<feed>2</feed>
<feed>3</feed>
<feed>4</feed>
<feed>5</feed>
<feed>6</feed>
<thruster file="direct">
<location unit="IN">
<x> 500 </x>
<y> 0 </y>
<z> 0 </z>
</location>
<orient unit="DEG">
<roll> 0.0 </roll>
<pitch> 0.0 </pitch>
<yaw> 0.0 </yaw>
</orient>
</thruster>
</engine>
<!--
This is a pseudo fuel system.
As can be read in manual it should have 12 tanks,
including possibility for 3 droptanks.
And engine only draws fuel from 2 of them.
Total internal JP-4 should be: 6625
Total external JP-4 should be: 9300 (the big tanks, there is 2 sizes)
-->
<tank type="FUEL"> <!-- FWD Tank -->
<location unit="IN">
<x> -225 </x>
<y> 0 </y>
<z> 0 </z>
</location>
<capacity unit="LBS"> 2812.5 </capacity>
<contents unit="LBS"> 2812.5 </contents>
<type>JP-4</type>
<priority> 3 </priority>
</tank>
<tank type="FUEL"> <!-- AFT Tank -->
<location unit="IN">
<x> -153 </x>
<y> 0 </y>
<z> 0 </z>
</location>
<capacity unit="LBS"> 2812.5 </capacity>
<contents unit="LBS"> 2812.5 </contents>
<type>JP-4</type>
<priority> 3 </priority>
</tank>
<tank type="FUEL"> <!-- Right External Tank -->
<location unit="IN">
<x> -213 </x>
<y> 80 </y>
<z> -40 </z>
</location>
<capacity unit="LBS"> 2991 </capacity>
<contents unit="LBS"> 0 </contents>
<type>JP-4</type>
<priority> 1 </priority>
</tank>
<tank type="FUEL"> <!-- Left External Tank -->
<location unit="IN">
<x> -213 </x>
<y> -80 </y>
<z> -40 </z>
</location>
<capacity unit="LBS"> 2991 </capacity>
<contents unit="LBS"> 0 </contents>
<type>JP-4</type>
<priority> 1 </priority>
</tank>
<tank type="FUEL"> <!-- Center External Tank -->
<location unit="IN">
<x> -213 </x>
<y> 0 </y>
<z> -50 </z>
</location>
<capacity unit="LBS"> 2425 </capacity>
<contents unit="LBS"> 0 </contents>
<type>JP-4</type>
<priority> 1 </priority>
</tank>
<tank type="FUEL"> <!-- Right wing tank -->
<location unit="IN">
<x> -193 </x>
<y> 80 </y>
<z> 0 </z>
</location>
<capacity unit="LBS"> 500 </capacity>
<contents unit="LBS"> 500 </contents>
<type>JP-4</type>
<priority> 2 </priority>
</tank>
<tank type="FUEL"> <!-- Left wing tank -->
<location unit="IN">
<x> -193 </x>
<y> -80 </y>
<z> 0 </z>
</location>
<capacity unit="LBS"> 500 </capacity>
<contents unit="LBS"> 500 </contents>
<type>JP-4</type>
<priority> 2 </priority>
</tank>
</propulsion>
<system file="pushback">
<property>/sim/model/pushback/kp</property>
<property>/sim/model/pushback/ki</property>
<property>/sim/model/pushback/kd</property>
</system>
<system file="hook"/>
<flight_control file="Systems/jsb-controls"/>
<aerodynamics>
<!-- begin: aerodynamics by Nikolai V. Chr.
Note:
======
In all aero tables that do not have author listed, the numbers was typed in by Nikolai V. Chr.
Where nothing else is mentioned the aerodynamics come from TP 1538
Todo:
======
Make all coefficients functions (like Cy and Cz is)
Put in engine gyroscopic effect (160 slugs-ft2/sec)
Missing wind-tunnel data:
==========================
+Gear dynamics
Ground effect
+Wave drag
+Trailing edge flaps dynamics
Stores dynamics
Canopy dynamics
Dynamics of high speed
-->
<!--<aero_ref_pt_shift_x>
<function name="metrics/aero-rp-shift-mac">
<description>
Mach-tuck: Transonic Shift of Aerodynamic Center
An estimate by Nikolai V. Chr.
Default static margin =-0.04c (5.4336 inch)
Default CoG = 0.35c
Chord = 11.32 ft
0.19 makes the AeroRP move to 0.5c at 1.1 mach.
</description>
<table name="table/ACshift">
<independentVar>velocities/mach</independentVar>
<tableData>
0.6 0
0.8 0.05
1.1 0.19
</tableData>
</table>
</function>
</aero_ref_pt_shift_x>-->
<hysteresis_limits unit="DEG">
<description>Stall regime</description>
<min> 31 </min>
<max> 36 </max>
</hysteresis_limits>
<function name="aero/CG-pos-c">
<description>
CG position
</description>
<sum>
<v>0.35</v><!-- X_CG-ref -->
<quotient>
<product>
<difference>
<p>inertia/cg-x-in</p>
<v>-193</v><!-- X_CG-ref (inches) -->
</difference>
<v>0.083333</v><!-- in to ft -->
</product>
<property>metrics/cbarw-ft</property>
</quotient>
</sum>
</function>
<function name="aero/static-margin-c">
<description>
Static margin in fraction of chord
</description>
<quotient>
<product>
<difference>
<p>metrics/aero-rp-x-in</p>
<p>inertia/cg-x-in</p>
</difference>
<v>0.083333</v><!-- in to ft -->
</product>
<property>metrics/cbarw-ft</property>
</quotient>
</function>
<function name="aero/coefficient/CDwave">
<product>
<table name="table/CDwave">
<independentVar>velocities/mach</independentVar>
<tableData>
0.000 0.000
0.810 0.000
1.100 0.028
1.800 0.020
</tableData>
</table>
<table name="table/CDwave_sb">
<independentVar>fcs/speedbrake-pos-norm</independentVar>
<tableData>
0 1.0
1 1.5
</tableData>
</table>
</product>
</function>
<function name="aero/coefficient/CDtef">
<product>
<abs>
<!-- is absolute so -2 degs up don't give negative drag -->
<property>fcs/fly-by-wire/tef/tef-pos-norm</property>
</abs>
<value>0.020</value>
</product>
</function>
<function name="aero/coefficient/CDgear">
<product>
<property>gear/gear-pos-norm</property>
<value>0.025</value>
</product>
</function>
<function name="aero/coefficient/CLtef">
<product>
<property>fcs/fly-by-wire/tef/tef-pos-norm</property>
<value>0.1221731</value>
</product>
</function>
<function name="aero/coefficient/CL_g">
<description>Change in lift due to ground effect</description>
<product>
<table>
<independentVar>aero/h_b-mac-ft</independentVar>
<tableData>
0.0000 0.2290
0.2000 0.1240
0.3000 0.1160
0.4000 0.1240
0.6000 0.1050
0.8000 0.0410
1.0000 0.0340
1.2000 0.0190
1.4000 0.0080
1.6000 0.0030
1.8000 0.0010
2.0000 0.0000
2.2000 0.0000
</tableData>
</table>
<cos>
<!-- Less lift due to ground effect when flying inverted-->
<product>
<p>/orientation/roll-deg</p>
<v>0.017453</v>
</product>
</cos>
</product>
</function>
<function name="aero/coefficient/Cx_g">
<sum>
<v>1</v>
<product>
<property>aero/coefficient/CL_g</property>
<sin>
<property>aero/alpha-rad</property>
</sin>
</product>
</sum>
</function>
<function name="aero/coefficient/Cz_g">
<sum>
<v>1</v>
<product>
<property>aero/coefficient/CL_g</property>
<v>-1</v>
<cos>
<property>aero/alpha-rad</property>
</cos>
</product>
</sum>
</function>
<axis name="X">
<function name="aero/coefficient/CDx">
<description>Drag</description>
<product>
<property>aero/qbar-psf</property>
<property>metrics/Sw-sqft</property>
<sum>
<property>aero/coefficient/CDgear</property>
<property>aero/coefficient/CDtef</property>
<property>aero/coefficient/CDwave</property>
</sum>
<cos>
<property>aero/alpha-rad</property>
</cos>
<v>-1</v>
</product>
</function>
<function name="aero/coefficient/CLx">
<description>Lift</description>
<product>
<property>aero/qbar-psf</property>
<property>metrics/Sw-sqft</property>
<sum>
<property>aero/coefficient/CLtef</property>
</sum>
<sin>
<property>aero/alpha-rad</property>
</sin>
</product>
</function>
<function name="aero/coefficient/Cx">
<description>
Cx coefficient in body coordinate system.
</description>
<product>
<property>aero/qbar-psf</property>
<property>metrics/Sw-sqft</property>
<p>aero/coefficient/Cx_g</p>
<table name="table/Cx">
<independentVar lookup="row">aero/alpha-deg</independentVar>
<independentVar lookup="column">aero/beta-deg</independentVar>
<independentVar lookup="table">fcs/fly-by-wire/pitch/horz-tail-deflection-deg</independentVar>
<tableData breakPoint="-25.0">
-30 -25 -20 -15 -10 -8 -6 -4 -2 0 2 4 6 8 10 15 20 25 30
-20 -0.2028 -0.2176 -0.2098 -0.2100 -0.2165 -0.2133 -0.2096 -0.2085 -0.2092 -0.2102 -0.2135 -0.2138 -0.2135 -0.2128 -0.2106 -0.2040 -0.2038 -0.1992 -0.1969
-15 -0.1891 -0.1948 -0.1984 -0.2034 -0.2029 -0.2051 -0.2075 -0.2075 -0.2103 -0.2099 -0.2129 -0.2101 -0.2092 -0.2066 -0.2058 -0.2064 -0.2013 -0.1977 -0.1920
-10 -0.1701 -0.1809 -0.1889 -0.1921 -0.1895 -0.1891 -0.1907 -0.1939 -0.1983 -0.1988 -0.1979 -0.1932 -0.1911 -0.1908 -0.1897 -0.1923 -0.1891 -0.1810 -0.1702
-5 -0.1302 -0.1391 -0.1436 -0.1481 -0.1556 -0.1580 -0.1583 -0.1587 -0.1601 -0.1594 -0.1587 -0.1586 -0.1575 -0.1563 -0.1539 -0.1464 -0.1419 -0.1374 -0.1286
0 -0.1045 -0.1136 -0.1203 -0.1262 -0.1288 -0.1279 -0.1285 -0.1286 -0.1291 -0.1293 -0.1291 -0.1280 -0.1271 -0.1265 -0.1257 -0.1232 -0.1172 -0.1105 -0.1014
5 -0.0640 -0.0709 -0.0756 -0.0801 -0.0807 -0.0816 -0.0823 -0.0830 -0.0845 -0.0850 -0.0840 -0.0835 -0.0818 -0.0804 -0.0805 -0.0792 -0.0747 -0.0698 -0.0626
10 -0.0189 -0.0258 -0.0238 -0.0249 -0.0218 -0.0215 -0.0222 -0.0240 -0.0269 -0.0273 -0.0276 -0.0258 -0.0237 -0.0230 -0.0226 -0.0256 -0.0246 -0.0247 -0.0196
15 0.0248 0.0236 0.0252 0.0258 0.0339 0.0366 0.0402 0.0422 0.0403 0.0403 0.0397 0.0402 0.0393 0.0373 0.0349 0.0268 0.0262 0.0246 0.0258
20 0.0629 0.0636 0.0628 0.0629 0.0762 0.0783 0.0827 0.0849 0.0864 0.0868 0.0896 0.0849 0.0815 0.0766 0.0715 0.0582 0.0581 0.0589 0.0583
25 0.1048 0.1063 0.1038 0.0997 0.1037 0.1057 0.1063 0.1075 0.1073 0.1064 0.1075 0.1072 0.1083 0.1060 0.1011 0.0971 0.1012 0.1037 0.1022
30 0.0909 0.0976 0.0923 0.1018 0.1139 0.1290 0.1364 0.1391 0.1417 0.1410 0.1408 0.1377 0.1347 0.1324 0.1284 0.1164 0.1069 0.1122 0.1054
35 0.1128 0.1180 0.1220 0.1300 0.1419 0.1434 0.1465 0.1563 0.1626 0.1678 0.1683 0.1677 0.1648 0.1560 0.1454 0.1335 0.1255 0.1215 0.1162
40 0.1360 0.1505 0.1408 0.1499 0.1630 0.1637 0.1632 0.1724 0.1770 0.1786 0.1748 0.1743 0.1703 0.1650 0.1606 0.1475 0.1384 0.1481 0.1336
45 0.1611 0.1705 0.1699 0.1697 0.1717 0.1758 0.1753 0.1716 0.1748 0.1728 0.1718 0.1722 0.1696 0.1651 0.1646 0.1627 0.1629 0.1634 0.1541
50 0.1555 0.1684 0.1762 0.1796 0.1829 0.1820 0.1775 0.1741 0.1756 0.1796 0.1828 0.1853 0.1881 0.1860 0.1868 0.1644 0.1541 0.1513 0.1435
55 0.1658 0.1720 0.1674 0.1786 0.1920 0.1909 0.1904 0.1888 0.1907 0.1955 0.1883 0.1794 0.1806 0.1867 0.1918 0.1881 0.1416 0.1530 0.1537
60 0.1617 0.1726 0.1785 0.1644 0.1803 0.1797 0.1947 0.1842 0.1856 0.1861 0.1875 0.1881 0.1885 0.1869 0.1833 0.1577 0.1554 0.1585 0.1566
70 0.1662 0.1706 0.1747 0.1576 0.1754 0.1764 0.1948 0.1872 0.1900 0.1863 0.1882 0.1888 0.1910 0.1902 0.1870 0.1618 0.1719 0.1707 0.1692
80 0.1896 0.1817 0.1752 0.1706 0.1704 0.1703 0.1718 0.1770 0.1756 0.1792 0.1766 0.1754 0.1776 0.1748 0.1788 0.1574 0.1571 0.1638 0.1718
90 0.1928 0.1861 0.1811 0.1854 0.1884 0.1864 0.1894 0.1874 0.1872 0.1859 0.1876 0.1871 0.1876 0.1925 0.1892 0.1715 0.1674 0.1740 0.1825
</tableData>
<tableData breakPoint="-10.0">
-30 -25 -20 -15 -10 -8 -6 -4 -2 0 2 4 6 8 10 15 20 25 30
-20 -0.1435 -0.1424 -0.1492 -0.1459 -0.1447 -0.1403 -0.1341 -0.1322 -0.1295 -0.1296 -0.1319 -0.1320 -0.1325 -0.1330 -0.1355 -0.1367 -0.1400 -0.1332 -0.1343
-15 -0.1269 -0.1298 -0.1288 -0.1261 -0.1229 -0.1229 -0.1223 -0.1230 -0.1237 -0.1241 -0.1238 -0.1240 -0.1235 -0.1231 -0.1237 -0.1269 -0.1296 -0.1306 -0.1277
-10 -0.1059 -0.1107 -0.1109 -0.1112 -0.1102 -0.1109 -0.1113 -0.1124 -0.1135 -0.1188 -0.1136 -0.1125 -0.1118 -0.1104 -0.1110 -0.1120 -0.1117 -0.1115 -0.1067
-5 -0.0682 -0.0733 -0.0773 -0.0798 -0.0863 -0.0891 -0.0903 -0.0914 -0.0916 -0.0920 -0.0912 -0.0902 -0.0886 -0.0869 -0.0839 -0.0774 -0.0749 -0.0709 -0.0658
0 -0.0515 -0.0541 -0.0564 -0.0576 -0.0610 -0.0621 -0.0629 -0.0638 -0.0645 -0.0649 -0.0643 -0.0635 -0.0627 -0.0609 -0.0593 -0.0559 -0.0547 -0.0524 -0.0498
5 -0.0145 -0.0133 -0.0123 -0.0129 -0.0169 -0.0175 -0.0182 -0.0188 -0.0204 -0.0199 -0.0205 -0.0194 -0.0183 -0.0168 -0.0160 -0.0120 -0.0114 -0.0133 -0.0154
10 0.0245 0.0287 0.0344 0.0376 0.0389 0.0394 0.0385 0.0389 0.0383 0.0376 0.0376 0.0386 0.0392 0.0391 0.0389 0.0376 0.0344 0.0305 0.0245
15 0.0724 0.0789 0.0876 0.0923 0.0972 0.0995 0.1013 0.1023 0.1022 0.1016 0.1020 0.1016 0.1007 0.0997 0.0972 0.0923 0.0876 0.0789 0.0724
20 0.1232 0.1285 0.1268 0.1259 0.1336 0.1357 0.1360 0.1359 0.1335 0.1332 0.1342 0.1348 0.1353 0.1320 0.1308 0.1231 0.1240 0.1257 0.1204
25 0.1401 0.1501 0.1493 0.1481 0.1492 0.1512 0.1512 0.1480 0.1456 0.1434 0.1445 0.1470 0.1484 0.1469 0.1466 0.1455 0.1467 0.1475 0.1375
30 0.1085 0.1290 0.1326 0.1466 0.1529 0.1648 0.1684 0.1689 0.1692 0.1680 0.1669 0.1672 0.1653 0.1644 0.1622 0.1559 0.1419 0.1383 0.1178
35 0.1123 0.1202 0.1347 0.1424 0.1571 0.1641 0.1770 0.1837 0.1849 0.1843 0.1841 0.1852 0.1830 0.1797 0.1723 0.1577 0.1499 0.1354 0.1275
40 0.1397 0.1474 0.1427 0.1518 0.1659 0.1684 0.1787 0.1824 0.1860 0.1860 0.1872 0.1833 0.1772 0.1764 0.1721 0.1580 0.1489 0.1536 0.1459
45 0.1593 0.1558 0.1589 0.1592 0.1680 0.1685 0.1669 0.1756 0.1739 0.1743 0.1736 0.1725 0.1701 0.1651 0.1641 0.1553 0.1550 0.1519 0.1554
50 0.1399 0.1466 0.1482 0.1565 0.1641 0.1643 0.1603 0.1574 0.1580 0.1610 0.1622 0.1627 0.1645 0.1626 0.1635 0.1559 0.1476 0.1461 0.1393
55 0.1435 0.1410 0.1277 0.1380 0.1532 0.1537 0.1541 0.1533 0.1532 0.1560 0.1495 0.1413 0.1423 0.1468 0.1505 0.1353 0.1251 0.1384 0.1408
60 0.1386 0.1428 0.1420 0.1180 0.1329 0.1331 0.1375 0.1393 0.1423 0.1442 0.1410 0.1369 0.1452 0.1372 0.1360 0.1212 0.1452 0.1459 0.1417
70 0.1250 0.1253 0.1267 0.1186 0.1239 0.1254 0.1433 0.1368 0.1419 0.1404 0.1371 0.1327 0.1335 0.1353 0.1347 0.1295 0.1376 0.1362 0.1358
80 0.1291 0.1250 0.1223 0.1211 0.1250 0.1237 0.1235 0.1281 0.1269 0.1309 0.1293 0.1294 0.1325 0.1305 0.1294 0.1240 0.1253 0.1279 0.1320
90 0.1397 0.1348 0.1318 0.1320 0.1371 0.1359 0.1358 0.1335 0.1346 0.1343 0.1363 0.1363 0.1366 0.1407 0.1367 0.1317 0.1315 0.1345 0.1394
</tableData>
<tableData breakPoint="0.0">
-30 -25 -20 -15 -10 -8 -6 -4 -2 0 2 4 6 8 10 15 20 25 30
-20 -.1072 -.1061 -.1129 -.1096 -.1084 -.1040 -.0978 -.0959 -.0932 -.0933 -.0956 -.0957 -.0962 -.0967 -.0992 -.1004 -.1037 -.0969 -.0980
-15 -.1006 -.1035 -.1025 -.0998 -.0966 -.0966 -.0960 -.0967 -.0974 -.0978 -.0975 -.0977 -.0972 -.0968 -.0974 -.1006 -.1033 -.1043 -.1014
-10 -.0853 -.0901 -.0903 -.0906 -.0896 -.0903 -.0907 -.0918 -.0929 -.0982 -.0930 -.0919 -.0912 -.0898 -.0904 -.0914 -.0911 -.0909 -.0861
-05 -.0546 -.0597 -.0637 -.0662 -.0727 -.0755 -.0767 -.0778 -.0780 -.0784 -.0776 -.0766 -.0750 -.0733 -.0703 -.0638 -.0613 -.0573 -.0522
00 -.0355 -.0381 -.0404 -.0416 -.0450 -.0461 -.0469 -.0478 -.0485 -.0489 -.0483 -.0475 -.0467 -.0449 -.0433 -.0399 -.0387 -.0364 -.0338
05 -.0012 0.0000 0.0010 0.0004 -.0036 -.0042 -.0049 -.0055 -.0071 -.0066 -.0072 -.0061 -.0050 -.0035 -.0027 0.0013 0.0019 0.0000 -.0021
10 0.0359 0.0491 0.0458 0.0490 0.0503 0.0508 0.0499 0.0509 0.0497 0.0490 0.0490 0.0500 0.0506 0.0505 0.0503 0.0490 0.0458 0.0419 0.0359
15 0.0780 0.0845 0.0932 0.0979 0.1028 0.1051 0.1069 0.1079 0.1078 0.1072 0.1076 0.1072 0.1063 0.1053 0.1028 0.0979 0.0932 0.0845 0.0780
20 0.1183 0.1236 0.1219 0.1210 0.1287 0.1308 0.1311 0.1310 0.1286 0.1283 0.1293 0.1299 0.1304 0.1271 0.1259 0.1182 0.1191 0.1208 0.1155
25 0.1267 0.1367 0.1359 0.1347 0.1358 0.1378 0.1378 0.1346 0.1322 0.1300 0.1311 0.1336 0.1350 0.1335 0.1332 0.1321 0.1333 0.1341 0.1241
30 0.0941 0.1146 0.1182 0.1322 0.1385 0.1504 0.1540 0.1545 0.1548 0.1536 0.1525 0.1528 0.1509 0.1500 0.1478 0.1415 0.1275 0.1239 0.1034
35 0.0885 0.0964 0.1109 0.1189 0.1333 0.1391 0.1532 0.1599 0.1611 0.1605 0.1603 0.1614 0.1592 0.1559 0.1485 0.1339 0.1261 0.1116 0.1037
40 0.1089 0.1166 0.1119 0.1210 0.1351 0.1376 0.1479 0.1516 0.1552 0.1552 0.1564 0.1525 0.1464 0.1456 0.1413 0.1272 0.1181 0.1228 0.1151
45 0.1232 0.1197 0.1228 0.1231 0.1319 0.1324 0.1308 0.1332 0.1378 0.1382 0.1375 0.1364 0.1340 0.1380 0.1280 0.1192 0.1189 0.1158 0.1193
50 0.1135 0.1185 0.1184 0.1171 0.1243 0.1279 0.1279 0.1258 0.1257 0.1281 0.1258 0.1228 0.1221 0.1186 0.1180 0.1108 0.1121 0.1122 0.1072
55 0.1137 0.1195 0.1146 0.1161 0.1209 0.1211 0.1211 0.1195 0.1183 0.1200 0.1185 0.1153 0.1160 0.1152 0.1135 0.1087 0.1072 0.1121 0.1063
60 0.1037 0.1090 0.1094 0.1049 0.1109 0.1123 0.1181 0.1184 0.1170 0.1147 0.1141 0.1126 0.1129 0.1129 0.1109 0.1049 0.1094 0.1090 0.1037
70 0.0857 0.0858 0.0857 0.0796 0.0851 0.0919 0.1150 0.1087 0.1089 0.1025 0.1022 0.1007 0.1012 0.0994 0.0952 0.0897 0.0958 0.0959 0.0958
80 0.0842 0.0807 0.0787 0.0778 0.0791 0.0793 0.0805 0.0846 0.0808 0.0821 0.0802 0.0799 0.0826 0.0800 0.0709 0.0756 0.0765 0.0785 0.0820
90 0.0847 0.0813 0.0798 0.0824 0.0843 0.0843 0.0853 0.0841 0.0858 0.0864 0.0857 0.0828 0.0817 0.0857 0.0816 0.0797 0.0771 0.0786 0.0820
</tableData>
<tableData breakPoint="10.0">
-30 -25 -20 -15 -10 -8 -6 -4 -2 0 2 4 6 8 10 15 20 25 30
-20 -0.1011 -0.1000 -0.1068 -0.1035 -0.1023 -0.0979 -0.0917 -0.0898 -0.0872 -0.0872 -0.0895 -0.0896 -0.0901 -0.0906 -0.0931 -0.0943 -0.0976 -0.0908 -0.0919
-15 -0.1046 -0.1075 -0.1065 -0.1038 -0.1006 -0.0994 -0.1000 -0.1007 -0.1014 -0.1018 -0.1015 -0.1017 -0.1012 -0.1008 -0.1014 -0.1046 -0.1073 -0.1083 -0.1054
-10 -0.0991 -0.1039 -0.1041 -0.1044 -0.1034 -0.1041 -0.1045 -0.1056 -0.1067 -0.1120 -0.1068 -0.1057 -0.1050 -0.1036 -0.1042 -0.1052 -0.1049 -0.1047 -0.0999
-5 -0.0694 -0.0745 -0.0785 -0.0810 -0.0875 -0.0903 -0.0915 -0.0926 -0.0928 -0.0932 -0.0924 -0.0914 -0.0898 -0.0881 -0.0851 -0.0786 -0.0761 -0.0721 -0.0670
0 -0.0501 -0.0527 -0.0550 -0.0562 -0.0596 -0.0607 -0.0615 -0.0624 -0.0631 -0.0635 -0.0629 -0.0621 -0.0613 -0.0595 -0.0579 -0.0545 -0.0533 -0.0510 -0.0484
5 -0.0180 -0.0168 -0.0158 -0.0164 -0.0204 -0.0210 -0.0217 -0.0223 -0.0239 -0.0234 -0.0240 -0.0229 -0.0218 -0.0203 -0.0195 -0.0155 -0.0149 -0.0168 -0.0189
10 0.0138 0.0180 0.0237 0.0269 0.0282 0.0287 0.0278 0.0282 0.0276 0.0269 0.0269 0.0279 0.0285 0.0284 0.0282 0.0269 0.0237 0.0198 0.0138
15 0.0476 0.0541 0.0628 0.0675 0.0724 0.0747 0.0765 0.0775 0.0774 0.0768 0.0772 0.0768 0.0759 0.0749 0.0724 0.0675 0.0628 0.0541 0.0476
20 0.0793 0.0846 0.0829 0.0820 0.0897 0.0918 0.0921 0.0920 0.0896 0.0893 0.0903 0.0909 0.0914 0.0881 0.0869 0.0792 0.0801 0.0818 0.0765
25 0.0828 0.0928 0.0920 0.0908 0.0919 0.0939 0.0939 0.0907 0.0883 0.0861 0.0872 0.0897 0.0911 0.0896 0.0893 0.0882 0.0894 0.0902 0.0802
30 0.0401 0.0606 0.0642 0.0782 0.0845 0.0964 0.1000 0.1005 0.1008 0.0996 0.0985 0.0988 0.0969 0.0960 0.0938 0.0875 0.0735 0.0699 0.0494
35 0.0380 0.0459 0.0604 0.0682 0.0828 0.0886 0.1027 0.1094 0.1106 0.1100 0.1098 0.1109 0.1087 0.1054 0.0980 0.0834 0.0756 0.0611 0.0532
40 0.0558 0.0635 0.0588 0.0679 0.0820 0.0845 0.0948 0.0985 0.1021 0.1021 0.1033 0.0994 0.0933 0.0925 0.0882 0.0741 0.0650 0.0697 0.0620
45 0.0750 0.0715 0.0746 0.0749 0.0837 0.0842 0.0826 0.0850 0.0896 0.0900 0.0893 0.0882 0.0858 0.0808 0.0798 0.0710 0.0707 0.0676 0.0711
50 0.0851 0.0935 0.0968 0.0956 0.1018 0.1007 0.0953 0.0931 0.0962 0.1019 0.1024 0.1023 0.1032 0.0999 0.0995 0.0933 0.0945 0.0912 0.0828
55 0.0768 0.0788 0.0701 0.0812 0.0979 0.0960 0.0939 0.0926 0.0943 0.0988 0.0919 0.0833 0.0853 0.0923 0.0985 0.0818 0.0707 0.0794 0.0774
60 0.0677 0.0756 0.0788 0.0730 0.0762 0.0771 0.0825 0.0839 0.0851 0.0856 0.0850 0.0835 0.0837 0.0829 0.0808 0.0777 0.0834 0.0803 0.0723
70 0.0416 0.0411 0.0416 0.0385 0.0804 0.0784 0.0928 0.0916 0.1072 0.1231 0.1121 0.1000 0.0956 0.0949 0.0926 0.0507 0.0538 0.0533 0.0538
80 0.0316 0.0273 0.0247 0.0302 0.0327 0.0323 0.0329 0.0386 0.0389 0.0444 0.0405 0.0382 0.0405 0.0390 0.0385 0.0345 0.0290 0.0316 0.0359
90 0.0330 0.0302 0.0294 0.0378 0.0408 0.0404 0.0411 0.0395 0.0411 0.0414 0.0405 0.0372 0.0367 0.0423 0.0399 0.0368 0.0285 0.0292 0.0320
</tableData>
<tableData breakPoint="25.0">
-30 -25 -20 -15 -10 -8 -6 -4 -2 0 2 4 6 8 10 15 20 25 30
-20 -0.1067 -0.1112 -0.1168 -0.1196 -0.1343 -0.1351 -0.1311 -0.1208 -0.1188 -0.1193 -0.1216 -0.1251 -0.1260 -0.1308 -0.1306 -0.1159 -0.1131 -0.1075 -0.1030
-15 -0.1151 -0.1216 -0.1278 -0.1366 -0.1465 -0.1505 -0.1518 -0.1528 -0.1559 -0.1568 -0.1566 -0.1541 -0.1517 -0.1558 -0.1503 -0.1404 -0.1316 -0.1254 -0.1189
-10 -0.1164 -0.1290 -0.1423 -0.1472 -0.1530 -0.1558 -0.1591 -0.1621 -0.1668 -0.1796 -0.1665 -0.1623 -0.1593 -0.1573 -0.1548 -0.1490 -0.1441 -0.1308 -0.1182
-5 -0.1002 -0.1135 -0.1207 -0.1265 -0.1373 -0.1441 -0.1453 -0.1456 -0.1471 -0.1475 -0.1481 -0.1461 -0.1449 -0.1417 -0.1378 -0.1269 -0.1212 -0.1139 -0.1007
0 -0.0925 -0.1016 -0.1093 -0.1141 -0.1156 -0.1181 -0.1203 -0.1212 -0.1225 -0.1222 -0.1219 -0.1208 -0.1190 -0.1168 -0.1146 -0.1130 -0.1082 -0.1005 -0.0914
5 -0.0716 -0.0735 -0.0791 -0.0846 -0.0830 -0.0857 -0.0882 -0.0910 -0.0951 -0.0965 -0.0966 -0.0915 -0.0868 -0.0851 -0.0830 -0.0846 -0.0785 -0.0733 -0.0711
10 -0.0319 -0.0358 -0.0378 -0.0424 -0.0408 -0.0445 -0.0489 -0.0544 -0.0587 -0.0543 -0.0554 -0.0533 -0.0480 -0.0435 -0.0421 -0.0436 -0.0391 -0.0352 -0.0331
15 0.0049 0.0021 0.0022 -0.0012 -0.0015 -0.0036 -0.0075 -0.0067 -0.0022 -0.0003 -0.0073 -0.0104 -0.0096 -0.0066 -0.0033 -0.0031 0.0003 0.0003 0.0030
20 0.0322 0.0474 0.0398 0.0294 0.0082 0.0022 0.0034 0.0001 -0.0067 -0.0087 -0.0107 -0.0006 -0.0097 -0.0112 -0.0166 0.0046 0.0150 0.0226 0.0074
25 0.0557 0.0527 0.0444 0.0360 0.0118 0.0051 -0.0016 -0.0078 -0.0131 -0.0078 -0.0122 -0.0061 -0.0033 -0.0049 -0.0066 0.0176 0.0261 0.0344 0.0374
30 0.0023 0.0119 0.0108 0.0036 0.0034 0.0129 0.0139 0.0119 0.0094 0.0092 0.0086 0.0092 0.0109 0.0146 0.0188 0.0190 0.0263 0.0273 0.0178
35 0.0042 0.0112 0.0109 0.0032 0.0051 0.0070 0.0163 0.0183 0.0170 0.0198 0.0218 0.0215 0.0211 0.0194 0.0171 0.0153 0.0229 0.0232 0.0163
40 0.0210 0.0286 0.0134 0.0121 0.0119 0.0165 0.0123 0.0135 0.0121 0.0135 0.0125 0.0151 0.0124 0.0142 0.0123 0.0126 0.0139 0.0291 0.0215
45 0.0267 0.0248 0.0119 0.0081 0.0105 0.0135 0.0126 0.0086 0.0078 0.0108 0.0063 0.0084 0.0093 0.0100 0.0103 0.0078 0.0117 0.0246 0.0264
50 0.0209 0.0303 0.0345 0.0266 0.0362 0.0340 0.0284 0.0237 0.0241 0.0270 0.0296 0.0314 0.0329 0.0312 0.0324 0.0321 0.0376 0.0315 0.0202
55 0.0136 0.0215 0.0189 0.0299 0.0377 0.0332 0.0286 0.0258 0.0267 0.0305 0.0256 0.0191 0.0223 0.0301 0.0369 0.0268 0.0072 0.0154 0.0128
60 -0.0062 0.0083 0.0178 0.0157 0.0332 0.0273 0.0257 0.0244 0.0271 0.0288 0.0279 0.0260 0.0262 0.0265 0.0243 0.0192 0.0223 0.0153 0.0048
70 -0.0447 -0.0366 -0.0286 -0.0287 0.0300 0.0334 0.0531 0.0483 0.0547 0.0545 0.0591 0.0625 0.0625 0.0547 0.0445 -0.0183 -0.0215 -0.0246 -0.0167
80 -0.0513 -0.0536 -0.0543 -0.0445 -0.0467 -0.0478 -0.0480 -0.0437 -0.0455 -0.0422 -0.0258 0.0152 0.0182 -0.0134 -0.0440 -0.0549 -0.0581 -0.0496 -0.0395
90 -0.0472 -0.0542 -0.0593 -0.0492 -0.0406 -0.0417 -0.0390 -0.0440 -0.0431 -0.0432 -0.0424 -0.0438 -0.0433 -0.0377 -0.0400 -0.0496 -0.0597 -0.0504 -0.0393
</tableData>
</table>
</product>
</function>
<function name="aero/coefficient/dCx_lef">
<description>
Cx due to leading edge flaps coefficient.
</description>
<product>
<property>aero/qbar-psf</property>
<property>metrics/Sw-sqft</property>
<property>fcs/fly-by-wire/lef/lef-pos-r-norm</property>
<difference>
<table name="table/Cx_lef">
<independentVar lookup="row">aero/alpha-deg</independentVar>
<independentVar lookup="column">aero/beta-deg</independentVar>
<tableData>
-30 -25 -20 -15 -10 -8 -6 -4 -2 0 2 4 6 8 10 15 20 25 30
-20 -.0277 -.0285 -.0318 -.0256 -.0184 -.0156 -.0159 -.0162 -.0174 -.0181 -.0179 -.0167 -.0168 -.0156 -.0153 -.0225 -.0287 -.0254 -.0246
-15 -.0314 -.0310 -.0259 -.0191 -.0161 -.0157 -.0162 -.0173 -.0189 -.0193 -.0186 -.0186 -.0170 -.0155 -.0154 -.0184 -.0252 -.0303 -.0307
-10 -.0295 -.0298 -.0260 -.0233 -.0209 -.0215 -.0214 -.0224 -.0230 -.0224 -.0220 -.0217 -.0213 -.0205 -.0199 -.0223 -.0250 -.0288 -.0285
-05 -.0148 -.0153 -.0163 -.0150 -.0167 -.0173 -.0185 -.0189 -.0193 -.0196 -.0192 -.0185 -.0179 -.0178 -.0162 -.0155 -.0168 -.0158 -.0153
00 -.0136 -.0149 -.0143 -.0136 -.0168 -.0178 -.0182 -.0188 -.0197 -.0202 -.0196 -.0188 -.0180 -.0172 -.0160 -.0144 -.0151 -.0149 -.0144
05 -.0029 -.0010 -.0003 -.0005 -.0004 -.0006 -.0017 -.0027 -.0033 -.0033 -.0033 -.0024 -.0014 -.0004 0.0004 0.0013 0.0011 -.0002 -.0021
10 0.0085 0.0104 0.0116 0.0121 0.0131 0.0125 0.0122 0.0119 0.0104 0.0099 0.0096 0.0106 0.0117 0.0126 0.0127 0.0117 0.0112 0.0100 0.0081
15 0.0145 0.0168 0.0196 0.0218 0.0225 0.0231 0.0238 0.0238 0.0231 0.0224 0.0224 0.0226 0.0227 0.0223 0.0222 0.0215 0.0193 0.0165 0.0142
20 0.0165 0.0170 0.0205 0.0226 0.0252 0.0245 0.0236 0.0232 0.0233 0.0221 0.0232 0.0241 0.0250 0.0267 0.0276 0.0250 0.0229 0.0212 0.0189
25 0.0138 0.0172 0.0157 0.0178 0.0226 0.0251 0.0264 0.0274 0.0271 0.0278 0.0275 0.0271 0.0267 0.0249 0.0252 0.0203 0.0183 0.0198 0.0164
30 0.0092 0.0122 0.0129 0.0165 0.0202 0.0253 0.0279 0.0295 0.0296 0.0301 0.0309 0.0306 0.0278 0.0261 0.0247 0.0200 0.0174 0.0167 0.0137
35 0.0099 0.0134 0.0162 0.0149 0.0208 0.0229 0.0273 0.0286 0.0303 0.0305 0.0286 0.0307 0.0292 0.0259 0.0253 0.0194 0.0207 0.0179 0.0144
40 0.0206 0.0202 0.0236 0.0246 0.0289 0.0293 0.0290 0.0320 0.0317 0.0328 0.0314 0.0305 0.0289 0.0281 0.0262 0.0219 0.0209 0.0175 0.0179
45 0.0257 0.0274 0.0266 0.0236 0.0266 0.0283 0.0236 0.0298 0.0268 0.0309 0.0307 0.0280 0.0238 0.0284 0.0254 0.0224 0.0254 0.0262 0.0245
</tableData>
</table>
<table name="table/Cx_dh0">
<independentVar lookup="row">aero/alpha-deg</independentVar>
<independentVar lookup="column">aero/beta-deg</independentVar>
<tableData>
-30 -25 -20 -15 -10 -8 -6 -4 -2 0 2 4 6 8 10 15 20 25 30
-20 -.1072 -.1061 -.1129 -.1096 -.1084 -.1040 -.0978 -.0959 -.0932 -.0933 -.0956 -.0957 -.0962 -.0967 -.0992 -.1004 -.1037 -.0969 -.0980
-15 -.1006 -.1035 -.1025 -.0998 -.0966 -.0966 -.0960 -.0967 -.0974 -.0978 -.0975 -.0977 -.0972 -.0968 -.0974 -.1006 -.1033 -.1043 -.1014
-10 -.0853 -.0901 -.0903 -.0906 -.0896 -.0903 -.0907 -.0918 -.0929 -.0982 -.0930 -.0919 -.0912 -.0898 -.0904 -.0914 -.0911 -.0909 -.0861
-05 -.0546 -.0597 -.0637 -.0662 -.0727 -.0755 -.0767 -.0778 -.0780 -.0784 -.0776 -.0766 -.0750 -.0733 -.0703 -.0638 -.0613 -.0573 -.0522
00 -.0355 -.0381 -.0404 -.0416 -.0450 -.0461 -.0469 -.0478 -.0485 -.0489 -.0483 -.0475 -.0467 -.0449 -.0433 -.0399 -.0387 -.0364 -.0338
05 -.0012 0.0000 0.0010 0.0004 -.0036 -.0042 -.0049 -.0055 -.0071 -.0066 -.0072 -.0061 -.0050 -.0035 -.0027 0.0013 0.0019 0.0000 -.0021
10 0.0359 0.0491 0.0458 0.0490 0.0503 0.0508 0.0499 0.0509 0.0497 0.0490 0.0490 0.0500 0.0506 0.0505 0.0503 0.0490 0.0458 0.0419 0.0359
15 0.0780 0.0845 0.0932 0.0979 0.1028 0.1051 0.1069 0.1079 0.1078 0.1072 0.1076 0.1072 0.1063 0.1053 0.1028 0.0979 0.0932 0.0845 0.0780
20 0.1183 0.1236 0.1219 0.1210 0.1287 0.1308 0.1311 0.1310 0.1286 0.1283 0.1293 0.1299 0.1304 0.1271 0.1259 0.1182 0.1191 0.1208 0.1155
25 0.1267 0.1367 0.1359 0.1347 0.1358 0.1378 0.1378 0.1346 0.1322 0.1300 0.1311 0.1336 0.1350 0.1335 0.1332 0.1321 0.1333 0.1341 0.1241
30 0.0941 0.1146 0.1182 0.1322 0.1385 0.1504 0.1540 0.1545 0.1548 0.1536 0.1525 0.1528 0.1509 0.1500 0.1478 0.1415 0.1275 0.1239 0.1034
35 0.0885 0.0964 0.1109 0.1189 0.1333 0.1391 0.1532 0.1599 0.1611 0.1605 0.1603 0.1614 0.1592 0.1559 0.1485 0.1339 0.1261 0.1116 0.1037
40 0.1089 0.1166 0.1119 0.1210 0.1351 0.1376 0.1479 0.1516 0.1552 0.1552 0.1564 0.1525 0.1464 0.1456 0.1413 0.1272 0.1181 0.1228 0.1151
45 0.1232 0.1197 0.1228 0.1231 0.1319 0.1324 0.1308 0.1332 0.1378 0.1382 0.1375 0.1364 0.1340 0.1380 0.1280 0.1192 0.1189 0.1158 0.1193
50 0.1135 0.1185 0.1184 0.1171 0.1243 0.1279 0.1279 0.1258 0.1257 0.1281 0.1258 0.1228 0.1221 0.1186 0.1180 0.1108 0.1121 0.1122 0.1072
55 0.1137 0.1195 0.1146 0.1161 0.1209 0.1211 0.1211 0.1195 0.1183 0.1200 0.1185 0.1153 0.1160 0.1152 0.1135 0.1087 0.1072 0.1121 0.1063
60 0.1037 0.1090 0.1094 0.1049 0.1109 0.1123 0.1181 0.1184 0.1170 0.1147 0.1141 0.1126 0.1129 0.1129 0.1109 0.1049 0.1094 0.1090 0.1037
70 0.0857 0.0858 0.0857 0.0796 0.0851 0.0919 0.1150 0.1087 0.1089 0.1025 0.1022 0.1007 0.1012 0.0994 0.0952 0.0897 0.0958 0.0959 0.0958
80 0.0842 0.0807 0.0787 0.0778 0.0791 0.0793 0.0805 0.0846 0.0808 0.0821 0.0802 0.0799 0.0826 0.0800 0.0709 0.0756 0.0765 0.0785 0.0820
90 0.0847 0.0813 0.0798 0.0824 0.0843 0.0843 0.0853 0.0841 0.0858 0.0864 0.0857 0.0828 0.0817 0.0857 0.0816 0.0797 0.0771 0.0786 0.0820
</tableData>
</table>
</difference>
</product>
</function>
<!--<function name="aero/coefficient/dCx_sb">
<description>
Cx due speed brake coefficient.
These values are wrong. Mistake in TP 1538.
</description>
<product>
<property>aero/qbar-psf</property>
<property>metrics/Sw-sqft</property>
<property>fcs/speedbrake-pos-norm</property>
<table name="table/dCx_sb">
<independentVar lookup="row">aero/alpha-deg</independentVar>
<tableData>
-20 -.0101
-15 -.0101
-10 -.0101
-05 -.0101
00 -.0101
05 -.0358
10 -.0790
15 -.1227
20 -.1827
25 -.1892
30 -.1988
35 -.2000
40 -.1874
45 -.1673
50 -.1476
55 -.1310
60 -.1279
70 -.1325
80 -.1250
90 -.1250
</tableData>
</table>
</product>
</function>-->
<function name="aero/coefficient/dCx_sb">
<description>
Cx due speed brake coefficient.
Source: TN-D-8176
</description>
<product>
<property>aero/qbar-psf</property>
<!--<property>metrics/Sw-sqft</property>--><v>280</v>
<property>fcs/speedbrake-pos-norm</property>
<table name="table/dCx_sb">
<independentVar lookup="row">aero/alpha-deg</independentVar>
<tableData>
-10 -.0790
-05 -.0498
00 -.0500
05 -.0498
10 -.0493
15 -.0483
20 -.0470
25 -.0453
30 -.0433
35 -.0410
40 -.0383
45 -.0354
50 -.0322
55 -.0287
60 -.0250
70 -.0171
80 -.0087
90 0.0000
</tableData>
</table>
</product>
</function>
<function name="aero/coefficient/Cx_q">
<description>
Cx due to pitch rate coefficient.
</description>
<product>
<property>aero/qbar-psf</property>
<property>metrics/Sw-sqft</property>
<property>aero/ci2vel</property>
<property>velocities/q-rad_sec</property>
<table name="table/Cx_q">
<independentVar lookup="row">aero/alpha-deg</independentVar>
<tableData>
-20 .953
-15 .953
-10 .953
-05 1.55
00 1.90
05 2.46
10 2.92
15 3.30
20 2.76
25 2.05
30 1.50
35 1.49
40 1.83
45 1.21
50 1.33
55 1.61
60 .910
70 3.43
80 .617
90 .273
</tableData>
</table>
</product>
</function>
<function name="aero/coefficient/dCx_q-lef">
<description>
Cx due to pitch rate due to leading edge flaps coefficient.
Source for alpha 50+: TN-D-8176
</description>
<product>
<property>aero/qbar-psf</property>
<property>metrics/Sw-sqft</property>
<property>aero/ci2vel</property>
<property>velocities/q-rad_sec</property>
<property>fcs/fly-by-wire/lef/lef-pos-r-norm</property>
<table name="table/dCx_q-lef">
<independentVar lookup="row">aero/alpha-deg</independentVar>
<tableData>
-20 -1.22
-15 -1.22
-10 -1.22
-05 -1.66
00 -1.62
05 -1.58
10 -1.96
15 -2.51
20 -2.04
25 -1.64
30 -.824
35 -.817
40 -1.10
45 -.550
50 0.000
55 0.000
60 0.000
70 0.000
80 0.000
90 0.000
</tableData>
</table>
</product>
</function>
</axis>
<function name="aero/coefficient/CDz">
<description>Drag</description>
<product>
<sum>
<property>aero/coefficient/CDgear</property>
<property>aero/coefficient/CDtef</property>
<property>aero/coefficient/CDwave</property>
</sum>
<sin>
<property>aero/alpha-rad</property>
</sin>
<v>-1</v>
</product>
</function>
<function name="aero/coefficient/CLz">
<description>Lift</description>
<product>
<sum>
<property>aero/coefficient/CLtef</property>
</sum>
<cos>
<property>aero/alpha-rad</property>
</cos>