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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749
|
<html>
<head>
<link rel="stylesheet" href="acmdoc-styles.css">
<title>ACM - Pilot's Operating Handbook</title>
</head>
<body>
<h1>ACM - Pilot's Operating Handbook</h1>
<p align=right>
by Riley Rainey
<br>updated by Umberto Salsi
</p>
<h2>Contents</h2>
<a href="acmdoc.html">Back to general contents</a>
<blockquote>
<a href="#tutorial">Tutorial</a><br>
<blockquote style="margin-top: 0; margin-bottom: 0;">
<a href="#takeoff">Take-off</a><br>
<a href="#landing">Landing</a><br>
</blockquote>
<a href="#themagneticcompass">The Magnetic Compass</a><br>
<a href="#theclassicinstrumentspanel">The Classic Instruments Panel</a><br>
<a href="#theheadupdisplay">The Head-Up Display</a><br>
<a href="#thehsi">The HSI</a><br>
<a href="#theadf">The ADF</a><br>
<a href="#theautopilotsystem">The Auto Pilot System</a><br>
<blockquote style="margin-top: 0; margin-bottom: 0;">
<a href="#theautopilot">The Auto-pilot</a><br>
<a href="#theautothrottle">The Auto-throttle</a><br>
<a href="#theautocoordinator">The Auto-coordinator</a><br>
<a href="#theautonavigator">The Auto-navigator</a><br>
<a href="#theautolanding">The Auto-landing</a><br>
<a href="#theautoturn">The Auto-turn</a><br>
</blockquote>
<a href="#lightspanel">Lights Panel</a><br>
<a href="#theradarsystem">The Radar System</a><br>
<a href="#electroniccountermeasures">Electronic Countermeasures</a><br>
<a href="#weaponssystems">Weapon Systems</a><br>
<a href="#drones">Drones</a><br>
<a href="#stealthmode">Stealth Mode</a><br>
</blockquote>
<a name=tutorial></a>
<h2>Tutorial</h2>
<a name=takeoff></a>
<h3>Take-off</h3>
<p>
Start the launcher program acm.tcl. The first thing to do is checking
the whole program be properly configured. Open the <b>Configure panel</b>
and make sure the executable program and the objects directory be set.
Set a frame rate of 20 Hz, mouse mode normal, window size of 700 x 500.
It may need to exit the launcher (press the the Quit button) and start it
again in order to see the list of the available planes in the You panel.
</p>
<p>
In the <b>Plane panel</b> choose the Cessna 172 retractable gear
C-172 with about 200 lb of fuel and 200 lb of payload (your
body). Select the classic instruments panel view. Set the eye to
screen distance to something like 50 cm and 10 degrees of downward
view angle.
</p>
<p>
In the <b>Departure panel</b> choose the Dallas scene
and the ADS airport, runway 15.
</p>
<p>
In the <b>DIS panel</b> disable the DIS protocol.
</p>
<p>
Press the Run button to start the actual ACM program. Your mouse is
the control stick. The neutral position is the center of the window.
Moving the mouse away from you pitches the plane down, moving it back
pitches the plane up. Left and right inputs roll the aircraft in the
corresponding direction and turn the nose wheel.
</p>
<p>
Press F9 to cage the attitude indicator: this will speed-up the alignment process
that would take several minutes otherwise.
</p>
<blockquote>
<b>Hint.</b> Controlling the aircraft is much simpler by enabling the
rate control mode (press SHIFT-E).
</blockquote>
<p>
Press the full throttle key (the "4" key on the main keyboard, NOT the
numeric keypad!). Keep the mouse in the neutral position until you
are moving at about 55 KT, then gently pull the mouse about two-thirds
of the way down the view window. You should pitch up and lift off the
ground fairly easily. Maintain a pitch angle between 7 and 10 degrees
by gently moving the mouse and leave your airspeed build.
</p>
<p>
When the vertical speed indicator indicates a stable positive climb rate
(500 fpm or so), you may retract the landing gear by pressing the "g" key.
Level the plane at a safe altitude of about 2000 ft and throttle down
to about 80% of the engine RPM (use the "2" and "3" keys of the main
keyboard, NOT those of the numeric keypad).
</p>
<blockquote>
<b>Hint.</b> Move the mouse very gently around the center of
the window, looking at the attitude indicator for changes. For
normal level flight you should keep about +3 degrees of pitch
and zero bank angle.
</blockquote>
<p>Congratulation, you successfully made your first take-off!</p>
<a name=landing></a>
<h3>Landing</h3>
<p>
We are still flying the C-172 and now it's time to land.
Set engine RPM to about 50% (keys "2" and "3") and deploy the
landing gear by pressing the "g" key. Reduce the pitch and try
to keep the airspeed at 75 kt and the descending rate at -400
fpm. Keep wings level. In this our first attempt we will land
randomly somewhere on the green field and will not attempt to
actually land on a runway.
</p>
<blockquote style="border-style: solid; padding: 0.5em">
<b>Rule.</b> The normal glide slope for landing should be around
-3 degrees. In order to keep a glide slope near to this value,
the descent speed should be about 5 times the airspeed. For
example, if the airspeed is 100 kt, then the descent rate should
be around 5 x 100 = 500 fpm.
</blockquote>
<p>
Look at the radar altimeter. When it indicates 50 ft from
ground it's time to start the flare maneuver by reducing the
sink rate to about -200 fpm or less, trying to touch the ground
as gently as you can. But do not hesitate to much because the
speed decreases very rapidly and you risk to stall! As the radar
altimeter indicates zero, put the engine to idle power (key "1")
and gently lower the nose gear. Leave the plane to slow down,
or press "b" to engage the brakes.
</p>
<p>Congratulation, you successfully made your first landing!</p>
<a name=themagneticcompass></a>
<h2>The Magnetic Compass</h2>
<p>
The upper-right corner of the window displays the magnetic compass,
simulated by the program mostly for didactical purposes. The
compass card contains the magnets and it is mounted on a small pivot
point located above its center of mass. This allows the compass card to
rotate freely and to float as a pendulum by a maximum of +/−18°
in pitch and roll following the direction of the apparent vertical line.
Above this angular limit the compass hits violently the side of the
casing and its indication becomes unreliable for some time.
</p>
<pre>
</pre>
<center>
<img src="acmdoc_html-magnetic_compass.png">
<p>
<b>The magnetic compass.</b>
</p>
</center>
<pre>
</pre>
<p>
The magnetic compass does not simply indicate the magnetic heading (MH) of
the aircraft, but instead it moves and rotates under the dynamic and magnetic
effects. By definition, the <b>magnetic north</b> is the direction of the
magnetic field vector projected over the local horizontal plane. That's why
the magnetic compass card has to be as close as possible to the horizontal
plane in order to align its magnets with the horizontal component of the
magnetic field.
</p>
<p>
When the aircraft is at rest on the runway, or it is flying
in straight, level flight at constant speed, the compass card is perfectly
parallel to the horizon and it rotates until it is perfectly aligned with
the horizontal component of the Earth magnetic field. On the contrary,
when the aircraft is turning or otherwise accelerating, the compass card
deviates from the expected MH even more than 30 degrees under the effect
of the vertical component of the magnetic field.
The compass cards displayed by the others instruments (HSI, ADF and HUD)
are feed by the <i>flux gate</i> sensor and each stabilized by its own
gyroscope. The MH indicated by these instruments does not suffer from the
the deviations of the magnetic compass.
</p>
<p>
In case of instruments failure, turns based on the magnetic compass
have to be timed, because the magnetic compass cannot provide a valid
reference for the final heading. For example, starting from MH=east and
having to rotate at MH=north, the pilot shall perform a timed standard
left turn at 3°/s for exactly 30 seconds.
</p>
<p>
The magnetic field on the Earth is calculated using the World Magnetic
Model library from NOAA (https://www.ngdc.noaa.gov/geomag/WMM/soft.shtml)
and it is used to display the current magnetic heading of the aircraft,
to rotate the magnetic compass, and to calculate the magnetic bearing at
each VOR station. The file of the coefficients objects/WMM.COF provided
along the package is valid for dates in the range from year 2015 up to
year 2019 included; beyond this range, a warning is displayed and a new
updated file coefficients should be installed.
</p>
<p>
It is important to note that the components of the Earth's magnetic field
are calculated respect to the current year and day, so updated navigation
charts may be needed. The navigation charts provided along this package
are outdated, so magnetic bearings there indicated may differ more or
less from the calculated values.
</p>
<a name=theclassicinstrumentspanel></a>
<h2>The Classic Instruments Panel</h2>
<p>
Press Shift-H to alternate between the HUD and the classic instruments
panel. The classic instruments panel mimics the instrumental equipment of
a typical light aircraft, as the Cessna 172-RG. The program does not simply
reproduce the same informations already shown by the HUD, but it tries to
emulate also errors and limitations introduced by these instruments and
that make the job of the pilot harder (and then, more interesting for us).
In the following we will describe each instrument and its properties. The
interested reader should refer to the aeronautical literature for more
informations about their proper usage.
</p>
<pre>
</pre>
<center>
<img src="acmdoc_html-classic-panel.png">
<p>
<b>Instruments of the classic panel.</b>
</center>
<pre>
</pre>
<p>
In the classic instrument mode the HSI and ADF always indicate the MH, as the
compass card of these instruments is driven by the flux gate sensor. In the HUD
mode, on the contrary, the HSI and ADF are driven by the inertial platform and
are able to indicate both TH and MH.
</p>
<h3>Turn and slip indicator</h3>
<p>
The pointer moves indicating the rate of turn around the vertical axis of the
aircraft. Normally the aircraft z axis is very close to the geodetic vertical,
so that the indicated value is nearly equal to the actual yaw rate.
At high roll angles or high bank angles, this is not strictly true and small
differences between the actual yaw rate and the indicated value may arise.
</p>
<p>
The central mark of the turn indicator indicates zero turn rate, while the
other marks indicates 1.5°/s and 3°/s turn to the left or to the right.
</p>
<p>
Below the turn rate indicator there is a curved glass containing a little
ball. This ball moves from the central position under the action of a
lateral acceleration, typically as a consequence of an uncoordinated turn.
</p>
<h3>Airspeed indicator</h3>
<p>
It indicates IAS on a non-linear scale (kt). This value is calculated using the
formula below:
</p>
<blockquote>
IAS = TAS * sqrt(rho/rho0) * (1 + 1/8*(1 - delta)*M^2)
</blockquote>
<p>
being TAS the true airspeed along the x axis, rho is the air density at the current altitude, rho0 the air density at sea level, delta is the ratio P/P0 between the current air pressure and the pressure at sea level, and M is the Mach number.
</p>
<p>
The digital number indicates the Mach number in the range 0.00 - 9.99.
</p>
<h3>Attitude indicator</h3>
<p>
Also known as <i>artificial horizon</i>, it provides to the pilot
the pitch and the bank angles. Inside this instrument there is a gyro
whose axis is parallel to the local apparent vertical direction.
</p>
<p>
An <i>erection system</i> (slowly) forces the axis to follow this
vertical, but this alignment process can take some time, typically from 2 to 5
minutes, depending on the amplitude of the misalignment. Accelerations produced
by speed changes (takeoff) and prolonged turns can misalign the gyro. To
prevent that misalignment, the erection system gets disabled if the measured
acceleration differs from the expected "g" value +/-2%. That it means, for
example, that turning with angles of bank greater than 12° will not disturb
the alignment.
</p>
<p>
The gyro can follow the aircraft movements up to +/-70° angles of
bank and pitch. Above this limit the gyro will hit the internal lock,
tumbling abruptly and loosing its alignment. For this reason the pilots
has also a "cage" knob (F9) that forces the alignment of the gyro with its
case, speeding-up the following fine alignment performed by the erection
system. The "cage" knob is also useful to fast align the gyro at the
start of the program.
</p>
<p>
The orientation of the gyro is represented to the pilot as a ball. Over this
ball are drawn the horizon line and several pitch marks separated by 5° up
to +/-30°. The stylized figure of a little aircraft's wings can be moved up
and down by the pilot (F11, F12) so that it becomes aligned with the line of
the horizon. This adjustment should be performed in level flight at constant
speed so to indicate zero pitch. Once so adjusted, the indicated pitch will
match the angle of climb as indicated by the flight path marker of the HUD,
provided that these maneuvers are performed at the same airspeed at which that
adjustments was made.
</p>
<p>
A triangle indicates the angle of bank, at steps of 10, 20, 30, 60 and
90 degrees. This triangle moves in the opposite direction of the horizon,
so to indicate the actual direction of the turn.
</p>
<p>
Flying with the classic instruments panel may be challenging at first because
there is some delay between pilot's input and the actual feedback from the
instruments. Things get simpler if you accurately plan every maneuver before
starting any action. The two rules below should help:
</p>
<blockquote style="border: solid 2px; padding: 0.5em;">
<p>
<b>Bank rule.</b>
To attain the standard rate of turn of 3°/s in a coordinated turn, first
calculate the required angle of bank as given by this approximated formula:
</p>
<center>
bank = 0.15 * airspeed
</center>
</blockquote>
<pre>
</pre>
<center>
<img src="acmdoc_html_bank_vs_tas.png">
<p>
<b>Bank angle versus TAS.</b>
</center>
<pre>
</pre>
<p>
For example, at 100 kt the angle of bank is 15°. You can calculate easily
this value taking the airspeed, dropping the last digit and then adding half of
its value. Then roll-in at this angle of bank looking at the attitude
indicator: once the aircraft starts to turn, adjust the rate looking at the
turn indicator.
</p>
<blockquote style="border: solid 2px; padding: 0.5em;">
<p>
<b>Pitch rule.</b>
At constant airspeed, changes in vertical speed are related to changes
in pitch angle by this approximated formula:
</p>
<center>
vertical_speed_change = 2 * pitch_change * airspeed
</center>
</blockquote>
<p>
For example, flying at 100 kt, every degree of pitch change will result in a
change of about 200 fpm of vertical speed. Use the pitch scale of the attitude
indicator to move the aircraft's nose to the expected pitch angle. Then, some
seconds later, the VSI will indicate the actual vertical speed so achieved
allowing to fine-tuning the pitch.
</p>
<h3>Altitude indicator</h3>
<p>
This instruments indicates the altitude. The digital display shows the flight
level (bigger digits) followed by the two less significant
digits of the current altitude. The pointer indicated tens feet. Since in
ACM the atmospheric conditions are always stable and equal to the
standard atmosphere, the indicated altitude is also the actual altitude
above the sea level (MSL).
</p>
<p>
By default the altimeter indicates the standard pressure altitude (29.92 inHg)
but you can change the isobaric level of reference pressing F7 and F8.
</p>
<p>
For negative altitudes, the instrument passes from 0 to 99990 ft, then
99980 ft and so on.
</p>
<h3>Vertical speed indicator (VSI)</h3>
<p>
It indicates the rate of change of the altitude from −4000 ft/min up to
+4000 ft/min. This instrument has a lag of about 3 seconds, so it takes
some time before it stabilizes to the actual vertical speed. Changes
in altitude should then be made with the aid of the attitude indicator:
first, move the aircraft to the expected pitch, then look at the VSI
for fine adjustment of the desired vertical speed rate.
</p>
<a name=theheadupdisplay></a>
<h2>The Head-Up Display</h2>
<p>The
Head-Up Display (HUD) is a collection of indicators that permits
pilots to focus their attention on what's going on outside of the
cockpit. These indicators are projected onto a flat pane of glass
located near the windscreen. Much of the information is displayed
graphically to give the pilot a quicker understanding of the
immediate situation.
</p>
<pre>
</pre>
<center>
<img src="acmdoc_html_hud.png">
<p><b>The Heads-Up Display.</b></p>
</center>
<pre>
</pre>
<h3>Ladders</h3>
<p>
Four tape-style "ladders" display basic flight information. On the left,
is the aircraft <b>true airspeed</b> (TAS). Each minor tick on the airspeed
ladder represents 10 nautical miles per hour (also known as knots and
abbreviated "kt").
</p>
<p>
On the right is the altitude over the sea level (MSL). Each tick
represents 100 feet. A rate-of-climb readout is located just below this
ladder; rate-of-climb is expressed in feet per minute.
</p>
<p>In
the lower center is a horizontal heading ladder. Each tick represents
five degrees.
</p>
<p>In
the center is an attitude ladder. Each line corresponds to ten
degrees of aircraft pitch. The ladder rolls as the aircraft does,
providing an artificial horizon.
</p>
<h3>HUD Compass</h3>
<p>
The compass displays the the true heading (TH, default) or the magnetic
heading (MH). Press <b>Shift-M</b> to switch between the two modes.
The HSI displays the mode currently selected. Implementation note:
the local magnetic variation is that of the nearest NAVAID station or
ILS station.
</p>
<h3>Angle of Attack</h3>
<p>
The
ACM HUD has two indicators to give the pilot cues as to the planes
current angle of attack and sideslip. First, above the altitude
ladder, is a readout of the plane's current angle of attack in
degrees. The ACM F-16 will stall at a positive angle of 30 degrees
and a negative angle of -30 degrees.<br>
<br>
Additionally,
a plane-shaped "flight path marker" indicates the
aircraft's current direction of travel. Level flight occurs when the
flight path marker is aligned with the zero- degree artificial
horizon line.
</p>
<h3>The G-Meter</h3>
<p>
A readout of the current vertical G-force on the pilot is located above
the airspeed ladder.
</p>
<h3>Weapon State</h3>
<p>
Below the throttle indicator are discretes that show the state of the
currently selected weapon system.
</p>
<h3>Turn and slip indicator</h3>
<pre>
</pre>
<center>
<img src="acmdoc_html_bank.gif">
<p><b>The turn and slip indicator.</b></p>
</center>
<pre>
</pre>
<p>
The <i>turn and slip indicator</i> displays the yaw rate and the lateral
acceleration. The triangle indicates the standard rates of turn of 1.5°/s
and 3°/s. The vertical bar indicates the lateral acceleration,
every tick being 0.25 g. The left part of the figure above illustrates
a left turn at 3°/s with about 0.4 g of lateral acceleration
(<i>uncoordinated turn</i>). The right part of the figure illustrates a
<i>coordinated turn</i> without lateral acceleration. Coordinated turns
are obtained combining ailerons and rudder.
</p>
<h3>Mach-meter</h3>
<p>
The Mach number is the ratio between the airspeed and the speed of the sound
at the current altitude. The table below shows the speed of the sound at
some typical altitudes:
</p>
<pre>
</pre>
<center>
<table border=1 cellspacing=0 cellpadding=5>
<tr>
<th>Altitude (ft)</th>
<th>Speed of the sound (kt)</th>
</tr>
<tr><td align=right>0</td><td align=right>659</td></tr>
<tr><td align=right>10000</td><td align=right>640</td></tr>
<tr><td align=right>20000</td><td align=right>615</td></tr>
<tr><td align=right>30000</td><td align=right>590</td></tr>
</table>
</center>
<pre>
</pre>
<p>
The Mach number appears only when the speed is at least 0.20 Mach at the
current altitude.
</p>
<h3>Radar altimeter</h3>
<p>
At low altitude, below 2500 ft over the terrain, the radar altimeter
scale is displayed. The radar altimeter shows the distance in hundreds
of feet between the terrain and the wheels of the main gear.
</p>
<a name=thehsi></a>
<h2>The HSI</h2>
<p>
The Horizontal Situation Indicator, or HSI, is a nifty device to aid in
instrument flying. It receives and displays VOR/DME stations and ILS stations.
The compass card of the instrument gets automatically oriented toward the
magnetic north.
A sensor of the earth magnetic field (also known as <i>flux gate</i>) detects
the orientation of the magnetic north.
A gyroscope provides short term stability while the aircraft is
maneuvering and, when in level flight, the flux gate provides the correction
to the gyroscope drift.
The result is an instrument that provides highly accurate aircraft heading
in both turning and straight flight, without a requirement for the pilot to
manually adjust for drift as in a standard directional gyro.
</p>
<blockquote>
<b>NOTE.</b> Instruments mounted on the real aircraft have both the
<b>slave</b> mode (as described here) and the <b>free</b> mode. When the
pilot selects this latter mode, the flux gate gets disabled (for example
because a failure) and the HSI operates simply as a directional gyro that
needs to be manually aligned with the magnetic compass.
</blockquote>
<p>
In ACM the HSI system occupies two slots of the instrument panel: the
left slot is the control panel and the right slot is the HSI display. The HSI
panel receives radio signals from VOR, DME, LOCATOR and GS stations,
it elaborates all these informations and then it feed the HSI display.
</p>
<p>
To save space on the screen, these two panels share the same area with
the ADF receiver and the radar system.
Use the <b>r</b> key to change radar/ADF modes until the HSI is displayed.
</p>
<blockquote>
<p>
<b>The HSI control panel.</b>
It displays several informations. <b>Mode</b> can be NAV1, NAV2, RNAV1,
..., RNAV5. These modes will be described below in separated paragraph.
There are two independent NAV1 and NAV2 receivers and five RNAV calculators.
Use the <b>SPACE</b> to switch between NAV and RNAV modes.
</p>
<p>
<b>FRQ</b> is the frequency of the station, as selected by pilot (<b>9,
0</b>).
</p>
<p>
Once the station has been selected and properly tuned, the receiver
starts listening for the signal emitted from the station that can provide
also its name displayed in <b>STA</b> (station name).
</p>
<p>
If the station provides also
a distance measurement equipment (<b>DME</b>) this distance gets displayed.
</p>
<p>
The RAD and DST fields are meaningful only in RNAV mode and are described
in the respective paragraph.
</p>
<p>
<b>The HSI display.</b>
In the TH mode (the default, as shown in the figures below) the indicated
north is the geographic north. In the MH mode (<b>Shift-M</b>) the
indicated north is the magnetic north. The TH mode is mainly useful
for estimated navigation based on geographic charts, since these maps
are always oriented toward the geographic north pole. The MH mode is
the preferred mode for aeronautical navigation, since all the angular
indications (VOR, ILS and runways headings) are always referred to the
local magnetic north.
</p>
<p>
The curse deviation indicator (the purple segment at the center of the
display) gets displayed only if the corresponding radio signal is
correctly received. The slope deviation indicator (the purple arrow
to the right of the display) gets displayed only if the corresponding
signal is correctly received.
</p>
<p>
Use the <b>7</b> and <b>8</b> keys to orient the <i>Omni Bearing Selector</i>
(OBS). The OBS displays the digital value of the selected direction.
</p>
</blockquote>
<h3>HSI for VOR stations</h3>
<p>
In NAV mode the HSI displays the VOR/DME bearing, angular deviation (CDI)
from the selected radial (OBS) and distance DME.
</p>
<pre>
</pre>
<center>
<img src="acmdoc_html_hsi-nav.png">
<p><b>The HSI tuned on a VOR/DME station in NAV mode.</b></p>
</center>
<pre>
</pre>
<p>
Having two NAV receivers is very useful, both for navigation
and to approach the runway. For example, we can tune NAV1 on the VOR
station we are leaving and NAV2 on the station we are going to. Or,
we can tune NAV1 on the terminal-VOR of the airport, and NAV2 on the
ILS station.
</p>
<p>
The frequency of a VOR station ranges from 108.x0 MHz up to 111.x5
MHz with x being an even digit 0, 2, 4, 6, 8 for <i>terminal VOR</i>,
and from 112.00 MHz to 117.95 MHz for <i>en-route VOR</i>.
</p>
<p>
The signal range of a terminal VOR is about 40 NM, and the range of
an en-route VOR is about 200 NM due to the limited power emitted by these
stations. Moreover, electromagnetic signals at hight frequency (100 MHz and
more, as those emitted from VOR stations are) propagates in a direct line
of sight. Because of the curvature of the Earth, the range at which the
signal can be received may be even more limited depending on the current
altitude of the aircraft:
</p>
<blockquote>
range = K * (sqrt(station_altitude) + sqrt(aircraft_altitude))
</blockquote>
<p>
where the altitudes are expressed in feet and the resulting distance in NM.
The value of the constant K in the formula above is K=1.064 as you can
easily prove with simple geometrical considerations assuming the Earth to
be a sphere of radius R=3438 NM. Then, for example, if the altitude of the
station is 500 ft and the altitude of the aircraft is 4000 ft, the signal
cannot be received beyond the distance of 91 NM.
</p>
<pre>
</pre>
<center>
<img src="acmdoc_html-vor-line-sigth.png">
<table width="50%"><tr><td>
<b>The Earth is round and radio signals at high frequency (100+ MHz)
propagate in stright line.</b>
</td></tr></table>
</center>
<pre>
</pre>
<p>
Every dot of the CDI scale indicates a deviation of 1.7° from the
selected radial. For stations providing a DME, the distance from the
selected radial is given by this simple formula:
</p>
<blockquote>
distance_from_radial = distance_from_DME / 100 * 3 * CDI
</blockquote>
<p>
For example, if the distance from the DME station is 20.0 NM and the
CDI indicates 2 dots, then the distance from the selected radial is
20/100*3*2=1.2 NM.
</p>
<h3>HSI for ILS stations</h3>
<p>
In NAV mode, also ILS stations can be tuned.
</p>
<pre>
</pre>
<center>
<img src="acmdoc_html_hsi-ils.png">
<p><b>The HSI tuned on a ILS station.</b></p>
</center>
<pre>
</pre>
<p>
The frequency of ILS stations ranges from 108.x0 MHz up to 111.x5 MHz,
with x being an odd digit 1, 3, 5, 7, 9.
</p>
<p>
An ILS station can be received up to the distance of about 18 NM and in
a range of +/-50° from its bearing angle.
</p>
<p>
Every dot of the CDI scale indicates a deviation of 0.4° from the
LOCATOR plane (<b>not the deviation from the OBS,</b> but the pilot can
still select an OBS for its own reference). Every tick of the glide slope
scale indicates a deviation of 1° from the glide path angle of the
ILS station (typically 3°).
</p>
<h3>HSI for RNAV calculator</h3>
<p>
The RNAV calculator can store up to 5 waypoints (WP). The pilot enters
the WP in the RNAV calculator in polar coordinates (radial <b>RAD</b> and
distance <b>DST</b>) referred to some VOR/DME station, along the frequency
of the VOR/DME station itself.
</p>
<pre>
</pre>
<center>
<img src="acmdoc_html_hsi-rnav.png">
<p><b>The HSI tuned on a VOR/DME station in RNAV mode.<br>
The waypoint is set at radial 75, distance 24.5 NM from the VOR/DME.
</b></p>
</center>
<pre>
</pre>
<blockquote>
NOTE: bare VOR stations and ILS stations cannot be tuned in RNAV mode.
</blockquote>
<p>
Once the control panel has been set, the RNAV calculator feeds the HSI display
with angular deviation and distance from the selected waypoint (WP). Then the
pilot can fly toward the WP just like if it were a "phantom" VOR/DME station.
The DME field of the control panel displays the distance from the WP
(<b>not the distance from the VOR/DME station used as a reference</b>).
</p>
<pre>
</pre>
<center>
<img src="acmdoc_html_hsi_rnav-usage.png">
<p>
<b>A "phantom" VOR/DME guides the aircraft along the route from A to WP
and then from WP to B.</b>
</center>
<pre>
</pre>
<a name=theadf></a>
<h2>The ADF</h2>
<p>
Press the <b>r</b> several times until the ADF receiver gets displayed.
The compass card of this instrument is automatically aligned with the magnetic
north tanks to the signal provided by the flux gate, and stabilized with
a gyroscope.
</p>
<p>
The ADF occupies two slots of the instrument panel: the left slot is the
ADF panel were the frequency and the ID of the NDB station gets displayed;
the right slot is the ADF display that shows the magnetic bearing of the
NDB station.
</p>
<pre>
</pre>
<center>
<img src="acmdoc_html-adf.png">
<p>
<b>The ADF control panel (left) and bearing indicator (right).</b>
</p>
</center>
<pre>
</pre>
<p>
Tune the desired station pressing <b>9</b> and <b>0</b>.
</p>
<p>
In the real world the range of the NDB signal depends on many factors.
In ACM this range is set to 100 NM for navigation NDB stations, and 20
NM for instrumental approach stations (OMARKER, MMARKER, IMARKER).
</p>
<a name=theautopilotsystem></a>
<h2>The Auto Pilot System</h2>
<p>
The auto-pilot system (APS) consists of several functional blocks, each one
taking control of some flight parameter. The relations between blocks are
indicated in the diagram below. Every block can be engaged or disengaged
by the pilot independently from the others blocks, with the only exception
of AW and AP that might be required by AN and AL.
</p>
<p>
In a emergency, the APS can be disabled pressing the key <b>Home</b>.
</p>
<pre>
</pre>
<center>
<img src="acmdoc_html-ap-blocks.png">
<p>
<b>Block diagram of the Auto Pilot System (APS).</b>
</p>
</center>
<pre>
</pre>
<p>
A note about the terminology: "APS" is the whole system of auto-piloting,
while the "AP" is the sub-block that control the altitude or the climb rate.
Perhaps the AP should had been split in two independent blocks performing
"hold altitude" and "hold climb rate", so resolving the ambiguity.
This can be a change left to the future releases of the program.
</p>
<a name=theautopilot></a>
<h2>The Auto-pilot</h2>
<p>
The auto-pilot (AP) helps the pilot keeping a given rate of climb or a
given altitude. When engaged, the AP adds a correction term to the current
elevator control that can grow up to the 50% of the full elevator control
range:
</p>
<blockquote>
elevator_setting = pilot_setting + AP_correction_term
</blockquote>
<p>
Even when the AP is engaged, the pilot preserve the ability to
control the aircraft, while the AP will try to do its best to keep constant
the controlled parameter. Press <b>Shift-A</b> to engage/disengage
the AP. When engaged, the "AUTOPILOT" word is displayed on the HUD.
</p>
<blockquote>
<p>
<b>Engaging the AP to hold the rate of climb.</b>
Once the desired rate of climb has been attained, engage the AP. The
AP will grab the current rate of climb and will use this value as a
reference to calculate the elevator correction. The rate of climb must be
greater than +100 ft/min or less that −100 ft/min.
</p>
<p>
<b>Engaging the AP to hold the altitude.</b>
Once the desired altitude has been attained, engage the AP. The AP will
capture the current altitude and will use this value as a reference to
calculate the elevator correction. The rate of climb must be near to zero
+/− 100 ft/min. As an alternative, press <b>Shift-Z</b>: in
this case the AP grabs the current altitude and keeps this value as reference.
</p>
<p>
<b>Disengaging the AP.</b>
Press <b>Shift-A</b> or <b>Shift-Z</b>. The elevator correction term will
be released smoothly within 3 seconds, restoring the full control of
the elevator.
</p>
<p>
<b>AP alarm.</b>
When the AP correction grow beyond the 25% of the full elevator control
range, the "AUTOPILOT" displayed in the HUD (or the "Pilot"
light in classic instruments mode) will blink. In this
case the intervention of the pilot is required. Adjust the pitch or the
engine power until the alarm disappear.
</p>
</blockquote>
<p>
AP limitations:
</p>
<blockquote>
- max vertical acceleration: +/- 0.1 g<br>
- hold altitude mode, max vertical speed: +100 fpm<br>
- hold altitude mode, min vertical speed: -1000 fpm<br>
- disengaging the AP, smooth release of the elevator within 3 s
</blockquote>
<a name=theautothrottle></a>
<h2>The Auto-throttle</h2>
<p>
The auto-throttle (AT) controls the engine thrust in order to hold a
given IAS limiting the acceleration to the range -0.5g
.. +0.1g. When the selected TAS cannot be attained, the pilot is warned
by the blinking "ATxxx" in the HUD (or the blinking light "Thr" in classic
instruments mode).
</p>
<p>
The AT can be engaged/disengaged pressing <b>Shift-T</b>. When enabled,
the current TAS is grabbed and used by the AT as the target speed.
The value of the current target speed is displayed in the HUD to the
right of the speed scale. For example, the indication "AT120" means that
the target TAS is 120 kt.
</p>
<p>
When the AT is enabled, the buttons that normally control the engine
change their meaning as follow:
</p>
<blockquote>
<b>1</b> disable the AT device and sets the minimum thrust (20% RPM).
<p>
<b>2</b> decrease the target TAS by 5 kt.
<p>
<b>3</b> increase the target TAS by 5 kt.
<p>
<b>4</b> disable the AT device <u>and</u> the AP and sets the maximum
thrust (100% RPM).
</blockquote>
<p>
Press <b>Shift-T</b> again to disengage the AT keeping the current
throttle setting.
</p>
<a name=theautocoordinator></a>
<h2>The Auto-coordinator</h2>
<p>
Controlling the rudder through the keyboard and without a physical feedback
of the lateral acceleration is really difficult, so often compromising
the precision of the maneuver on <i>coordinated standard turns</i>.
</p>
<p>
The auto-coordinator (AC) feature allows the rudder to be controlled by the
program in order to cancel the lateral acceleration, indicated by the slip
indicator. The AC can be enabled/disabled pressing <b>Shift-X</b>. Once
enabled, a little "AC" gets displayed to the side of the slip indicator
(or the "Coord" light in classic instruments mode)
and all the turns are automatically coordinated.
</p>
<p>
A good way to do a standard turn in AC mode is bringing the aircraft to
the expected bank angle, then checking the turn rate indicator for the
expected turn rate. The figure below plots the expected bank angle
vs. the current true air speed for 1.5°/s and 3.0°/s standard
rates of turn.
</p>
<p>
The arrows keys are very useful to do little heading corrections in
AC mode, for example to align the aircraft to the runway. Larger turns
can be done simply moving the mouse.
</p>
<p>
The keys <b>z c</b> that control the rudder are still enabled, but not
really effective. You may use them for even finer heading corrections.
</p>
<a name=theautonavigator></a>
<h2>The Auto-navigator</h2>
<p>
The auto-navigator (AN) allows to follow the radial indicated by the
OBS set into the HSI panel. Once enabled, the AN automatically compute a
proper approaching route bringing to the radial, then it maintain this radial.
Ailerons and rudder are controlled in order to correct the magnetic heading
of the aircraft according to an algorithm explained below.
</p>
<p>
<b>Enabling the AN.</b>
To enable the AN follow these steps:
</p>
<ol>
<li>Tune the HSI on the chosen VOR station or WP.</li>
<li>Turn the OBS to the chosen VOR radial.</li>
<li>Enable the AN (Shift-N). The word "AutoNav" gets displayed in the HUD
(or the "Nav" light in the classic instruments panel).</li>
</ol>
<p>
<img src="acmdoc_html-an_approach.png" align=right hspace=20 vspace=20>
<b>The approaching path.</b>
The AN computes the path bringing to the chosen radial. Normally
an approaching angle of OBS+45° gets chosen if the aircraft is located
to the left of the radial (point A of the figure) otherwise an heading of
OBS−45° gets chosen (point B of the figure). The aircraft then turns
toward the heading so computed, either clockwise
or counter-clockwise depending on the current heading. For example, if
the target heading is 360° (north) and the aircraft is currently directed
toward east, then the aircraft will begin to turn counter-clockwise 90°;
if the current heading is west, then the aircraft will turn clock-wise.
Every turn gets performed with angular speed up to +/−3°/s and
a bank angle up to +/−25°.
</p>
<p>
When the CDI (angular deviation from the OBS) becomes less than 2°, or
when the CDI starts moving (indicating that we are very close to the VOR
station) the approaching angle gets diminished smoothly so that the aircraft
reach the radial with a single turn. This simple strategy works well when
the aircraft is far from the VOR, but for short distances (say, 5 NM or less)
the aircraft gets forced in a sequence of rough turns, waving around the
radial. Because of this limitation <b>the AN should always be disabled
below 5 NM from the VOR.</b>
</p>
<p>
<b>Disabling the AN.</b>
The AN can be disabled intentionally pressing Shift-N again. The AN
gets also disabled if any of these events occurs:
</p>
<ul>
<li>The auto-pilot system gets disabled.</li>
<li>Engine shoot-off of engine max power.</li>
<li>The HSI frequency gets changed.</li>
<li>The OBS setting gets changed.</li>
<li>Switching between NAV/RNAV receivers.</li>
<li>Switching between HSI/ADF/radar display.</li>
<li>Loosing the signal from the VOR station.</li>
</ul>
<a name=theautolanding></a>
<h2>The Auto-landing</h2>
<p>
The auto-landing takes control of the aircraft controlling heading and pitch
following the approaching path to the LOC+GS station currently tuned. The
heading gets corrected in order to smoothly reach the LOCATOR plane. If also
the GS is available, then the pitch gets controlled in order to attain the
indicated descending path. The AL also performs the flare maneuver, deploys the
thrust reverse (if available), deploys the speed brakes, enable the wheel
brakes and finally stops the aircraft on the runway.
</p>
<p>
<b>Enabling the AL.</b>
To enable the AL follow these steps:
</p>
<ol>
<li>Tune a LOC or LOC+GS=ILS station.</li>
<li>Turn the aircraft so that it is roughly oriented toward the runway.
An approaching angle of no more than 30° from a distance of at least
5 NM gives the better results.
</li>
<li>Enable the AL (Shift-L). The word "AutoLanding" gets displayed in the HUD
(or the "Land" light will lighted in classic instruments mode).</li>
</ol>
<p>
Once enabled, the AL compute a proper, smooth approach to the plane of
the LOCATOR, then it will attain this route up to the runway threshold.
Turns are performed with a maximum bank angle of +/-25°.
</p>
<p>
For ILS stations providing also the GS signal, the AL can follow the glide
path. In this case, the AL takes control of the elevator, maintaining
the current altitude until the glide slope plane is reached. Once the
GS has being reached, the AL sets a descending rate suitable to maintain
the alignment with the glide slope plane (typically -3°).
</p>
<p>
The AL behave pretty well and it can recover from situations
that would be very hard for an human to handle. However, in order to
ensure the best results, these restrictions should be respected:
</p>
<ul>
<li>Initial distance from the runway: greater than 5 NM.</li>
<li>Angle of incidence with the LOCATOR plane: less than 90°.</li>
<li>Initial distance <i>d</i> from the locator plane: possibly not less
than the distance required to attain the LOCATOR alignment with a single turn
at the rate of 1.5°/s.
</li>
</ul>
<pre>
</pre>
<center>
<img src="acmdoc_al.png">
<p>
<b>Requirements of the auto-landing.</b>
</center>
<pre>
</pre>
<p>
The figure above illustrate the final approach to the runway. The optimal
distance from the LOCATOR plane should be large enough to allow to the
aircraft to attain the alignment to the LOCATOR with only a turn at the
rate of 1.5°/s:
</p>
<blockquote>
<i>d</i> ≥ (1 - cos(<i>A</i>)) <i>v</i> / 94
</blockquote>
<p>
where <i>v</i> is the current TAS (knots). For example, with an angle
of incidence of <i>A</i>=30° and <i>v</i>=170 kt the distance
would be 0.24 NM. By the contrary, crossing the LOCATOR plane with an
angle near to 90° at little distance from the runway, would force
the AL to do several turn maneuvers, often ending with a misalignment
and a missing approach.
</p>
<p>
<b>Disabling the AL.</b>
The AL can be disabled intentionally pressing Shift-L again.
The AL gets also disabled automatically when any of these events occurs:
</p>
<ul>
<li>Engine shut-down or engine max power required.</li>
<li>Loosing signal from the radio station (too far or outside the allowed
cone).</li>
<li>Changing the frequency on the HSI.</li>
<li>Switching between NAV/RNAV receivers.</li>
<li>Switching between HSI/ADF/radar display.</li>
</ul>
<p>
<b>Detailed description on how the AL works.</b>
The exact sequence of the events depends on several factors. For brevity
we will indicate with FLARE_ALT the altitude over the runway at which the
flare maneuver starts, V is the current speed, :
</p>
<blockquote>
FLARE_ALT = 0.375 ft/kt * V<br>
</blockquote>
<p>
so, for example, landing at 160 kt the flare maneuver starts when the
radar altimeter indicates 60 ft from the terrain.
We will also indicate with V_TOUCHDOWN the airspeed indicated when the
main gear hit the runway. The exact sequence of events is as follow:
</p>
<blockquote>
<p>
1. Keep current altitude until the GS path is intercepted.
Adjust heading according to the CDI.
</p>
<p>
2. Once the GS has been intercepted, start descending at the standard
rate of −3 DEG. If the GS has a different angle, the resulting GS
error will guide the AL to the correct descending ratio. Continue to
follow the LOCATOR, adjusting the heading.
</p>
<p>
3. When the altitude as indicated by the radar altimeter becomes less
than 250 ft, the GS signal is assumed to be unreliable and the aircraft keeps its attitude and continues following a ballistic descent at the standard descending rate of −3 DEG.
</p>
<p>
4. When the altitude indicated by the radar altimeter becomes
less than FLARE_ALT, the flare maneuver starts. Raise nose so to
keep a descending rate of −1 DEG.
Ensure wheel brakes are disabled.
</p>
<p>
5. When the altitude as indicated by the radar altimeter
is less than 0.5*FLARE_ALT disable engine auto-throttle
and hold current power setting. The speed begins to reduce.
</p>
<p>
6. When both the wheels of the main landing gear hit the ground,
grab current airspeed V_TOUCHDOWN, as it will used for reference
in the rest of the procedure.
The speed brakes are fully extended, if available.
If the thrust reverse device is available, deploy and set engine
power to 75%.
Otherwise, set engine idle. Disable auto-pilot and keep current
pitch angle.
</p>
<p>
7. For tricycle landing gear, immediately lower nose wheel. For bicycle
landing gear, hold current pitch until speed drops under 85%
V_TOUCHDOWN, then begins lowering the tail wheel.
</p>
<p>
8. For tricycle landing gears, when all the wheels are in contact with
the terrain, enable wheel brakes. If thrust reverse available,
brakes are enabled only below 50% V_TOUCHDOWN.
</p>
<p>
9. At 40% V_TOUCHDOWN, if thrust reverse device available, set engine
idle.
</p>
<p>
10. At 20% V_TOUCHDOWN disable AP, AL, AW and retract thrust reverser,
leaving only the brakes on.
</p>
</blockquote>
<a name=theautoturn></a>
<h2>The Auto-turn</h2>
<p>
<img src="acmdoc_html-aw.png" align=right hspace=20 vspace=20>
The auto-turn block (AW) control the rate of the turn and it is mostly
used by the AN and AL. The pilot can engage manually the AW to perform
standard turns at 1.5 and 3°/s or also 0°/s to keep the current
heading. The involved keys are:
</p>
<blockquote>
<p>
<code><b><</b></code>
turn left at 3°/s
</p>
<p>
<code><b>,</b></code>
(comma) turn left at 1.5°/s
</p>
<p>
<code><b>|</b></code>
(vertical bar) stop turning and hold heading
</p>
<p>
<code><b>.</b></code>
(dot) turn right at 1.5°/s
</p>
<p>
<code><b>></b></code>
turn right at 3°/s
</p>
<p>
<code><b>/</b></code>
disengage the AW
</p>
</blockquote>
<p>
The "MAX BANK" knob set the maximum bank limiter, chosen between 5, 10, 15, 20
and 25 degrees. The AW will never exceed this value.
</p>
<p>
When the AW is enabled, a little round circle gets displays into the
turn-and-sleep indicator giving the feedback of the turn speed the AW is
aiming to (see the figure to the right).
</p>
<a name=lightspanel></a>
<h2>Lights Panel</h2>
<p>
The status panel displays 14 lights. The alarm lights blinks alerting the pilot
about some serius sub-system failure or other urgent danger:
</p>
<blockquote>
OIL, HYD1, HYD2: hydraulic subsystem failures.
<br>GEN1, GEN2: power sources failure.
<br>FLAP: flaps failure.
<br>SPBRK: speed brake failure.
<br>RADAR: radar failure.
<br>TEWS: TEWS failure.
<br>HUD: HUD failure.
<br>G-LOAD: above 75% maximum positive or negative wings load.
</blockquote>
<p>
Status and warning lights does not blink and are alerts to the pilot:
</p>
<blockquote>
FUEL: fuel tank below 15% maximum capacity.
<br>SPD BRK: speed brakes engaged.
<br>BRAKES: wheel brakes are on.
</blockquote>
<a name=theradarsystem></a>
<h2>The Radar System</h2>
<p>The
ACM radar system has a field of view in Normal mode of 120 degrees
laterally and vertically from the front of the aircraft. The F-16
radar set's range is about 80 NM. All aircraft within that range and
field of view will appear as a box on the radar display
</p>
<pre>
</pre>
<center>
<img src="acmdoc_html_radar-coverage.png">
<p><b>Radar coverage.</b></p>
</center>
<pre>
</pre>
<p>The
ACM radar display presents a forward looking view of radar targets.
Think of it as a television monitor connected to a forward-pointing
TV camera that has a very wide angle lens.
</p>
<p>If
any objects are close enough to be radar-visible, the set will
automatically lock onto the nearest threat. With radar lock acquired,
your display will provide detailed information about the locked, or
"primary", target's disposition. A primary target appears
as a filled diamond
on the radar display -- the display provides information on the
primary target's range and altitude, as well as it's current heading,
your desired relative heading to intercept and the rate of closure of
your two aircraft.
</p>
<pre>
</pre>
<center><img src="acmdoc_html_radar-display.png">
<p><b>The ACM radar display.</b>
</center>
<pre>
</pre>
<p>The
radar set's ability to establish a positive lock on a target extends
for a shorter range than the radar's maximum detection range -- radar
lock is limited to about 60 NM on the F-16 and 30 NM on the MiG-29.
</p>
<p>If
multiple targets are plotted on your radar display, you can lock onto
other targets by pressing the target reject key (<b>q</b>).
</p>
<p>The
radar on/standby key (R) can be used to toggle your radar set between
its normal operating mode and a standby state. When your radar is in
standby mode, your aircraft emits no radar energy and can be more
difficult to detect.
</p>
<a name="electroniccountermeasures"></a>
<h2>Electronic Countermeasures</h2>
<p>
<p>Fighters are
Equipped with a special device called a Radar Warning
Receiver (RWR). It's display is the round "CRT" to the left
of the radar display. It works much like a radar detector that you
can buy for your car. The receiver can detect radar emissions from
other aircraft and will plot a box on the RWR display representing
the relative direction of that radar threat. Opposing team’s
radar emissions appear as filled boxes. Friendly aircraft appear as
open boxes. This receiver cannot detect aircraft that have their
radar emissions directed away from your aircraft, nor is it capable
of detecting aircraft that have their radar sets turned completely
off.
</p>
<a name="weaponssystems"></a>
<h2>Weapon Systems</h2>
<p>Your
aircraft is equipped with heat-seeking missiles and a 20-millimeter
cannon. Weapon information is displayed in the lower left-hand corner
of your HUD. Different weapons may be selected by pressing mouse
button 3. The currently selected weapon is fired by pressing mouse
button 2.
</p>
<h3>Air-to-Air Missiles</h3>
<p>The
missiles are patterned after U.S. AIM-9M Sidewinders and AIM-120 AMRAAM. They can detect
infrared (IR) targets at any aspect (not just from the rear).
</p>
<p>The range of these missiles varies dramatically with the altitude and closure rate. The
missile subsystem couples with your radar set to provide
time-to-impact information.
</p>
<p>This
missile has a solid rocket motor that burns for about 8 seconds (AIM-9M) or 15 seconds (AIM-120). After burn-out, it will still track towards its intended target but may lose speed too rapidly to catch it. Your heat seeking missiles don't arm themselves until one second (AIM9M) or three seconds (AIM-120) after launch. Because of that, you should not fire at a target for which the flight time is less than the arm time.
</p>
<blockquote style="borer: solid, 1px; padding: 1em;">
<b>Beware! clouds are opaque to IR.</b> If the target hides
in the clouds, the missile loses lock and continues flying
ballistically, possibly missing the target.
</blockquote>
<p>Missile status discretes and their meanings:
</p>
<blockquote>
<p>
<tt>ARM --</tt><br>
No target acquired on the radar.</p>
<p>
<tt>ARM 125</tt><br>
Missile's seeker has not yet acquired the target in its field of view; time to target 125 seconds.
</p>
<p>
<tt>LOCKED 18</tt><br>
Missile locked on target and ready to fire; time to target 18 seconds.
</p>
<p>
<tt>IN RANGE 2</tt><br>
Target too close; time to target smaller than arm time.
</p>
</blockquote>
<h3>Cannon</h3>
<p>
Cannon
can be used to engage targets at closer range. Your cannon is modeled
after the U.S. M61-A1 Vulcan. Aircraft typically begin a mission with
500 rounds of ammunition; the cannon fires at 3000 rounds per minute
so you only have enough ammunition for a ten-second continuous burst
-- use it carefully.
</p>
<p>
When
cannons are selected, the HUD is in Lead Computing Optical Sight
(LCOS) mode. On the HUD, a circular aiming reticle is displayed. The
HUD couples with the radar set to provide a visible cue of the
target's current range. The aiming reticle is surrounded by 12 ticks.
An inner arc represents the current range to the target: each arc
tick represents 1000 feet of distance. The aiming reticle moves
across the HUD to show a good aiming point based on the target's
range and your aircraft's pitch and turn rate. If the range is large
and or your pitch and turn rates are fast, you may see no reticle at
all: the aiming point is simply out of the HUD's field of view.
</p>
<p>
An unmoving cross (a "+") will be displayed on the HUD in LCOS mode. This
marker denotes the boresight of the cannon -- the direction that the
cannon's barrel is actually pointing.
</p>
<p>
Figure 6 (missing!) shows another example of what you might see in a
dogfight. All planes are turning hard to the left at a relatively low
speed. You are in LCOS mode and see that the reticle is positioned
ahead of the intended target. To get the kill, simply relax the turn
long enough to get into position and then take the shot.
</p>
<h3>Drop bombs</h3>
<p>
You fighter may be equipped with one or more standard Mark 82 (MK-82)
drop bombs. If so, then selecting that weapon with the right mouse button
displays the CCIP sighter. The circle indicates the estimated hit point
if the bomb get dropped right now with the left button of the mouse.
A line joinging the flight path marker to the circle helps aligning the
target point while the aircraft dives.
</p>
<p>
Currently only the SU-30 model is equipped with drop bombs; you may change
this setting by adding drop bombs to any other fighter by changing its
configuration file as explained in this manual.
</p>
<a name=drones></a>
<h2>Drones</h2>
<p>
Drones are automated opponent aircraft. They are created by pressing the
<b>l</b> key. Drones aggressiveness setting (see option <code>-da</code>)
controls how hard a drone aircraft will attempt to maneuver to attack
other planes. For example, a setting of 0.7 means the drone will maneuver
pulling "G" up to the 70% of its maximum structural vertical limit (see
the parameters MaxLoadZPositive and MaxLoadZNegative); if
the fighter supports up to 10g of positive vertical acceleration with nearly
empty tank, it will reach 7g of positive vertical acceleration.
</p>
<p>
With an aggressiveness factor too low (probably 0.2 or less) the aircraft
will hardly sustain its own weight and will crash on the ground without
even try to fly. With a value near 1.0 or greater your opponent drone will
fly very close to its structural limit and may suffer a sudden
tragic fatal structural failure... Values between
0.7 and 0.9 will usually make for an interesting opponent.
</p>
<a name=stealthmode></a>
<h2>Stealth Mode</h2>
<blockquote style="border: solid 2px; padding: 0.5em;">
I don't really know what this "stealth" mode is and what it is intended to
do, but apparently it is not working anymore. Any help appreciated. - U.S.
</blockquote>
<p>ACM’s
stealth mode allows users to monitor out-the-window views for any
aircraft active in an exercise.
</p>
<blockquote>$ <code><b>acm -stealth</b></code></blockquote>
<p>In
stealth mode, the radar display is used to display DIS entity id’s
of aircraft participating in the exercise. To select and aircraft to
follow, use the mouse to click on one of these identifiers. The
entity id of the aircraft you are following will be highlighted in
magenta.
</p>
<blockquote><pre>
DIS Entity ID
50,1,1
50,1,2
* 50,6,1
</pre></blockquote>
<p>
If there is a large number of entities in an exercise, use the PAGE UP
and PAGE DOWN keys to scroll through the list.
</p>
</body>
</html>
|