├── .gitignore ├── CHANGELOG.md ├── F18_CheatSheet.tex ├── LICENSE.txt ├── README.md ├── TechCheck.cls ├── images └── natops_F18C.pdf └── sections └── F18_00_titlepage.tex /.gitignore: -------------------------------------------------------------------------------- 1 | *.aux 2 | *.log 3 | *.out 4 | *.synctex.gz 5 | *.toc 6 | *.DS_Store 7 | *.fls 8 | *.fdb_latexmk 9 | *.cb 10 | *.cb2 11 | *.maf 12 | *.mtc* 13 | *.pdf -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # F-14 CHEATSHEET 2 | 3 | ## CHANGELOG 4 | 5 | ### Changelog - 2022.06.21 6 | 7 | - `TechCheck.cls` 8 | - Updated to latest version. [See F-14 Cheatsheet for more details](https://github.com/Techneatium/F14_CheatSheet/blob/master/CHANGELOG.md). 9 | 10 | - `F18_Cheatsheet.tex` 11 | - Adapted to changes in `TechCheck.cls` 12 | 13 | ### Changelog - 2022.06.08 14 | 15 | - `TechCheck.cls` 16 | - Updated to latest version. [See F-14 Cheatsheet for more details](https://github.com/Techneatium/F14_CheatSheet/blob/master/CHANGELOG.md). 17 | 18 | - `F18_Cheatsheet.tex` 19 | - Adapted to changes in `TechCheck.cls` 20 | - Added new pagestyle `superempty` in titlepage 21 | 22 | ### Changelog - 2022.06.06 23 | 24 | - `TechCheck.cls` 25 | - Updated to latest version. [See F-14 Cheatsheet for more details](https://github.com/Techneatium/F14_CheatSheet/blob/master/CHANGELOG.md). 26 | 27 | - `F18_Cheatsheet.tex` 28 | - Adapted to changes in `TechCheck.cls` 29 | - `longtablenumitem` renamed to `tablenumitem` 30 | - Continued updating to use new environments 31 | - Notably converted remaining `enumitem`s to `checklistenumitem` 32 | 33 | ### Changelog - 2022.06.05 34 | 35 | - `TechCheck.cls` 36 | - Updated to latest version. [See F-14 Cheatsheet for more details](https://github.com/Techneatium/F14_CheatSheet/blob/master/CHANGELOG.md). 37 | 38 | - `F18_Cheatsheet.tex` 39 | - Partially (mostly) updated to use new `tablenumitem` environments 40 | 41 | ### Changelog - 2022.06.02 42 | 43 | - `F18_Cheatsheet.tex` 44 | - Tested alternate weapons checklists in `SLAM` section 45 | 46 | ### Changelog - 2022.05.30 47 | 48 | - `F18_Cheatsheet.tex` 49 | - Began reworking A/G section 50 | - updated `SLAM` to tabular rather than enumerate 51 | 52 | ### Changelog - 2022.05.29 53 | 54 | - `TechCheck.cls` 55 | - Updated to latest version. [See F-14 Cheatsheet for more details](https://github.com/Techneatium/F14_CheatSheet/blob/master/CHANGELOG.md). 56 | 57 | - `F18_Cheatsheet.tex` 58 | - Updated to use new environments 59 | - Changed font to `Inter` 60 | 61 | - `README.md` 62 | - Split `CHANGELOG` to own file 63 | 64 | *** 65 | 66 | ### Changelog - 2022.03.04 `v1.0.0` 67 | 68 | - `F18_Cheatsheet.tex` 69 | - Initial Commit 70 | -------------------------------------------------------------------------------- /F18_CheatSheet.tex: -------------------------------------------------------------------------------- 1 | %================================================================= 2 | % MIT LICENSE 3 | %================================================================= 4 | % Copyright (c) 2022 Techneatium 5 | % 6 | % Permission is hereby granted, free of charge, to any person obtaining a copy 7 | % of this software and associated documentation files (the "Software"), to deal 8 | % in the Software without restriction, including without limitation the rights 9 | % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | % copies of the Software, and to permit persons to whom the Software is 11 | % furnished to do so, subject to the following conditions: 12 | % 13 | % The above copyright notice and this permission notice shall be included in all 14 | % copies or substantial portions of the Software. 15 | % 16 | % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | % SOFTWARE. 23 | %================================================================= 24 | 25 | %----------------------------------------------------------------- 26 | % BEGIN DOCUMENT 27 | %----------------------------------------------------------------- 28 | \documentclass[fontInter]{TechCheck} 29 | \title{F18_Cheatsheet} 30 | \author{Techneatium} 31 | 32 | \setaircraftlong{F/A-18C AIRCRAFT} % sets long label for title page 33 | \setaircraftshort{F/A-18C} % sets short label for header 34 | \settabnumber{8} % sets number of tabs for document 35 | 36 | \begin{document} 37 | \include{./sections/F18_00_titlepage} 38 | \clearpage 39 | \null\vspace{0cm} 40 | 41 | \begin{tcolorbox}[ 42 | enhanced, colback=white, colframe=color1, colbacktitle=white, coltitle=color1, sharp corners, attach boxed title to top center={yshift=2mm}, 43 | boxed title style={ 44 | sharp corners, 45 | drop shadow=color1!100 46 | }, title=\LARGE\textbf{DISCLAIMER} 47 | ] 48 | \textbf{This document represents a personal project and is intended for entertainment purposes only. Do not use for training purposes or in real life scenarios.} 49 | \end{tcolorbox} 50 | 51 | \cleardoublepage 52 | 53 | \pagestyle{empty} 54 | \dominitoc 55 | \tableofcontents 56 | \cleardoublepage 57 | 58 | % restart page counter 59 | \setcounter{page}{1} 60 | % reactivate header and footer 61 | \pagestyle{body} 62 | 63 | \chapter{PROCEDURES} 64 | \thumbtab{Procedures}{0} 65 | \minitoc 66 | \cleardoublepage 67 | 68 | \section{START-UP} 69 | \subsection{PRE-START} 70 | \begin{tablenumerate} 71 | \blueitem{Ejection Seat test}{\textbf{DOWN \& ARMED}} 72 | \blueitem{Harness Lever}{\textbf{FWD}} 73 | \blueitem{Parking Brake}{\textbf{ENGAGED}} 74 | \blueitem{Master Arm}{\textbf{SAFE}} 75 | \end{tablenumerate} 76 | 77 | \subsection{ENGINE START} 78 | \begin{tablenumerate} 79 | \blueitem{Battery}{\textbf{ON}} 80 | \blueitem{Hyd. Brake}{> 3000psi} 81 | \blueitem{Fire Test}{ 82 | \begin{subenumerate} 83 | \item \textbf{FIRE TEST} \dotfill \textbf{TEST A} 84 | \item \textbf{BATT} \dotfill cycle \textbf{OFF} then \textbf{ON} 85 | \item \textbf{FIRE TEST} \dotfill \textbf{TEST B} 86 | \end{subenumerate}} 87 | \blueitem{APU Start}{ 88 | \begin{subenumerate} 89 | \item \textbf{APU Caution Light} \dotfill verify OFF 90 | \item \textbf{APU Switch} \dotfill \textbf{ON} \\ 91 | \item \textbf{READY Light} \dotfill illuminated (30s) 92 | \end{subenumerate}} 93 | \blueitem{Right Engine Start}{ 94 | \begin{subenumerate} 95 | \item \textbf{ENG CRANK} \dotfill \textbf{R} 96 | \item \textbf{R Eng RPM} \dotfill 15-25\% 97 | \item \textbf{R Throttle} \dotfill \textbf{IDLE} 98 | \end{subenumerate}} 99 | \blueitem{Stabilized Parameters}{ 100 | \begin{subitemize} 101 | \item \textbf{IFEI} \dotfill Check 102 | \begin{itemize} 103 | \item \textbf{RPM} -- 60-65\% 104 | \item \textbf{EGT} -- < 750C until stable 105 | \end{itemize} 106 | \item \textbf{Cautions} \dotfill none for \textbf{ENG 2} 107 | \item \textbf{GPWS Voice Alerts} \dotfill Check 108 | \end{subitemize}} 109 | \blueitem{Master Caution}{\textbf{RESET}} 110 | \blueitem{Displays}{ 111 | \begin{subenumerate} 112 | \item \textbf{Left DDI} \dotfill \textbf{ON} 113 | \item \textbf{Right DDI} \dotfill \textbf{ON} 114 | \item \textbf{AMPCD} \dotfill \textbf{ON} 115 | \end{subenumerate}} 116 | \blueitem{UFC}{ 117 | \begin{subenumerate} 118 | \item \textbf{HUD} \dotfill \textbf{ON} 119 | \item \textbf{ALT Switch} \dotfill \textbf{RDR} 120 | \item \textbf{ATT Switch} \dotfill \textbf{AUTO} 121 | \end{subenumerate}} 122 | \blueitem{BLEED AIR Knob}{Cycle thru \textbf{OFF} to \textbf{NORM} \break (shutoff valves closed during fire test)} 123 | \blueitem{Left Engine Start}{ 124 | \begin{subenumerate} 125 | \item \textbf{ENG CRANK} \dotfill \textbf{L} 126 | \item \textbf{L Eng RPM} \dotfill 15-25\% 127 | \item \textbf{L Throttle} \dotfill \textbf{IDLE} 128 | \end{subenumerate}} 129 | \blueitem{Stabilized Parameters}{ 130 | \begin{subitemize} 131 | \item \textbf{IFEI} \dotfill Check 132 | \begin{itemize} 133 | \item \textbf{RPM} -- 60-65\% 134 | \item \textbf{EGT} -- < 750C until stable 135 | \end{itemize} 136 | \item \textbf{Cautions} \dotfill none for \textbf{ENG 1} 137 | \item \textbf{L GEN Caution} \dotfill Extinguished 138 | \end{subitemize}} 139 | \end{tablenumerate} 140 | 141 | \subsection{POST-START} 142 | \begin{tablenumerate} 143 | \blueitem{Canopy}{\textbf{CLOSED}} 144 | \blueitem{Start INS Align}{ 145 | \begin{subenumerate} 146 | \item \textbf{INS Selector} \dotfill \textbf{GND} or \textbf{CV} (as required) 147 | \item \textbf{HSI} \dotfill select \textbf{STD HDG} (if available)\\ 148 | \hfill \emph{(significantly reduces align time to approx. 90s)} 149 | \end{subenumerate}} 150 | \blueitem{RADAR}{\textbf{OPR}} 151 | \blueitem{FCS Reset}{ 152 | \begin{subenumerate} 153 | \item \textbf{WING FOLD} \dotfill \textbf{SPREAD} \\ 154 | \hfill \textbf{ONLY IF ON GROUND} 155 | \item \textbf{Left DDI} \dotfill \textbf{FCS} page 156 | \item \textbf{MASTER CAUTION} \dotfill \textbf{PRESS} twice \\ \hfill (restacks cautions) 157 | \item \textbf{FCS RESET} \dotfill \textbf{PRESS} 158 | \end{subenumerate}} 159 | \blueitem{Lights Test}{\textbf{Check}} 160 | \blueitem{Hook Bypass}{\textbf{As Required}} 161 | \blueitem{Flaps}{\textbf{HALF}} 162 | \blueitem{FCS BIT}{ 163 | \begin{subenumerate} 164 | \item \textbf{BIT Failures} \dotfill press FCS-MC 165 | \item \textbf{MC1 \& MC2} \dotfill GO 166 | \item \textbf{FCSA \& FCSB} \dotfill PBIT GO 167 | \item \textbf{FCS BIT Switch} \dotfill press \& hold 168 | \item \textbf{FCS-MC} \dotfill press FCS OSB 169 | \item \textbf{FCSA \& FCSB} \dotfill GO 170 | \end{subenumerate}} 171 | \blueitem{ANTI SKID}{\textbf{OFF} if CV, else \textbf{ON}} 172 | \blueitem{Trim}{\textbf{PRESS T/O Trim}} 173 | \blueitem{PITOT}{\textbf{AUTO}} 174 | \blueitem{Displays}{ 175 | \begin{subenumerate} 176 | \item \textbf{Left DDI} \dotfill \textbf{HUD Repeater} 177 | \item \textbf{Right DDI} \dotfill \textbf{FCS Page} 178 | \end{subenumerate}} 179 | \blueitem{RADALT Warning}{ 180 | \begin{subitemize} 181 | \item \textbf{GND}\dotfill 200 ft 182 | \item \textbf{CV}\dotfill 80 ft 183 | \end{subitemize}} 184 | \blueitem{Standby Attitude Indicator}{\textbf{UNCAGED}} 185 | \blueitem{Bingo Fuel}{\textbf{As desired} (8000lbs)} 186 | \blueitem{Altimeter}{\textbf{Set}} 187 | \blueitem{Mission Data}{\textbf{ENTER}} 188 | \blueitem{Weapons/Sensors}{\textbf{As Required}} 189 | \blueitem{STORES Page}{\textbf{Verify proper inventory installed}} 190 | \blueitem{HMD Alignment}{ 191 | \begin{subenumerate} 192 | \item \textbf{SUPT/HMD/ALIGN Page} \dotfill \textbf{SELECT} 193 | \item Superimpose \textbf{HMD} alignment cross on \textbf{HUD/BRU} alignment cross 194 | \item \textbf{CAGE/UNCAGE} \dotfill \textbf{PRESS \& HOLD} \\ 195 | \hfill until \textbf{ALIGN OK} 196 | \end{subenumerate} 197 | 198 | \textbf{Fine Align} 199 | \begin{subenumerate} 200 | \item With \textbf{FA DXDY} displayed, use \textbf{TDC} to align azimuth and elevation \textbf{HMD} alignment crosses with \textbf{HUD/BRU} alignment cross 201 | \item \textbf{CAGE/UNCAGE} \dotfill \textbf{PRESS \& RELEASE} 202 | \item With \textbf{FA DROLL} displayed, use \textbf{TDC} to align roll axis \textbf{HMD} alignment crosses with \textbf{HUD/BRU} alignment cross 203 | \item \textbf{CAGE/UNCAGE} \dotfill \textbf{PRESS \& RELEASE} 204 | \end{subenumerate}} 205 | \blueitem{OBOGS}{\textbf{ON}} 206 | \blueitem{Complete INS Align}{\textbf{INS Selector} to \textbf{NAV} or \textbf{IFA} (if available)} 207 | \blueitem{Defensive Systems}{ 208 | \begin{subenumerate} 209 | \item \textbf{ALR-67 RWR} \dotfill \textbf{ON} 210 | \item \textbf{ECM Selector} \dotfill \textbf{STBY} 211 | \item \textbf{Dispenser} \dotfill \textbf{ON} (middle) 212 | \end{subenumerate}} 213 | \blueitem{Lights}{ 214 | \begin{subenumerate} 215 | \item \textbf{Strobe} \dotfill \textbf{ON} 216 | \item \textbf{POS Lights} \dotfill \textbf{BRT} 217 | \item \textbf{LDG/TAXI Lights} \dotfill \textbf{ON} 218 | \end{subenumerate}} 219 | \blueitem{Network}{ 220 | \begin{subenumerate} 221 | \item \textbf{IFF} \dotfill \textbf{ON} 222 | \item \textbf{D/L} \dotfill \textbf{ON}, set desired frequency 223 | \end{subenumerate}} 224 | \blueitem{Parking Brake}{\textbf{DISENGAGE}} 225 | \blueitem{Chocks}{\textbf{REMOVED}} 226 | \blueitem{Audio}{\textbf{Volume as required}} 227 | \end{tablenumerate} 228 | 229 | \clearpage 230 | 231 | \section{TAKEOFF \& LANDING} 232 | 233 | \subsection{PRE-TAXI} 234 | \begin{tablenumerate} 235 | \blueitem{ANTI SKID}{As required 236 | \begin{subitemize} 237 | \item Field -- \textbf{ON} 238 | \item Carrier -- \textbf{OFF} 239 | \end{subitemize}} 240 | \blueitem{FLAPS}{\textbf{HALF}} 241 | \blueitem{CHOCKS}{\textbf{REMOVED}} 242 | \blueitem{LAUNCH BAR}{\textbf{RETRACTED}} 243 | \blueitem{HOOK BYPASS}{As required} 244 | \blueitem{PARKING BRAKE}{\textbf{DISENGAGED}} 245 | \end{tablenumerate} 246 | 247 | \subsection{TAKEOFF - SHORE} 248 | \begin{tablenumerate} 249 | \multicolumn{3}{c}{\textbf{After Lining Up On Runway}} \\ 250 | \blueitem{ANTI SKID SPOILER BK}{\textbf{BOTH (UP)}} 251 | \blueitem{FLAPS}{\textbf{UP}} 252 | \blueitem{TRIM}{\textbf{T/O}} 253 | \blueitem{NWS}{\textbf{LOW GAIN}} 254 | \blueitem{Takeoff}{ 255 | \begin{subenumerate} 256 | \item \textbf{BRAKES} \dotfill hold 257 | \item \textbf{THROTTLE} \dotfill \textbf{MIL} 258 | \item \textbf{BRAKES} \dotfill release 259 | \item \textbf{THROTTLE} \dotfill \textbf{MAX} \emph{if desired} 260 | \item \textbf{Rotation} \dotfill approx 150 KIAS \\ 261 | \hfill \emph{hold 7 deg AOA} 262 | \item \textbf{GEAR} \dotfill \textbf{UP} < 240 KIAS 263 | \item \textbf{FLAPS} \dotfill \textbf{AUTO} once airborn 264 | \item \textbf{ALT} \dotfill \textbf{BARO} at 3000 agl 265 | \end{subenumerate}} 266 | \end{tablenumerate} 267 | 268 | \clearpage 269 | 270 | \subsection{TAKEOFF - CARRIER} 271 | \begin{tablenumerate} 272 | & \blue{Lineup} & 273 | \begin{subitemize} 274 | \item Wait behind JBD until Catapult is clear 275 | \item Follow Taxi Directors Instructions to line up on Catapult 276 | \end{subitemize} \\ 277 | \blueitem{WING FOLD}{ 278 | \begin{subenumerate} 279 | \item \textbf{WING FOLD} \dotfill \textbf{SPREAD} when directed \\ 280 | \hfill wait until fully spread 281 | \item \textbf{WING FOLD} \dotfill \textbf{LOCK} 282 | \item \textbf{HUD Repeater} \dotfill no \textbf{WING UNLK} caution 283 | \end{subenumerate}} 284 | \blueitem{FLAPS}{\textbf{HALF}} 285 | \blueitem{Launch Bar Preparation}{ 286 | \begin{subenumerate} 287 | \item \textbf{LAUNCH BAR} \dotfill \textbf{EXTEND} when directed 288 | \item \textbf{Throttle} \dotfill \textbf{UP} when directed 289 | \item \textbf{Taxi} \dotfill launch bar into shuttle 290 | \item \textbf{Throttle} \dotfill \textbf{IDLE} when directed 291 | \item \textbf{Wait} for holdback installation \& checks 292 | \item \textbf{LAUNCH BAR} \dotfill \textbf{RETRACT} 293 | \end{subenumerate}} 294 | \blueitem{Trim}{Refer to \textbf{NOTE} below} 295 | \blueitem{Speed Brakes}{\textbf{IN}} 296 | \blueitem{Final Checks}{ 297 | \begin{subenumerate} 298 | \item \textbf{Throttle} \dotfill \textbf{MIL} when directed 299 | \item \textbf{Control Wipeout} 300 | \begin{itemize} 301 | \item Stick Full Forward 302 | \item Stick Full Aft 303 | \item Stick Full Left 304 | \item Stick Full Right 305 | \item Rudder Full Left 306 | \item Rudder Full Right 307 | \end{itemize} 308 | \item \textbf{Eng. Inst.} \dotfill \textbf{Checked} 309 | \item \textbf{Caution/Warnings} \dotfill\textbf{None} 310 | \end{subenumerate}} 311 | \blueitem{Catapult Shot}{ 312 | \begin{subenumerate} 313 | \item \textbf{Salute} \dotfill \textbf{CAT SHOT} 314 | \item \textbf{Gear} \dotfill \textbf{UP} < 240 KIAS 315 | \item \textbf{Flaps} \dotfill \textbf{AUTO} 316 | \item \textbf{ALT} \dotfill \textbf{BARO} at 3000 agl 317 | \end{subenumerate}} 318 | \blueitem{Clearing Turn}{} 319 | \end{tablenumerate} 320 | 321 | \notebox{ 322 | \begin{itemize} 323 | \item Refer to \textbf{CHKLST} page for weight 324 | \end{itemize} 325 | \begin{center} 326 | \begin{tabular}{l | r | r | r} 327 | \toprule 328 | \textbf{Weight [lbs]} & $<$ 44000 & 44000-48000 & $>$ 48000 \\ 329 | \midrule 330 | \textbf{Trim [deg]} & 16 & 17 & 18 \\ 331 | \midrule 332 | \multicolumn{4}{c}{\textbf{MAX WEIGHT: 51900 lbs}} \\ 333 | \bottomrule 334 | \end{tabular} 335 | \end{center} 336 | } 337 | 338 | \clearpage 339 | 340 | \subsection{LANDING - SHORE} 341 | \begin{center} 342 | \resizebox{0.95\linewidth}{!}{ 343 | \includegraphics[ 344 | page = {337}, 345 | trim = {2cm, 2.8cm, 1.9cm, 2.7cm}, 346 | clip 347 | ]{natops_F18C.pdf} 348 | } 349 | \end{center} 350 | 351 | \clearpage 352 | 353 | \begin{tableitemize} 354 | \blueitem{Initial Approach}{ 355 | \begin{subitemize} 356 | \item \textbf{HOOK} \dotfill \textbf{UP} 357 | \item \textbf{ANTI-SKID} \dotfill \textbf{ON} 358 | \item \textbf{ALT} \dotfill \textbf{RDR}\ 359 | \item \textbf{Airspeed} \dotfill \textbf{300-350 KIAS} 360 | \item \textbf{Altitude} \dotfill \textbf{800 ft} 361 | \item \textbf{ARM} \dotfill \textbf{OFF} 362 | \end{subitemize}} 363 | \blueitem{Initial Break}{ 364 | \begin{subitemize} 365 | \item \textbf{Break Interval} \dotfill \textbf{15-17 s} 366 | \item \textbf{SPEED BRAKE} \dotfill \textbf{EXTEND} 367 | \item \textbf{Throttle} \dotfill \textbf{IDLE} 368 | \item \textbf{G} \dotfill 1\% of Airspeed 369 | \item \textbf{Altitude} \dotfill \textbf{800 ft} 370 | \end{subitemize}} 371 | \blueitem{Break Turn}{ 372 | \begin{subitemize} 373 | \item \textbf{Landing Gear} \dotfill \textbf{DOWN} at 250 KIAS 374 | \item \textbf{FLAPS} \dotfill \textbf{FULL} at 250 KIAS 375 | \item \textbf{SPEED BRAKE} \dotfill \textbf{RETRACT} at 250 KIAS 376 | \end{subitemize}} 377 | \blueitem{Downwind}{ 378 | \begin{subitemize} 379 | \item \textbf{Altitude} \dotfill descend to \textbf{600 ft} 380 | \item \textbf{AOA} \dotfill \textbf{ON-SPEED} 381 | \item \textbf{LANDING CHECKLIST} 382 | \end{subitemize}} 383 | \blueitem{Final Turn}{ 384 | \begin{subitemize} 385 | \item \textbf{Abeam Pos.} \dotfill \textbf{1-1.2 nmi} 386 | \end{subitemize} 387 | 388 | \textbf{90 Deg Position} 389 | \begin{subitemize} 390 | \item \textbf{AOA} \dotfill \textbf{ON-SPEED} 391 | \item \textbf{Altitude} \dotfill \textbf{400-500 ft} 392 | \end{subitemize}} 393 | \blueitem{Intercept Glideslope}{ 394 | \begin{subitemize} 395 | \item \textbf{Distance} \dotfill \textbf{3/4 Mile} 396 | \item \textbf{Altitude} \dotfill \textbf{360 ft} 397 | \item \textbf{AOA} \dotfill \textbf{ON-SPEED} 398 | \end{subitemize}} 399 | \blueitem{Touchdown}{ 400 | \begin{subitemize} 401 | \item No more than 750 ft/min 402 | \item \textbf{DO NOT FLARE} 403 | \end{subitemize}} 404 | \end{tableitemize} 405 | 406 | \subsection{LANDING - CARRIER CASE I} 407 | \begin{center} 408 | \resizebox{0.95\linewidth}{!}{ 409 | \includegraphics[ 410 | page = {356}, 411 | trim = {1.9cm, 3.0cm, 2.0cm, 2.7cm}, 412 | clip 413 | ]{natops_F18C.pdf} 414 | } 415 | \end{center} 416 | 417 | \clearpage 418 | 419 | \begin{tablenumerate} 420 | \blueitem{Navigation}{ 421 | \begin{subitemize} 422 | \item \textbf{TACAN} \dotfill \textbf{ON} and tuned 423 | \item \textbf{HSI} 424 | \begin{itemize} 425 | \item \textbf{TCN} -- \textbf{BOXED} 426 | \item \textbf{CRS} -- \textbf{BRC} 427 | \end{itemize} 428 | \end{subitemize}} 429 | \blueitem{Pattern Entry}{ 430 | \begin{subitemize} 431 | \item \textbf{Distance} -- approx \textbf{5 nm} 432 | \item \textbf{Heading} -- \textbf{BRC} 433 | \item \textbf{Line Up} -- \textbf{Right of CV} 434 | \item \textbf{Airspeed} -- \textbf{300-350 KIAS} 435 | \item \textbf{Altitude} -- \textbf{800 ft} 436 | \end{subitemize}} 437 | \blueitem{Pre-Break}{ 438 | \begin{subitemize} 439 | \item \textbf{HOOK} \dotfill \textbf{DOWN} 440 | \item \textbf{ALT} \dotfill \textbf{RDR}\ 441 | \item \textbf{RADALT} \dotfill 370 ft 442 | \item \textbf{ANTI-SKID} \dotfill \textbf{OFF} 443 | \item \textbf{HOOK BYPASS} \dotfill \textbf{CARRIER} 444 | \item \textbf{ARM} \dotfill \textbf{OFF} 445 | \item \textbf{HSI Zoom} \dotfill 10 nm 446 | \item \textbf{Airspeed} \dotfill \textbf{300-350 KIAS} 447 | \item \textbf{Altitude} \dotfill \textbf{800 ft} 448 | \end{subitemize}} 449 | \blueitem{Initial Break}{ 450 | \begin{subitemize} 451 | \item \textbf{Break Interval} \dotfill \textbf{15-17 s} 452 | \item \textbf{SPEED BRAKE} \dotfill \textbf{EXTEND} 453 | \item \textbf{Throttle} \dotfill \textbf{IDLE} 454 | \item \textbf{G} \dotfill 1\% of Airspeed 455 | \item \textbf{Altitude} \dotfill \textbf{800 ft} 456 | \end{subitemize}} 457 | \blueitem{Break Turn}{ 458 | \begin{subitemize} 459 | \item \textbf{Landing Gear} \dotfill \textbf{DOWN} at 250 KIAS 460 | \item \textbf{FLAPS} \dotfill \textbf{FULL} at 250 KIAS 461 | \item \textbf{SPEED BRAKE} \dotfill \textbf{RETRACT} at 250 KIAS 462 | \end{subitemize}} 463 | \blueitem{Downwind}{ 464 | \begin{subitemize} 465 | \item \textbf{Altitude} \dotfill descend to \textbf{600 ft} 466 | \item \textbf{AOA} \dotfill \textbf{ON-SPEED} 467 | \item \textbf{LANDING CHECKLIST} 468 | \end{subitemize}} 469 | \blueitem{Final Turn}{ 470 | \begin{subitemize} 471 | \item \textbf{Abeam Pos.} \dotfill \textbf{1-1.2 nmi} 472 | \end{subitemize} 473 | 474 | \textbf{90 Deg Position} 475 | \begin{subitemize} 476 | \item \textbf{AOA} \dotfill \textbf{ON-SPEED} 477 | \item \textbf{Altitude} \dotfill \textbf{400-500 ft} 478 | \end{subitemize}} 479 | \blueitem{Intercept Glideslope}{ 480 | \begin{subitemize} 481 | \item \textbf{Distance} \dotfill \textbf{3/4 Mile} 482 | \item \textbf{Altitude} \dotfill \textbf{360 ft} 483 | \item \textbf{AOA} \dotfill \textbf{ON-SPEED} 484 | \end{subitemize}} 485 | \blueitem{Touchdown}{ 486 | \begin{subitemize} 487 | \item No more than 750 ft/min 488 | \item \textbf{DO NOT FLARE} 489 | \end{subitemize}} 490 | \end{tablenumerate} 491 | 492 | \notebox{ 493 | \begin{itemize} 494 | \item \textbf{HSI} L wingtip will touch BRC line when 1.2nm abeam 495 | \item \textbf{HSI} heading to boat is 5 deg behind abeam heading when rounddown visible 496 | \item \textbf{Tip} during approach turn, do not peak before the 90 497 | \end{itemize} 498 | } 499 | 500 | \vfill\null 501 | \clearpage 502 | 503 | 504 | \subsection{LANDING - CARRIER CASE III} 505 | \begin{center} 506 | \resizebox{0.95\linewidth}{!}{ 507 | \includegraphics[ 508 | page = {357}, 509 | trim = {1.9cm, 2.9cm, 2.0cm, 2.7cm}, 510 | clip 511 | ]{natops_F18C.pdf} 512 | } 513 | \end{center} 514 | 515 | \begin{center} 516 | \large \textbf{Work In Progress} \normalsize 517 | \end{center} 518 | 519 | \subsection{LANDING - ICLS CASE III} 520 | \begin{center} 521 | \large \textbf{Work In Progress} \normalsize 522 | \end{center} 523 | 524 | \clearpage 525 | 526 | \section{IN-FLIGHT} 527 | 528 | \subsection{A/A REFUELING} 529 | \begin{center} 530 | \large \textbf{Work In Progress} \normalsize 531 | \end{center} 532 | 533 | \cleardoublepage 534 | 535 | \chapter{SYSTEMS} 536 | \thumbtab{Systems}{1} 537 | \minitoc 538 | \cleardoublepage 539 | 540 | \section{SYSTEMS} 541 | 542 | \subsection{ARC-210 RADIO} 543 | \begin{tableitemize} 544 | \blueitem{ARC-210}{ 545 | \begin{subitemize} 546 | \item Provides T/R of AM/FM in 30-399.975MHz 547 | \item Contains 2 radios: COMM1 \& COMM2 548 | \item Controlled from UFC 549 | \end{subitemize}} 550 | \blueitem{Power On}{Rotate Vol knobs of COMM1 \& COMM2} 551 | \blueitem{Preset Channels}{ 552 | \begin{subitemize} 553 | \item M: Manual 554 | \item 1-20: Preset Channels 555 | \item G: Guard (243.000) 556 | \item C: Cue Channel for SINCGARS 557 | \item S: Maritime (Sea) 558 | \end{subitemize}} 559 | \blueitem{OSB 1: GRCV}{Toggles Guard Receive} 560 | \blueitem{OSB 2: SQCH}{Toggles Squelch} 561 | \blueitem{OSB 3: CPHR}{Toggles Cipher modes (plain, cipher, delay) (not implemented)} 562 | \blueitem{OSB 4: AM / FM}{Selects Frequency Band} 563 | & & (only visible when in AM/FM overlap) \\ 564 | \blueitem{OSB 5: MENU}{Menu Button} 565 | \blueitem{Manually Set Freq}{ 566 | \begin{subenumerate} 567 | \item Set desired channel with channel knob 568 | \item Enter desired Frequency on UFC, ENT 569 | \item Confirm all options as desired 570 | \end{subenumerate}} 571 | \end{tableitemize} 572 | 573 | \subsection{AFCS - MODES} 574 | \begin{tableitemize} 575 | \blueitem{ATTH}{\textbf{Attitude Hold:} Aircraft will maintain existing pitch attitude and +/- 70 deg roll attitude} 576 | \blueitem{BALT}{\textbf{Barometric Altitude Hold:} Aircraft will maintain current heading and barometric altitude 0-70000 ft} 577 | \blueitem{HSEL}{\textbf{Heading Select:} Aircraft will turn and maintain heading selected on HSD} 578 | \blueitem{RALT}{\textbf{Radar Altitude Hold:} Aircraft will maintain current heading and radar altitude 0-5000 ft} 579 | \end{tableitemize} 580 | 581 | \subsection{AFCS - PROCEDURES} 582 | \begin{tableitemize} 583 | \blueitem{Conditions}{ 584 | \begin{subitemize} 585 | \item Stick: Centered 586 | \item HSD: heading selected (if required) 587 | \end{subitemize}} 588 | \blueitem{Activation}{ 589 | \begin{subenumerate} 590 | \item Press A/P OSB 591 | \item Select Submode OSB 592 | \end{subenumerate}} 593 | \blueitem{Deactivation}{press Paddle Switch} 594 | \end{tableitemize} 595 | 596 | \subsection{ATC - APPROACH MODE} 597 | \begin{tableitemize} 598 | \blueitem{Conditions}{ 599 | \begin{subitemize} 600 | \item Flaps: HALF/FULL 601 | \item TE Flaps: >27 deg 602 | \end{subitemize}} 603 | \blueitem{Activation}{ATC button} 604 | \blueitem{Effect}{Computer modulates thrust to maintain on speed AOA, pilot controls flightpath with pitch command} 605 | \blueitem{Deactivation}{ Any of the following: 606 | \begin{subitemize} 607 | \item ATC button 608 | \item Flaps: AUTO 609 | \item Weight On Wheels 610 | \item Bank Angle > 70deg 611 | \item Sensor Failure 612 | \end{subitemize}} 613 | \end{tableitemize} 614 | 615 | \subsection{ATC - CRUISE MODE} 616 | \begin{tableitemize} 617 | \blueitem{Conditions}{ 618 | \begin{subitemize} 619 | \item Flaps: AUTO 620 | \end{subitemize}} 621 | \blueitem{Activation}{ATC button} 622 | \blueitem{Effect}{Computer modulates thrust to maintain existing airspeed} 623 | \blueitem{Deactivation}{ 624 | \begin{subitemize} 625 | \item ATC button 626 | \item Flaps: HALF/FULL 627 | \item Sensor Failure 628 | \end{subitemize}} 629 | \end{tableitemize} 630 | 631 | \clearpage 632 | 633 | \section{NAVIGATION} 634 | 635 | \subsection{WAYPOINT} 636 | \begin{tableitemize} 637 | \blueitem{Waypoints}{Pre-planned navigational points of reference to follow on route to area of operation} 638 | & & Maximum: 60 \\ 639 | \blueitem{Activate WAYPOINT Nav}{Press WYPT OSB on HSI} 640 | \blueitem{Select Sequence}{press SEQ\# OSB} 641 | \blueitem{Display Lines}{box SEQ on HSI} 642 | \blueitem{HSI Info (Top Right)}{Bearing (deg) / Distance (Nm)} 643 | & & Time-to-Go to Waypoint (min:sec) \\ 644 | \blueitem{Automatic Sequencing}{box AUTO on HSI} 645 | & & Waypoint will automatically advance \\ 646 | \end{tableitemize} 647 | 648 | \subsection{WAYPOINT - ADD} 649 | \begin{tablenumerate} 650 | \blueitem{DATA Page}{Press DATA OSB on HSI} 651 | & & verify correct sequence is selected \\ 652 | \blueitem{Activate UFC}{press SEQUFC OSB} 653 | \blueitem{Insert Waypoint}{ 654 | \begin{subenumerate} 655 | \item press INS OSB on UFC 656 | \item input desired number, ENT 657 | \end{subenumerate}} 658 | \blueitem{Edit Coordinates}{As described in \textbf{Section \ref{sec:wyptlatlong} or \ref{sec:wyptgrid}}} 659 | \end{tablenumerate} 660 | 661 | \subsection{WAYPOINT - REMOVE} 662 | \begin{tablenumerate} 663 | \blueitem{DATA Page}{Press DATA OSB on HSI} 664 | & & verify correct sequence is selected \\ 665 | \blueitem{Activate UFC}{press SEQUFC OSB} 666 | \blueitem{Delete Waypoint}{ 667 | \begin{subenumerate} 668 | \item press DEL OSB on UFC 669 | \item input desired number, ENT 670 | \end{subenumerate}} 671 | \end{tablenumerate} 672 | 673 | \subsection{WAYPOINT - EDIT LAT/LONG} 674 | \label{sec:wyptlatlong} 675 | \begin{tablenumerate} 676 | \blueitem{DATA Page}{Press DATA OSB on HSI} 677 | \blueitem{Select Waypoint}{using Increment/Decrement OSBs} 678 | \blueitem{Activate UFC}{ 679 | \begin{subenumerate} 680 | \item press UFC OSB 681 | \item press POSN OSB 682 | \end{subenumerate}} 683 | \blueitem{Edit Coordinates}{ 684 | \begin{subenumerate} 685 | \item Input Latitude, ENT 686 | \item Input Longitude, ENT 687 | \end{subenumerate}} 688 | \end{tablenumerate} 689 | 690 | \subsection{WAYPOINT - EDIT GRID COORDS} 691 | \label{sec:wyptgrid} 692 | \begin{tablenumerate} 693 | \blueitem{DATA Page}{Press DATA OSB on HSI} 694 | \blueitem{Select Waypoint}{using Increment/Decrement OSBs} 695 | \blueitem{Activate UFC}{ 696 | \begin{subenumerate} 697 | \item press UFC OSB 698 | \item press GRID OSB 699 | \item HSI now displays Grid Menu 700 | \end{subenumerate}} 701 | \blueitem{Edit Coordinates}{ 702 | \begin{subenumerate} 703 | \item Verify TDC slaved to HSI 704 | \item Press \& Hold TDC DEPRESS to slew 705 | \item Release TDC when over desired square 706 | \item Input remaining coords on UFC 707 | \end{subenumerate}} 708 | \end{tablenumerate} 709 | 710 | \subsection{WAYPOINT - PRECISE COORDS} 711 | \begin{tableitemize} 712 | \blueitem{Normal Coordinates}{ 713 | \begin{subitemize} 714 | \item LAT/LONG: deg/min/sec 715 | \item GRID: 6 digits 716 | \end{subitemize}} 717 | \blueitem{Precise Coordinates}{ 718 | \begin{subitemize} 719 | \item LAT/LONG: deg/min/sec.xx 720 | \item GRID: 10 digits 721 | \end{subitemize}} 722 | \blueitem{Activation}{ 723 | \begin{subenumerate} 724 | \item press DATA OSB on HSI 725 | \item box PRECISE 726 | \end{subenumerate}} 727 | \end{tableitemize} 728 | 729 | \subsection{MARKPOINT} 730 | \begin{tableitemize} 731 | \blueitem{Markpoint}{Used to mark a point of interest} 732 | & & Maximum: 9 \\ 733 | \blueitem{Activate Navigation}{ 734 | \begin{subitemize} 735 | \item WYPT boxed on HSI 736 | \item M\# selected with Increment/Decrement OSBs 737 | \end{subitemize}} 738 | \blueitem{Examine MKPT Data}{press DATA OSB on HSI and select Markpoint as required} 739 | \blueitem{Employment}{ 740 | \begin{subenumerate} 741 | \item Select desired markpoint with Increment / Decrement OSBs 742 | \item Box WPDSG OSB to designate markpoint as the target point 743 | \end{subenumerate}} 744 | \end{tableitemize} 745 | 746 | \subsection{MARKPOINT - ADD} 747 | \begin{tableitemize} 748 | \blueitem{Overfly Method}{ 749 | \begin{subenumerate} 750 | \item Verify no target designated 751 | \item press MK\# OSB on HSI/SA to create Markpoint on current location 752 | \end{subenumerate}} 753 | \blueitem{Target Designate \break Method}{ 754 | \begin{subenumerate} 755 | \item Designate Target with sensor as required 756 | \item Press MK\# OSB on HSI/SA to create Markpoint on current designation 757 | \end{subenumerate}} 758 | \blueitem{Note}{After MK9 has been created the next Markpoint will overwrite MK1} 759 | \end{tableitemize} 760 | 761 | \subsection{ADF} 762 | \begin{tablenumerate} 763 | \blueitem{ADF Switch}{To desired COMM} 764 | \blueitem{Matching COMM}{Set ADF frequency as required (FM)} 765 | \blueitem{HSI}{Circle will appear indicating direction of ADF beacon on compass rose} 766 | \end{tablenumerate} 767 | 768 | \subsection{TACAN} 769 | \begin{tableitemize} 770 | \blueitem{TACAN}{Tactical Air Navigation} 771 | & & Provide direction \& distance to beacon \\ 772 | \blueitem{UFC \break Activation}{ 773 | \begin{subenumerate} 774 | \item Press TCN OSB and cycle to ON \\ 775 | \item Verify T/R mode active 776 | \item Input channel \#\# , EN 777 | \item Set X/Y as required 778 | \item Set A/A mode if required 779 | \end{subenumerate}} 780 | \blueitem{HSI \break Activation}{ 781 | \begin{subenumerate} 782 | \item Box TCN OSB 783 | \item Set CRS as required 784 | \end{subenumerate}} 785 | \blueitem{TACAN Data}{press DATA OSB on HSI while TCN boxed to view TACAN Database of all stations and their coordinates} 786 | \end{tableitemize} 787 | 788 | \cleardoublepage 789 | 790 | \subsection{AN/ALR-67 RWR} 791 | \begin{multicols*}{2} 792 | \begin{center} 793 | \begin{tabular}{c | p{1.5cm} p{2.5cm}} 794 | \toprule 795 | \multicolumn{3}{c}{\blue{SURFACE}} \\ 796 | \midrule 797 | \textbf{U} & & Unknown \\ 798 | \textbf{S} & & Search Radar \\ 799 | \textbf{T} & & ATC\\ 800 | \midrule 801 | \textbf{3} & SA-3 & ``Goa" \\ 802 | \textbf{6} & SA-6 & ``Gainful" \\ 803 | \textbf{8} & SA-8 & ``Gecko" \\ 804 | \midrule 805 | \textbf{10} & SA-10 & ``Grumble" \\ 806 | \textbf{11} & SA-11 & ``Gadfly" \\ 807 | \textbf{12} & SA-12 & ``Gladiator" \\ 808 | \textbf{13} & SA-13 & ``Gopher" \\ 809 | \midrule 810 | \textbf{40} & & Spruance Class \\ 811 | \textbf{48} & & Nimitz Class \\ 812 | \textbf{49} & & Perry Class \\ 813 | \midrule 814 | \textbf{HK} & MIM-23 & Hawk \\ 815 | \textbf{PT} & MIM-104 & Patriot \\ 816 | \midrule 817 | \multicolumn{3}{c}{\blue{AIRBORNE}} \\ 818 | \toprule 819 | \textbf{U} & & Unknown \\ 820 | \textbf{M} & & Active missile \\ 821 | \midrule 822 | \textbf{11} & F-111 & Aardvark \\ 823 | \textbf{13} & C-130 & Hercules \\ 824 | \midrule 825 | \textbf{14} & F-14 & Tomcat \\ 826 | \textbf{15} & F-15 & Eagle \\ 827 | \textbf{16} & F-16 & Fighting Falcon \\ 828 | \textbf{17} & C-17 & Globemaster III \\ 829 | \textbf{18} & F/A-18 & Hornet \\ 830 | \midrule 831 | \textbf{19} & MiG-19 & ``Farmer" \\ 832 | \textbf{21} & MiG-21 & ``Fishbed" \\ 833 | \textbf{22} & Tu-22 & ``Blinder" \\ 834 | \textbf{23} & MiG-23 & ``Flogger" \\ 835 | \textbf{24} & Su-24 & ``Fencer" \\ 836 | \textbf{25} & MiG-25 & ``Foxbat" \\ 837 | \midrule 838 | \textbf{29} & MiG-29 & ``Fulcrum" \\ 839 | & Su-27 & ``Flanker" \\ 840 | & Su-30 & ``Flanker-C" \\ 841 | & Su-33 & ``Flanker-D" \\ 842 | \midrule 843 | \end{tabular} 844 | \end{center} 845 | \columnbreak 846 | 847 | \begin{center} 848 | \begin{tabular}{c | p{1.5cm} p{2.5cm}} 849 | \midrule 850 | \textbf{31} & MiG-31 & ``Foxhound" \\ 851 | \textbf{34} & Su-34 & ``Fullback" \\ 852 | \textbf{39} & Su-25M & ``Frogfoot" \\ 853 | \midrule 854 | \textbf{52} & B-52 & Stratofortress \\ 855 | \midrule 856 | \textbf{76} & IL-76 & ``Candid" \\ 857 | \textbf{78} & IL-78 & ``Midas" \\ 858 | \textbf{AN} & AN-26B & ``Curl" \\ 859 | & AN-30M & ``Clank" \\ 860 | \midrule 861 | \textbf{B1} & B-1 & Lancer \\ 862 | \midrule 863 | \textbf{BE} & Tu-95 & ``Bear" \\ 864 | \textbf{BF} & Tu-22 & ``Backfire" \\ 865 | \textbf{BJ} & Tu-160 & ``Blackjack" \\ 866 | \midrule 867 | \textbf{E2} & E-2 & Hawkeye \\ 868 | \textbf{E3} & E-3 & Sentry \\ 869 | \midrule 870 | \textbf{F4} & F-4 & Phantom \\ 871 | \textbf{F-5} & F-5 & Tiger \\ 872 | \midrule 873 | \textbf{HX} & Ka-27 & ``Helix" \\ 874 | \midrule 875 | \textbf{KC} & KC-135 & Stratotanker \\ 876 | \midrule 877 | \textbf{KJ} & KJ-2000 & ``Mainring" \\ 878 | \textbf{M2} & Mirage 2k & \\ 879 | \midrule 880 | \textbf{S3} & S-3 & Viking\\ 881 | \textbf{SH} & SH-60 & Seahawk \\ 882 | \bottomrule 883 | \end{tabular} 884 | \end{center} 885 | \end{multicols*} 886 | 887 | \subsection{AN/ALE-47 ACMDS} 888 | \begin{tableitemize} 889 | \blueitem{ACMDS}{Airborne Countermeasures Dispenser System} 890 | \blueitem{Conditions}{ 891 | \begin{subitemize} 892 | \item Master Arm: ON 893 | \item DISPENSER Switch: ON (MIDDLE) 894 | \item ALE-47 Mode: not STBY 895 | \end{subitemize}} 896 | \blueitem{Self-Test}{Once airborne ALE-47 enters SF TEST before cycling to STBY} 897 | \blueitem{Set Mode}{MODE OSB with ALE-47 Boxed} 898 | \blueitem{Program Creation}{ 899 | \begin{subenumerate} 900 | \item Box ALE-47 OSB 901 | \item Press ARM OSB 902 | \item Press CHAFF/FLAR OSBs, set \# 903 | \item press RPT OSB, set \# repetitions 904 | \item press INT OSB, set interval 905 | \item press SAVE OSB to save program 906 | \end{subenumerate} 907 | 908 | \begin{subitemize} 909 | \item \textbf{Note:} Use INCREMENT / DECREMENT OSBs to change values 910 | \end{subitemize}} 911 | \blueitem{Activation}{ 912 | \begin{subitemize} 913 | \item Dispense Switch: AFT activates selected program 914 | \item Dispense Switch: FWD activates program 5 by default, can be cycled with STEP OSB 915 | \end{subitemize}} 916 | \end{tableitemize} 917 | 918 | \subsection{AN/ALE-47 ACMDS - MODES} 919 | \begin{tableitemize} 920 | \blueitem{MAN}{\textbf{Manual:} Program can be stored and edited, Chosen by pilot} 921 | \blueitem{AUTO}{\textbf{Automatic:} ALE-47 chooses when and what countermeasures to deploy} 922 | & & \textbf{Very Wasteful} \\ 923 | \blueitem{S/A}{\textbf{Semi-Automatic:} ALE-47 chooses program. Pilot controls release} 924 | \blueitem{STBY}{\textbf{Standby Mode}} 925 | \end{tableitemize} 926 | 927 | \subsection{AN/ALQ-165 ASPJ} 928 | \begin{tableitemize} 929 | \blueitem{OFF}{Turns off ECM Pod} 930 | \blueitem{STBY}{Standby Mode} 931 | \blueitem{BIT}{ECM jammer pod Build-In-Test} 932 | \blueitem{REC}{\textbf{Receive Mode:} Jammer is passive 933 | \begin{subitemize} 934 | \item Collects information on detected radars 935 | \item Does NOT transmit jamming signal 936 | \end{subitemize}} 937 | \blueitem{X-MIT}{\textbf{Transmit Mode:} Jammer is active 938 | \begin{subitemize} 939 | \item ECM pod will automatically transmit jamming signal when radar lock detected on own aircraft 940 | \item When ASPJ is actively jamming own radar will be unavailable 941 | \end{subitemize}} 942 | \end{tableitemize} 943 | 944 | \subsection{DATALINK} 945 | \begin{center} 946 | \large \textbf{Work In Progress} \normalsize 947 | \end{center} 948 | 949 | \subsection{IFF} 950 | \begin{center} 951 | \large \textbf{Work In Progress} \normalsize 952 | \end{center} 953 | 954 | \subsection{SA PAGE} 955 | \begin{center} 956 | \large \textbf{Work In Progress} \normalsize 957 | \end{center} 958 | 959 | \cleardoublepage 960 | 961 | 962 | \chapter{AN/APG-73 RADAR} 963 | \thumbtab{AN/APG-73 Radar}{2} 964 | \minitoc 965 | \cleardoublepage 966 | 967 | \section{RWS - RANGE WHILE SEARCH} 968 | 969 | \subsection{RWS} 970 | \begin{tableitemize} 971 | \blueitem{Range While Scan}{\textbf{Default A/A Radar Mode} 972 | \begin{subitemize} 973 | \item Long range BVR mode. 974 | \item Antenna follows designated search pattern and displays all tracks discovered in each sweep 975 | \end{subitemize}} 976 | \blueitem{Sensor Select Switch}{ 977 | \begin{subitemize} 978 | \item \textbf{FWD:} Switch to ACM Boresight 979 | \item \textbf{AFT:} Assign TDC to AMPCD 980 | \item \textbf{LEFT:} Assign TDC to left DDI 981 | \item \textbf{RIGHT:} Assign TDC to right DDI 982 | \end{subitemize}} 983 | \end{tableitemize} 984 | 985 | \subsection{RWS - LTWS} 986 | \begin{tableitemize} 987 | \blueitem{Latent Track While Scan}{\textbf{RWS Submode} 988 | \begin{subitemize} 989 | \item Allows HAFU symbology for contacts and integration of offboard trackfiles 990 | \end{subitemize}} 991 | \blueitem{Activation}{DATA subpage on Radar Page} 992 | \blueitem{HAFU \break Symbology}{ 993 | \begin{subitemize} 994 | \item Only displayed if TDC cursor is over trackfile or trackfile is L\&S or DT2 995 | \item Offboard only tracks always displayed as HAFU 996 | \item Launch acceptable ranges displayed for L\&S and DT2 997 | \end{subitemize}} 998 | \blueitem{IFF Interrogation}{Automatically when target under cursor} 999 | \end{tableitemize} 1000 | 1001 | \clearpage 1002 | 1003 | \section{TWS - TRACK WHILE SCAN} 1004 | 1005 | \subsection{TWS - DESIGNATION} 1006 | \begin{tableitemize} 1007 | \blueitem{Conditions}{ 1008 | \begin{subitemize} 1009 | \item TWS selected 1010 | \item TDC slaved to current radar screen 1011 | \end{subitemize}} 1012 | \blueitem{L\&S \break (Primary Target)}{TDC DEPRESS while over trackfile} 1013 | \blueitem{Cycle L\&S}{UNDESIGNATE Button (no DT2 designated)} 1014 | \blueitem{DT2 (Secondary \break Target)}{TDC DEPRESS while over second trackfile} 1015 | \blueitem{Swap L\&S DT2}{UNDESIGNATE Button} 1016 | \blueitem{STT Lock}{TDC DEPRESS again over L\&S trackfile} 1017 | \end{tableitemize} 1018 | 1019 | \subsection{TWS - SCAN CENTERING METHODS} 1020 | \begin{tableitemize} 1021 | \blueitem{MAN}{Manual: Azimuth centered on TDC cursor. Elevation can also be manually manipulated } 1022 | \blueitem{AUTO}{Automatic: Azimuth, Elevation centered on L\&S trackfile. If L\&S trackfile lost returns to MAN } 1023 | \blueitem{BIAS}{TDC DEPRESS on empty area to center azimuth there. Elevation controlled manually. Allows TDC to move separately from scan azimuth } 1024 | \end{tableitemize} 1025 | 1026 | \subsection{TWS - SCAN RAID} 1027 | \begin{tableitemize} 1028 | \blueitem{SCAN RAID Mode}{ 1029 | \begin{subitemize} 1030 | \item 22 deg, 3 bar scan centered on L\&S 1031 | \item Radar will attempt to find multiple targets out of single target 1032 | \end{subitemize}} 1033 | \blueitem{Conditions}{ 1034 | \begin{subitemize} 1035 | \item L\&S trackfile selected 1036 | \end{subitemize}} 1037 | \blueitem{Activation}{ 1038 | \begin{subitemize} 1039 | \item RAID button 1040 | \item RAID OSB 1041 | \end{subitemize}} 1042 | \blueitem{Deactivation}{ 1043 | \begin{subitemize} 1044 | \item RAID deselect 1045 | \item RSET OSB 1046 | \item UNDESIGNATE button 1047 | \item L\&S lost 1048 | \end{subitemize}} 1049 | \end{tableitemize} 1050 | 1051 | \subsection{TWS - EXP} 1052 | \begin{tableitemize} 1053 | \blueitem{EXP Mode}{10nm x 20 deg centered around L\&S} 1054 | \blueitem{Conditions}{ 1055 | \begin{subitemize} 1056 | \item L\&S trackfile selected 1057 | \end{subitemize}} 1058 | \blueitem{Activation}{EXP OSB} 1059 | \blueitem{Deactivation}{ 1060 | \begin{subitemize} 1061 | \item EXP OSB 1062 | \item RSET OSB 1063 | \item L\&S lost 1064 | \end{subitemize}} 1065 | \end{tableitemize} 1066 | 1067 | \clearpage 1068 | 1069 | \section{ACM - AIR COMBAT MANEUVERING} 1070 | 1071 | \subsection{ACM - BST} 1072 | \begin{tableitemize} 1073 | \blueitem{Boresight}{ 1074 | \begin{subitemize} 1075 | \item $\pm$ 1.7 deg vertical 1076 | \item $\pm$ 3.3 deg azimuth \\ 1077 | \item \textbf{Range:} 10nm \\ 1078 | \end{subitemize}} 1079 | \blueitem{Conditions}{ 1080 | \begin{subitemize} 1081 | \item Master Mode: A/A 1082 | \item HMD: OFF 1083 | \end{subitemize}} 1084 | \blueitem{Activation}{SCS: FWD (enters BST)} 1085 | \blueitem{Deactivation}{UNDESIGNATE button} 1086 | \end{tableitemize} 1087 | 1088 | \subsection{ACM - VACQ} 1089 | \begin{tableitemize} 1090 | \blueitem{Vertical Acquis.}{ 1091 | \begin{subitemize} 1092 | \item -13 deg to 46 deg vertical 1093 | \item 6 deg azimuth \\ 1094 | \item Range: 5nm \\ 1095 | \end{subitemize}} 1096 | \blueitem{Conditions}{ 1097 | \begin{subitemize} 1098 | \item Master Mode: A/A 1099 | \item HMD: OFF 1100 | \end{subitemize}} 1101 | \blueitem{Activation}{ 1102 | \begin{subenumerate} 1103 | \item SCS: FWD (enters BST) 1104 | \item then AFT (enters VACQ) 1105 | \end{subenumerate}} 1106 | \blueitem{Deactivation}{UNDESIGNATE button} 1107 | \end{tableitemize} 1108 | 1109 | \subsection{ACM - WACQ} 1110 | \begin{tableitemize} 1111 | \blueitem{Caged Wide Acquis.}{ 1112 | \begin{subitemize} 1113 | \item -9 deg to +6 deg vertical 1114 | \item 60 deg azimuth 1115 | \end{subitemize}} 1116 | \blueitem{Uncaged Wide Acquis.}{NOT IMPLEMENTED} 1117 | \blueitem{Conditions}{ 1118 | \begin{subitemize} 1119 | \item Master Mode: A/A 1120 | \item HMD: OFF 1121 | \end{subitemize}} 1122 | \blueitem{Activation}{ 1123 | \begin{subenumerate} 1124 | \item SCS: FWD (enters BST) 1125 | \item then LEFT (enters WACQ) 1126 | \end{subenumerate}} 1127 | \blueitem{Toggle Mode}{CAGE/UNCAGE} 1128 | \blueitem{Deactivation}{UNDESIGNATE button} 1129 | \end{tableitemize} 1130 | 1131 | \subsection{ACM - GACQ} 1132 | \begin{tableitemize} 1133 | \blueitem{Gun Acquisition}{ 1134 | \begin{subitemize} 1135 | \item -14 deg to +6 deg vertical 1136 | \item 20 deg azimuth 1137 | \end{subitemize}} 1138 | \blueitem{Conditions}{ 1139 | \begin{subitemize} 1140 | \item Master Mode: A/A 1141 | \item HMD: OFF 1142 | \end{subitemize}} 1143 | \blueitem{Activation}{Automatically enabled upon guns selection} 1144 | \blueitem{Deactivation}{UNDESIGNATE button} 1145 | \end{tableitemize} 1146 | 1147 | \clearpage 1148 | 1149 | \section{LOCK ACQUISITION} 1150 | 1151 | \subsection{STT} 1152 | \begin{tableitemize} 1153 | \blueitem{Conditions}{ 1154 | \begin{subitemize} 1155 | \item Master Mode: A/A 1156 | \item TDC slaved to current radar scree 1157 | \end{subitemize}} 1158 | \blueitem{RWS Designation}{TDC DEPRESS to STT} 1159 | \blueitem{LTWS Designation}{TDC DEPRESS to designate L\&S} & & second TDC DEPRESS to STT \\ 1160 | \blueitem{TWS Designation}{TDC DEPRESS to designate L\&S} & & second TDC DEPRESS to STT \\ 1161 | \blueitem{Undesignate}{UNDESIGNATE button} 1162 | \end{tableitemize} 1163 | 1164 | \subsection{AACQ} 1165 | \begin{tableitemize} 1166 | \blueitem{Automatic Acquisition}{Fast method to acquire lock from BVR mode} 1167 | \blueitem{Conditions}{ 1168 | \begin{subitemize} 1169 | \item Master Mode: A/A 1170 | \item TDC slaved to current radar screen 1171 | \item Radar not in an ACM mode 1172 | \end{subitemize}} 1173 | \blueitem{Designation}{SCS towards radar screen} 1174 | \blueitem{Deactivate}{SCS AFT} 1175 | \end{tableitemize} 1176 | 1177 | \subsection{JHMCS} 1178 | \begin{tableitemize} 1179 | \blueitem{LHACQ}{Long Range Helmet Acquisition: 40nm} 1180 | \blueitem{HACQ}{Helmet Acquisition: 10nm} 1181 | \blueitem{Conditions}{ 1182 | \begin{subitemize} 1183 | \item Master Mode: A/A 1184 | \item HMD: BRT 1185 | \end{subitemize}} 1186 | \blueitem{LHACQ Activation}{SCS: FWD long (>0.8s)} 1187 | \blueitem{HACQ Activation}{SCS: FWD short (<0.8s)} 1188 | \blueitem{Deactivate}{SCS AFT} 1189 | \end{tableitemize} 1190 | 1191 | \vfill\null 1192 | \clearpage 1193 | 1194 | \section{MAP} 1195 | 1196 | \subsection{MAP} 1197 | \begin{tableitemize} 1198 | \blueitem{Conditions}{ 1199 | \begin{subitemize} 1200 | \item Radar: OPR 1201 | \end{subitemize}} 1202 | \blueitem{Activation}{ 1203 | \begin{subitemize} 1204 | \item Master Mode: A/G 1205 | \item or SURF OSB on RDR ATTK page 1206 | \end{subitemize}} 1207 | \blueitem{PEN}{Scans small area on ground} 1208 | \blueitem{FAN}{Broader/quicker scan, less defined image 1209 | \begin{subitemize} 1210 | \item narrow in azimuth, broad in elevation 1211 | \end{subitemize}} 1212 | \end{tableitemize} 1213 | 1214 | \subsection{MAP - DESIGNATION} 1215 | \begin{tableitemize} 1216 | \blueitem{Conditions}{ 1217 | \begin{subitemize} 1218 | \item Master Mode: A/G 1219 | \item TDC slaved to current radar screen 1220 | \end{subitemize}} 1221 | \blueitem{Designation}{TDC DEPRESS while over desired location 1222 | \begin{subitemize} 1223 | \item Range will auto adjust \\ 1224 | \item Cross marks designated point on Radar \\ 1225 | \item Diamond marks designated point on HUD \\ 1226 | \end{subitemize}} 1227 | \blueitem{Zoom}{using EXP1, EXP2, EXP3 modes} 1228 | \blueitem{Undesignation}{UNDESIGNATE button} 1229 | \end{tableitemize} 1230 | 1231 | \subsection{MAP - EXP1} 1232 | \begin{tableitemize} 1233 | \blueitem{EXP1}{ 1234 | \begin{subitemize} 1235 | \item Lowest resolution expanded mode 1236 | \item Range: 40nm 1237 | \item Azimuth: 45deg 1238 | \item Not ground stabilized unless designation exists (snowplow) 1239 | \end{subitemize}} 1240 | \blueitem{Conditions}{ 1241 | \begin{subitemize} 1242 | \item Radar Mode: MAP 1243 | \item TDC slaved to current radar screen 1244 | \end{subitemize}} 1245 | \blueitem{Activation}{ 1246 | \begin{subenumerate} 1247 | \item EXP1 OSB 1248 | \item Press \& hold TDC DEPRESS 1249 | \item Slew to desired region 1250 | \item Release TDC DEPRESS 1251 | \end{subenumerate} 1252 | 1253 | \begin{subitemize} 1254 | \item Range will auto adjust 1255 | \end{subitemize}} 1256 | \blueitem{FAST Option}{Boxing FAST scan option doubles radar's rate of scan for approximately half the scan quality} 1257 | \blueitem{Doppler Shift}{Area directly in front and at extreme edges of radar not visible} 1258 | \blueitem{Deactivation}{UNDESIGNATE button} 1259 | \end{tableitemize} 1260 | 1261 | \subsection{MAP - EXP2} 1262 | \begin{tableitemize} 1263 | \blueitem{EXP2}{ 1264 | \begin{subitemize} 1265 | \item Next higher resolution from EXP1 1266 | \item Range: 40nm 1267 | \item Ground stabilized regardless if designation exists unless outside of radar gimbal limits 1268 | \end{subitemize}} 1269 | \blueitem{Conditions}{ 1270 | \begin{subitemize} 1271 | \item Radar Mode: MAP 1272 | \item or Radar Mode: EXP1 1273 | \item TDC slaved to current radar screen 1274 | \end{subitemize}} 1275 | \blueitem{Activation}{ 1276 | \begin{subenumerate} 1277 | \item EXP2 OSB 1278 | \item Press \& hold TDC DEPRESS 1279 | \item Slew to desired region 1280 | \item Release TDC DEPRESS 1281 | \end{subenumerate} 1282 | 1283 | \begin{subitemize} 1284 | \item Range will auto adjust 1285 | \end{subitemize}} 1286 | \blueitem{FAST Option}{Boxing FAST scan option doubles radar's rate of scan for approximately half the scan quality} 1287 | \blueitem{Doppler Shift}{Area directly in front and at extreme edges of radar not visible} 1288 | \blueitem{Deactivation}{UNDESIGNATE button} 1289 | \end{tableitemize} 1290 | 1291 | \subsection{MAP - EXP3} 1292 | \begin{tableitemize} 1293 | \blueitem{EXP3}{ 1294 | \begin{subitemize} 1295 | \item Synthetic-Aperture Radar (SAR) Map 1296 | \item Range: 30nm 1297 | \item Ground stabilized even w/o designation. 1298 | \item 1.2 x 1.2nm, constant area and resolution regardless of range 1299 | \end{subitemize}} 1300 | \blueitem{Conditions}{ 1301 | \begin{subitemize} 1302 | \item Radar Mode: MAP 1303 | \item or Radar Mode: EXP1/EXP2 1304 | \item TDC slaved to current radar screen 1305 | \end{subitemize}} 1306 | \blueitem{Activation}{ 1307 | \begin{subenumerate} 1308 | \item EXP3 OSB 1309 | \item Press \& hold TDC DEPRESS 1310 | \item Slew to desired region 1311 | \item Release TDC DEPRESS 1312 | \end{subenumerate} 1313 | 1314 | \begin{subitemize} 1315 | \item Range will auto adjust 1316 | \end{subitemize}} 1317 | \blueitem{FAST Option}{Boxing FAST scan option doubles radar's rate of scan for approximately half the scan quality} 1318 | \blueitem{Doppler Shift}{Area directly in front and at extreme edges of radar not visible} 1319 | \blueitem{Deactivation}{UNDESIGNATE button} 1320 | \end{tableitemize} 1321 | 1322 | \subsection{MAP - EXP DESIGNATION} 1323 | \begin{tableitemize} 1324 | \blueitem{Conditions}{ 1325 | \begin{subitemize} 1326 | \item Radar Mode: EXP (EXP3 recommended) 1327 | \item TDC slaved to current radar screen 1328 | \end{subitemize}} 1329 | \blueitem{Activation}{ 1330 | \begin{subenumerate} 1331 | \item Press \& hold TDC DEPRESS 1332 | \item Slew to desired spot 1333 | \item Release TDC DEPRESS to designate 1334 | \end{subenumerate}} 1335 | \blueitem{Symbology}{ 1336 | \begin{subitemize} 1337 | \item Range will auto adjust 1338 | \item Cross marks designated point on Radar 1339 | \item Diamond marks designated point on HUD 1340 | \end{subitemize}} 1341 | \blueitem{TGP}{Targeting pod will automatically slave to designated point if FLIR ON and TGP unstowed} 1342 | \blueitem{Deactivation}{UNDESIGNATE button} 1343 | \end{tableitemize} 1344 | 1345 | \subsection{GMT} 1346 | \begin{tableitemize} 1347 | \blueitem{GMT Mode}{Ground Moving Target radar mode scans for highlights \& moving targets through doppler shift. Trackfiles displayed as bricks} 1348 | \blueitem{Conditions}{ 1349 | \begin{subitemize} 1350 | \item RDR: OPR 1351 | \item Master Mode: A/G 1352 | \end{subitemize}} 1353 | \blueitem{Activation}{press MAP OSB from A/G MAP pag} 1354 | \blueitem{Interleaved Option}{Press INTL OSB} 1355 | & & GMT \& MAP modes interleaved, mode is GMT/MAP \\ 1356 | \end{tableitemize} 1357 | 1358 | \subsection{GMT - GMTT} 1359 | \begin{tableitemize} 1360 | \blueitem{GMTT}{Ground Moving Target Track} 1361 | & & Range: 10nm \\ 1362 | \blueitem{Conditions}{ 1363 | \begin{subitemize} 1364 | \item Master Mode: A/G 1365 | \item TDC slaved to current radar screen 1366 | \item Radar Mode: GMT 1367 | \end{subitemize}} 1368 | \blueitem{Activation}{1. \ Slew TDC over desired target} 1369 | & & 2. \ SCS: Towards current radar screen to command acquisition \\ 1370 | \blueitem{Symbology}{ 1371 | \begin{subitemize} 1372 | \item Radar page: brick with motion vector, speed, \& heading 1373 | \item HUD: diamond 1374 | \item point can be used/slaved to by other sensors 1375 | \end{subitemize}} 1376 | \blueitem{Deactivation}{UNDESIGNATE Button} 1377 | \end{tableitemize} 1378 | 1379 | \subsection{SEA} 1380 | \begin{tableitemize} 1381 | \blueitem{SEA Mode}{SEA radar mode scans for highlights \& moving naval targets through doppler shift. Trackfiles displayed as bricks. Additional filtering applied \& scan rates reduced} 1382 | \blueitem{Conditions}{ 1383 | \begin{subitemize} 1384 | \item RDR: OPR 1385 | \item Master Mode: A/G 1386 | \end{subitemize}} 1387 | \blueitem{Activation}{press MAP OSB from A/G MAP pag} 1388 | \blueitem{Interleaved Option}{Press INTL OSB} 1389 | & & GMT \& MAP modes interleaved, mode is SEA/MAP \\ 1390 | \end{tableitemize} 1391 | 1392 | \subsection{SEA - TARGET TRACKING} 1393 | \begin{tableitemize} 1394 | \blueitem{Conditions}{ 1395 | \begin{subitemize} 1396 | \item Master Mode: A/G 1397 | \item TDC slaved to current radar screen 1398 | \item Radar Mode: SEA 1399 | \end{subitemize}} 1400 | \blueitem{Activation}{ 1401 | \begin{subenumerate} 1402 | \item Slew TDC over desired target 1403 | \item SCS: Towards current radar screen to command acquisition 1404 | \end{subenumerate}} 1405 | \blueitem{Symbology}{ 1406 | \begin{subitemize} 1407 | \item Radar page: brick with motion vector, speed, \& heading 1408 | \item HUD: diamond 1409 | \item point can be used/slaved to by other sensors 1410 | \end{subitemize}} 1411 | \blueitem{Harpoon Conditions}{ 1412 | \begin{subitemize} 1413 | \item Master Mode: A/G 1414 | \item Target Locked 1415 | \item HPD Mode: R/BL 1416 | \end{subitemize}} 1417 | \blueitem{Deactivation}{UNDESIGNATE Button} 1418 | \end{tableitemize} 1419 | 1420 | \cleardoublepage 1421 | 1422 | \chapter{TGP \& JHMCS} 1423 | \thumbtab{TGP \& JHMCS}{3} 1424 | \minitoc 1425 | \cleardoublepage 1426 | 1427 | \section{AAQ-28 LITENING II} 1428 | 1429 | \subsection{CONTROLS} 1430 | \begin{tableitemize} 1431 | \blueitem{Display Selection}{SCS: towards Targeting pod display} 1432 | \blueitem{Toggle PTRK/ATRK}{SCS: towards Selected Display} 1433 | \blueitem{Zoom}{ 1434 | \begin{subitemize} 1435 | \item Radar Elevation Control 1436 | \item Zoom OSBs 1437 | \end{subitemize}} 1438 | \blueitem{Toggle Wide/Nar FOV}{ 1439 | \begin{subitemize} 1440 | \item RAID/FLIR Button short 1441 | \item NAR/WIDE OSB 1442 | \end{subitemize}} 1443 | \blueitem{Toggle CCD/FLIR}{ 1444 | \begin{subitemize} 1445 | \item RAID/FLIR Button long 1446 | \item FLIR/CCD OS 1447 | \end{subitemize}} 1448 | \blueitem{Slew Reticle}{TDC Slew} 1449 | \blueitem{Designate}{TDC DEPRESS} 1450 | \blueitem{Undesignate}{NWS/UNDESIGNATE Button} 1451 | \blueitem{Toggle LST}{CAGE/UNCAGE Button} 1452 | \blueitem{Lase}{TRIGGER if TRIG mode boxed} 1453 | \end{tableitemize} 1454 | 1455 | \subsection{POINTING METHODS} 1456 | \begin{tableitemize} 1457 | \blueitem{VVSLV}{FLIR slaved to line of sight of velocity vector} 1458 | \blueitem{Snowplow}{Default mode when no Target designated} 1459 | \blueitem{Stabilized Pointing}{Entered when target designated from Snowplow or cycled from ATRK/PTRK} 1460 | \blueitem{Waypoint Slaving}{Available using HSI (TGP snaps to WYPT)} 1461 | \blueitem{ATRK}{Tracks specific area. Best for fixed targets} 1462 | \blueitem{PTRK}{Tracks specific Point. Best for moving targets} 1463 | \end{tableitemize} 1464 | 1465 | \subsection{POINTING METHODS - VVSLV} 1466 | \begin{tableitemize} 1467 | \blueitem{VVSLV}{FLIR slaved to line of sight of velocity vector} 1468 | \blueitem{Conditions}{ 1469 | \begin{subitemize} 1470 | \item TDC slaved to current FLIR page 1471 | \end{subitemize}} 1472 | \blueitem{Activation}{ 1473 | \begin{subitemize} 1474 | \item Press UNDESIGNATE twice 1475 | \item or press VVSLV OSB on FLIR page 1476 | \end{subitemize}} 1477 | \blueitem{RTCL}{Box RTCL OSB to display TGP reticle} 1478 | \blueitem{Designation}{TDC DEPRESS} 1479 | \end{tableitemize} 1480 | 1481 | \subsection{POINTING METHODS - SNOWPLOW} 1482 | \begin{tableitemize} 1483 | \blueitem{Snowplow}{Default mode when no Target designated} 1484 | & & \textbf{\textbullet} \ 0 deg left/right \\ 1485 | & & \textbf{\textbullet} \ -8 deg down \\ 1486 | \blueitem{Conditions}{ 1487 | \begin{subitemize} 1488 | \item TDC slaved to current FLIR page 1489 | \end{subitemize}} 1490 | \blueitem{Activation}{1. \ Press UNDESIGNATE twice to select VVSLV \& unstow TGP} 1491 | & & 2. \ Press UNDESIGNATE twice to deselect VVSLV \\ 1492 | \blueitem{Designation}{TDC DEPRESS} 1493 | \end{tableitemize} 1494 | 1495 | \subsection{POINTING METHODS - STABILIZED POINTING} 1496 | \begin{tableitemize} 1497 | \blueitem{Stabilized Pointing}{FLIR can be slewed freely. Designated target is constantly updated to current location.} 1498 | & & Ground stabilized \\ 1499 | \blueitem{Activation}{Entered automatically when} 1500 | & & \textbf{\textbullet} \ Target designated from Snowplow \\ 1501 | & & \textbf{\textbullet} \ Cycled to from Auto Track or Point Track \\ 1502 | \blueitem{Designation}{Constantly updated} 1503 | \end{tableitemize} 1504 | 1505 | \subsection{POINTING METHODS - WAYPOINT SLAVED} 1506 | \begin{tableitemize} 1507 | \blueitem{Conditions}{ 1508 | \begin{subitemize} 1509 | \item TDC slaved to current FLIR page 1510 | \item HSI: Desired waypoint selected 1511 | \item HSI: WYPT boxed on 1512 | \end{subitemize}} 1513 | \blueitem{Activation}{HSI: press WPSDG to designate waypoint as target and slave TGP} 1514 | \blueitem{Slew}{TDC slew to adjust TGP} 1515 | \end{tableitemize} 1516 | 1517 | \subsection{POINTING METHODS - AREA TRACK} 1518 | \begin{tableitemize} 1519 | \blueitem{Conditions}{ 1520 | \begin{subitemize} 1521 | \item TDC slaved to current FLIR page 1522 | \end{subitemize}} 1523 | \blueitem{Activation}{1. \ Unstow TGP with VVSLV} 1524 | & & 2. SCS towards FLIR page to toggle ATRK/PTRK \\ 1525 | \blueitem{Slew}{Not possibe in Area Track} 1526 | \blueitem{Designation}{TDC DEPRESS} 1527 | \blueitem{Deactivation}{Press UNDESIGNATE to revert to Snowplow} 1528 | \end{tableitemize} 1529 | 1530 | \subsection{POINTING METHODS - POINT TRACK} 1531 | \begin{tableitemize} 1532 | \blueitem{Conditions}{ 1533 | \begin{subitemize} 1534 | \item TDC slaved to current FLIR page 1535 | \end{subitemize}} 1536 | \blueitem{Activation}{1. \ Unstow TGP with VVSLV} 1537 | & & 2. SCS towards FLIR page to toggle ATRK/PTRK \\ 1538 | \blueitem{Slew}{Not possibe in Point Track} 1539 | \blueitem{Designation}{TDC DEPRESS} 1540 | \blueitem{Deactivation}{Press UNDESIGNATE to revert to Snowplow} 1541 | \end{tableitemize} 1542 | 1543 | \subsection{POINTING METHODS - TGP OFFSET} 1544 | \begin{tableitemize} 1545 | \blueitem{Conditions}{ 1546 | \begin{subitemize} 1547 | \item In ATRK/PTRK 1548 | \end{subitemize}} 1549 | \blueitem{OFFSET}{TDC DEPRESS to activate OFFSET} 1550 | & & \textbf{\textbullet} \ + cross (Offset Cursor) appears \\ 1551 | & & \textbf{\textbullet} \ Slew with TDC \\ 1552 | \blueitem{Designation}{TDC DEPRESS again to designate Offset Cursor as new Target} 1553 | \blueitem{FLIR to Cursor}{SCS in direction of FLIR page to snap TGP to location of Offset Cursor (while in PTRK)} 1554 | \end{tableitemize} 1555 | 1556 | \subsection{START-UP \& LASING} 1557 | \begin{tablenumerate} 1558 | \blueitem{Start-Up}{ 1559 | \begin{subenumerate} 1560 | \item FLIR Switch: STBY 1561 | \item Open FLIR page, monitor warm-up 1562 | \item FLIR Switch: ON when STBY displayed 1563 | \item Confirm mode displays OPR 1564 | \end{subenumerate}} 1565 | \blueitem{Unstow}{ 1566 | \begin{subenumerate} 1567 | \item Select VVSLV 1568 | \item Unselect VVSLV to enter Snowplow 1569 | \end{subenumerate}} 1570 | \blueitem{DDI}{Contrast \& Brightness as required} 1571 | \blueitem{LTD/R}{ 1572 | \begin{subenumerate} 1573 | \item ARM 1574 | \item Confirm L ARM indication 1575 | \end{subenumerate}} 1576 | \blueitem{TDC}{Slew to Target} 1577 | \blueitem{Zoom}{as required (WIDE/NAR)} 1578 | \blueitem{Camera Mode}{as required (CCD/FLIR)} 1579 | \blueitem{Pointing Method}{as required} 1580 | \blueitem{Laser Code}{ 1581 | \begin{subenumerate} 1582 | \item Press UFC OSB 1583 | \item Press LTDC, enter desired code 1584 | \item Press ENT 1585 | \end{subenumerate}} 1586 | \blueitem{Designate Target}{TDC DEPRESS (will slave A/G weapons to TGP)} 1587 | \blueitem{Lasing}{ 1588 | \begin{subitemize} 1589 | \item TRIG boxed: press \& hold trigger to lase 1590 | \item TRIG unboxed: AUTO lasing 1591 | \end{subitemize}} 1592 | \end{tablenumerate} 1593 | 1594 | \subsection{LASER SPOT TRACKER (LST)} 1595 | \begin{tableitemize} 1596 | \blueitem{Conditions}{ 1597 | \begin{subitemize} 1598 | \item Master Mode: A/G 1599 | \item TGP: ON 1600 | \item LST/NFLR: ON 1601 | \end{subitemize}} 1602 | \blueitem{Set Laser Code}{1. \ UFC OSB on FLIR page} 1603 | & & 2. \ Press LSTC, enter Code on Keypad, ENT \\ 1604 | \blueitem{Begin Search}{1. \ Set TGP to Snowplow, slew to vicinity of laser} 1605 | & & 2. \ Press LST OSB on FLIR page, or press CAGE/UNCAGE \\ 1606 | \blueitem{Searching}{ 1607 | \begin{subitemize} 1608 | \item FLIR image blank 1609 | \item LST flashes on FLIR page 1610 | \end{subitemize}} 1611 | \end{tableitemize} 1612 | 1613 | \subsection{LASER MARKING} 1614 | \blue{Note} CANNOT be used for weapons guidance, only visible in NVG 1615 | \begin{checklistenumerate} 1616 | \blueitem{TPOD}{\dotfill on and ready} 1617 | \blueitem{LTD/R}{\dotfill ARM} 1618 | \blueitem{SCS}{\dotfill press in direction of FLIR to focus} 1619 | \blueitem{VVSLV}{\dotfill press UNDESIGNATE twice rapidly to select vel vector slave mode (or press VVSLV OSB)} 1620 | \blueitem{Snowplow}{\dotfill press UNDESIGNATE twice rapidly to select snowplow mode(or press VVSLV OSB to deselect)} 1621 | \blueitem{TDC}{\dotfill slew to target} 1622 | \blueitem{TDC}{\dotfill depress to designate target} 1623 | \blueitem{TRIG}{\dotfill boxed} 1624 | \blueitem{MARK}{\dotfill boxed, activates M-Arm} 1625 | \blueitem{Laser}{\dotfill press TRIGGER to mark \\ \hfill again to cease marking} 1626 | \end{checklistenumerate} 1627 | 1628 | \subsection{A/A POINT TRACK} 1629 | \begin{checklistenumerate} 1630 | \blueitem{TPOD}{\dotfill on \& ready} 1631 | \blueitem{Master Mode}{\dotfill A/A} 1632 | \blueitem{SCS}{\dotfill in direction of FLIR display} 1633 | \blueitem{VVSLV}{\dotfill press UNDESIGNATE twice rapidly to select vel vector slave mode (or press VVSLV OSB)} 1634 | \blueitem{RTCL OSB}{\dotfill press to display reticle} 1635 | \blueitem{Maneuver}{\dotfill to place vel. vector near target aircraft} 1636 | \blueitem{Zoom}{\dotfill as desired} 1637 | \blueitem{FLIR/CCD Mode}{\dotfill as desired} 1638 | \blueitem{SCS}{\dotfill towards FLIR display to attempt Point Track} 1639 | \blueitem{Designation Box}{\dotfill good track} 1640 | \blueitem{Dump Target}{\dotfill SCS towards FLIR display} 1641 | \end{checklistenumerate} 1642 | To slave radar to TPOD 1643 | \begin{checklistenumerate} 1644 | \blueitem{Radar}{\dotfill OPR} 1645 | \blueitem{Point Track}{\dotfill acquired} 1646 | \blueitem{FLIR Page}{\dotfill press SLAVE OSB} 1647 | \end{checklistenumerate} 1648 | 1649 | \subsection{A/A RADAR SLAVING} 1650 | \begin{checklistenumerate} 1651 | \blueitem{TPOD}{\dotfill on \& ready} 1652 | \blueitem{Radar}{\dotfill OPR} 1653 | \blueitem{Master Mode}{\dotfill A/A} 1654 | \blueitem{R DDI}{\dotfill RDR ATTK page} 1655 | \blueitem{L DDI}{\dotfill FLIR page} 1656 | \blueitem{SCS}{\dotfill towards RDR ATTK page} 1657 | \blueitem{Radar Lock}{\dotfill acquired} 1658 | \blueitem{RRSLV OSB}{\dotfill press, slaves TPOD to radar} 1659 | \blueitem{SCS}{\dotfill towards FLIR page} 1660 | \blueitem{Zoom}{\dotfill as desired} 1661 | \blueitem{FLIR/CCD Mode}{\dotfill as desired} 1662 | \blueitem{SCS}{\dotfill towards FLIR page to attempt Point Track} 1663 | \end{checklistenumerate} 1664 | 1665 | \cleardoublepage 1666 | \section{ASQ-228 ATFLIR} 1667 | 1668 | \subsection{CONTROLS} 1669 | \begin{tableitemize} 1670 | \blueitem{Display Selection}{SCS: towards Targeting pod display} 1671 | \blueitem{Toggle SCENE/AUTO}{SCS: towards Selected Display} 1672 | \blueitem{Zoom}{ 1673 | \begin{subitemize} 1674 | \item Radar Elevation Control 1675 | \item Zoom OSBs 1676 | \end{subitemize}} 1677 | \blueitem{Toggle}{ 1678 | \begin{subitemize} 1679 | \item RAID/FLIR Button short 1680 | \end{subitemize}} 1681 | \blue{WFOV/MFOV/NAR}& \textbf{\textbullet} \ FOV OSB \\ 1682 | \blueitem{Toggle CCD/FLIR}{ 1683 | \begin{subitemize} 1684 | \item RAID/FLIR Button long 1685 | \item FLIR/CCD OS 1686 | \end{subitemize}} 1687 | \blueitem{Slew Reticle}{TDC Slew} 1688 | \blueitem{Designate}{TDC DEPRESS} 1689 | \blueitem{Undesignate}{NWS/UNDESIGNATE Button} 1690 | \blueitem{Lase}{TRIGGER if TRIG mode boxed} 1691 | \end{tableitemize} 1692 | 1693 | \subsection{POINTING METHODS} 1694 | \begin{tableitemize} 1695 | \blueitem{VVSLV}{FLIR slaved to line of sight of velocity vector} 1696 | \blueitem{Snowplow}{Default mode when no Target designated} 1697 | \blueitem{Stabilized Pointing}{Entered when target designated from Snowplow or cycled from Auto Track / Point Track} 1698 | \blueitem{Waypoint Slaving}{Available using HSI (TGP snaps to WYPT)} 1699 | \blueitem{Scene Track}{Tracks specific area. Best for fixed targets} 1700 | \blueitem{Auto Track}{Tracks specific Point. Best for moving targets} 1701 | \blueitem{INR / Stabilized Pointing}{Active when TGP is slewed, maintains orientation to AC using inertial data} 1702 | \end{tableitemize} 1703 | 1704 | \subsection{POINTING METHODS - VVSLV} 1705 | \begin{tableitemize} 1706 | \blueitem{VVSLV}{FLIR slaved to line of sight of velocity vector} 1707 | \blueitem{Conditions}{ 1708 | \begin{subitemize} 1709 | \item TDC slaved to current FLIR page 1710 | \end{subitemize}} 1711 | \blueitem{Activation}{ 1712 | \begin{subitemize} 1713 | \item Press UNDESIGNATE twice 1714 | \item or press VVSLV OSB on FLIR page 1715 | \end{subitemize}} 1716 | \blueitem{RTCL}{Box RTCL OSB to display TGP reticle} 1717 | \blueitem{Designation}{TDC DEPRESS} 1718 | \end{tableitemize} 1719 | 1720 | \subsection{POINTING METHODS - SNOWPLOW} 1721 | \begin{tableitemize} 1722 | \blueitem{Snowplow}{Default mode when no Target designated} 1723 | & & \textbf{\textbullet} \ 0 deg left/right \\ 1724 | & & \textbf{\textbullet} \ -8 deg down \\ 1725 | \blueitem{Conditions}{ 1726 | \begin{subitemize} 1727 | \item TDC slaved to current FLIR page 1728 | \end{subitemize}} 1729 | \blueitem{Activation}{1. \ Press UNDESIGNATE twice to select VVSLV \& unstow TGP} 1730 | & & 2. \ Press UNDESIGNATE twice to deselect VVSLV \\ 1731 | \blueitem{Designation}{TDC DEPRESS} 1732 | \end{tableitemize} 1733 | 1734 | \subsection{POINTING METHODS - WAYPOINT SLAVED} 1735 | \begin{tableitemize} 1736 | \blueitem{Conditions}{ 1737 | \begin{subitemize} 1738 | \item TDC slaved to current FLIR page 1739 | \item HSI: Desired waypoint selected 1740 | \item HSI: WYPT boxed on 1741 | \end{subitemize}} 1742 | \blueitem{Activation}{HSI: press WPSDG to designate waypoint as target and slave TGP} 1743 | \blueitem{Slew}{TDC slew to adjust TGP} 1744 | \end{tableitemize} 1745 | 1746 | \subsection{POINTING METHODS - SCENE TRACK} 1747 | \begin{tableitemize} 1748 | \blueitem{Conditions}{ 1749 | \begin{subitemize} 1750 | \item TDC slaved to current FLIR page 1751 | \end{subitemize}} 1752 | \blueitem{Activation}{1. \ Unstow TGP with VVSLV} 1753 | & & 2. SCS towards FLIR page to toggle SCENE/AUTO \\ 1754 | \blueitem{Slew}{Scene Track reticle still slewable with TDC} 1755 | \blueitem{Designation}{Automatic in SCENE Track} 1756 | \blueitem{Deactivation}{Press UNDESIGNATE to revert to Snowplow} 1757 | \end{tableitemize} 1758 | 1759 | \subsection{POINTING METHODS - AUTO TRACK} 1760 | \begin{tableitemize} 1761 | \blueitem{Conditions}{ 1762 | \begin{subitemize} 1763 | \item TDC slaved to current FLIR page 1764 | \end{subitemize}} 1765 | \blueitem{Activation}{1. \ Unstow TGP with VVSLV} 1766 | & & 2. SCS towards FLIR page to toggle SCENE/AUTO \\ 1767 | \blueitem{Slew}{Not possibe in Auto Track} 1768 | \blueitem{Designation}{Automatic in AUTO Track} 1769 | \blueitem{Deactivation}{Press UNDESIGNATE to revert to Snowplow} 1770 | \end{tableitemize} 1771 | 1772 | \subsection{POINTING METHODS - TGP OFFSET} 1773 | \begin{tableitemize} 1774 | \blueitem{Conditions}{ 1775 | \begin{subitemize} 1776 | \item AUTO Track 1777 | \end{subitemize}} 1778 | \blueitem{OFFSET}{TDC DEPRESS to activate OFFSET} 1779 | & & \textbf{\textbullet} \ + cross (Offset Cursor) appears \\ 1780 | & & \textbf{\textbullet} \ Slew with TDC \\ 1781 | \blueitem{Designation}{SCS towards FLIR to designate Offset Cursor} 1782 | \blueitem{FLIR to Cursor}{SCS in direction of FLIR page to snap TGP to location of Offset Cursor (while in PTRK)} 1783 | \end{tableitemize} 1784 | 1785 | \subsection{LASER SPOT TRACKER (LST)} 1786 | \begin{tableitemize} 1787 | \blueitem{Conditions}{ 1788 | \begin{subitemize} 1789 | \item Master Mode: A/G 1790 | \item TGP: ON 1791 | \item LST/NFLR: ON 1792 | \end{subitemize}} 1793 | \blueitem{Set Laser Code}{1. \ UFC OSB on FLIR page} 1794 | & & 2. \ Press LSTC, enter Code on Keypad, ENT \\ 1795 | \blueitem{Begin Search}{1. \ Set TGP to Snowplow, slew to vicinity of laser} 1796 | & & 2. \ Press LST OSB on FLIR page \\ 1797 | \blueitem{Searching}{ 1798 | \begin{subitemize} 1799 | \item FLIR image blank 1800 | \item LST flashes on FLIR page 1801 | \end{subitemize}} 1802 | \blueitem{Designation}{TDC DEPRESS} 1803 | \end{tableitemize} 1804 | 1805 | \subsection{A/A OPERATION MODES} 1806 | \subsection{A/A AUTO TRACK} 1807 | \subsection{A/A L+S SLAVE} 1808 | 1809 | \cleardoublepage 1810 | \section{JHMCS} 1811 | 1812 | \subsection{CONTROLS} 1813 | \begin{tableitemize} 1814 | \blueitem{HMD Brightness}{BRT} 1815 | & & Powers on JHMCS \\ 1816 | \blueitem{Master Mode}{A/A \& A/G Master Mode buttons} 1817 | & & symbology changes depending on selected mode \\ 1818 | \blueitem{HMD Blanking Toggle}{Even Marker ``Recce" Button} 1819 | & & Toggles manual blanking \\ 1820 | \blueitem{LHACQ Activation}{ 1821 | \begin{subitemize} 1822 | \item Master Mode: A/A 1823 | \item SCS: FWD long (>0.8s) 1824 | \end{subitemize}} 1825 | \blueitem{HACQ Activation}{ 1826 | \begin{subitemize} 1827 | \item Master Mode: A/A 1828 | \item SCS: FWD short (<0.8s) 1829 | \end{subitemize}} 1830 | \blueitem{Toggle Selected Sensor}{ 1831 | \begin{subitemize} 1832 | \item Master Mode: A/G 1833 | \item SCS: FWD 1834 | \item Toggles between HUD and HMD \\ 1835 | \end{subitemize}} 1836 | \blueitem{Undesignate}{UNDESIGNATE} 1837 | \end{tableitemize} 1838 | 1839 | \subsection{SYMBOLOGY} 1840 | 1841 | \subsection{SETUP - FORMAT} 1842 | 1843 | \subsection{SETUP - BLANKING} 1844 | 1845 | \subsection{SETUP - REJECT} 1846 | 1847 | \subsection{SETUP - MIDS} 1848 | 1849 | \subsection{TARGET DESIGNATION - A/G} 1850 | \begin{tableitemize} 1851 | \blueitem{Conditions}{ 1852 | \begin{subitemize} 1853 | \item Master Mode: A/G 1854 | \item JHMCS: ON 1855 | \item TDC slaved to HUD or HMD 1856 | \end{subitemize}} 1857 | \blueitem{Symbology}{ 1858 | \begin{subitemize} 1859 | \item HUD: dot in VV indicates HUD slaved 1860 | \item HMD: Aiming Reticle indicates HMD slaved 1861 | \end{subitemize}} 1862 | \blueitem{Designation}{TDC DEPRESS} 1863 | \blueitem{Slew Diamond}{TDC slew} 1864 | \blueitem{Undesignate}{UNDESIGNATE} 1865 | \end{tableitemize} 1866 | 1867 | \subsection{TARGET DESIGNATION - A/A Radar} 1868 | \begin{tableitemize} 1869 | \blueitem{LHACQ}{Long Range Helmet Acquisition: 40nm} 1870 | \blueitem{HACQ}{Helmet Acquisition: 10nm} 1871 | \blueitem{Conditions}{ 1872 | \begin{subitemize} 1873 | \item Master Mode: A/A 1874 | \item HMD: BRT 1875 | \end{subitemize}} 1876 | \blueitem{LHACQ Activation}{SCS: FWD long (>0.8s)} 1877 | \blueitem{HACQ Activation}{SCS: FWD short (<0.8s)} 1878 | \blueitem{Deactivate}{SCS AFT} 1879 | \end{tableitemize} 1880 | 1881 | \subsection{AIM-9X - UP-LOOK} 1882 | \begin{tableitemize} 1883 | \blueitem{Up-Look}{Slaves AIM-9X to Up-Look reticle} 1884 | & & (significantly above HMD Line of Sight) \\ 1885 | \blueitem{Conditions}{ 1886 | \begin{subitemize} 1887 | \item Master Mode: A/A 1888 | \item HMD: BRT 1889 | \item AIM-9X: Selected 1890 | \end{subitemize}} 1891 | \blueitem{Activation}{SCS: FWD (slave TDC to HMD)} 1892 | \blueitem{Uncage}{CAGE/UNCAGE button} 1893 | \end{tableitemize} 1894 | 1895 | \cleardoublepage 1896 | \chapter{A/G WEAPONS} 1897 | \thumbtab{A/G}{4} 1898 | \minitoc 1899 | \cleardoublepage 1900 | 1901 | \section{A/G OVERVIEW} 1902 | \begin{center} 1903 | \begin{tabular}{l | c | p{6cm}} 1904 | \toprule 1905 | \blue{Weapon} & \blue{SMS} & \blue{Type}\\ 1906 | \midrule 1907 | \multicolumn{3}{c}{\blue{Unguided}} \\ 1908 | \midrule 1909 | \textbf{LAU-61} & 61S/R & 2.75-in Hydra rockets (19x) \\ 1910 | \textbf{LAU-68} & 68S/R & 2.75-in Hydra rockets (7x) \\ 1911 | \textbf{LAU-10} & 10S/R & 5-in Zuni rockets (4x) \\ 1912 | \midrule 1913 | \textbf{MK-82} & 82B & 500 lbs low-drag unguided bomb \\ 1914 | \textbf{MK-82 SE} & 82XT & 500 lbs retarded unguided bomb \\ 1915 | \textbf{MK-82 Bal} & 82YT & 500 lbs retarded unguided bomb \\ 1916 | \textbf{MK-83} & 83B & 1000 lbs low-drag unguided bomb \\ 1917 | \textbf{MK-84} & 84 & 2000lbs low-drag unguided bomb \\ 1918 | \midrule 1919 | \textbf{BDU-33} & & 25 lbs unguided training bomb \\ 1920 | \midrule 1921 | \textbf{MK-20 RE} & RE & 500 lbs Unguided cluster bomb \\ 1922 | \textbf{CBU-99} & RET & 500 lbs anti-tank cluster bomb \\ 1923 | \midrule 1924 | \multicolumn{3}{c}{\blue{Laser-Guided Bombs}} \\ 1925 | \midrule 1926 | \textbf{GBU-12} & 82LG & 500 lbs PAVEWAY II LGB \\ 1927 | \textbf{GBU-16} & 83LG & 1000 lbs PAVEWAY II LGB \\ 1928 | \textbf{GBU-10} & 84LG & 2000 lbs PAVEWAY II LGB \\ 1929 | \textbf{GBU-24} & GB24 & 2000 lbs PAVEWAY III LGB Penetrator \\ 1930 | \midrule 1931 | \multicolumn{3}{c}{\blue{GPS Munitions}} \\ 1932 | \midrule 1933 | \textbf{GBU-38} & J-82 & 500 lbs JDAM \\ 1934 | \textbf{GBU-32} & J-83 & 1000 lbs JDAM \\ 1935 | \textbf{GBU-31} & J-84 & 2000 lbs JDAM \\ 1936 | \textbf{GBU-31(V)} & J-109 & 2000 lbs JDAM Penetrator \\ 1937 | \midrule 1938 | \textbf{AGM-154A} & JSA & JSOW Cluster \\ 1939 | \textbf{AGM-154C} & JSC & JSOW Penetrator \\ 1940 | \midrule 1941 | \multicolumn{3}{c}{\blue{A/G Missiles}} \\ 1942 | \midrule 1943 | \textbf{AGM-65E} & MAV & Laser Guided A/G missile\\ 1944 | \textbf{AGM-65F} & MAVF & IR Guided A/G missile\\ 1945 | \midrule 1946 | \textbf{AGM-88C} & HARM & High-Speed Anti-Radiation Missile\\ 1947 | \midrule 1948 | \textbf{AGM-84D} & HPD & Harpoon anti-ship missile \\ 1949 | \textbf{AGM-84E} & SLMR & SLAM-ER \\ 1950 | \midrule 1951 | \textbf{AGM-62} & WEDL & 2000 lbs TV-guided bomb \\ 1952 | \bottomrule 1953 | \end{tabular} 1954 | \end{center} 1955 | 1956 | \clearpage 1957 | 1958 | \section{SELECTIVE ORDNANCE JETTISON} 1959 | \begin{checklistenumerate} 1960 | \blueitem{Master Arm}{\dotfill ARM} 1961 | \blueitem{SMS}{\dotfill check stores} 1962 | \blueitem{Jettison Stores}{\dotfill select desired \\ \hfill jettison stations on pushbuttons} 1963 | \blueitem{Selective Jett. Knob}{\dotfill rotate to \\ \hfill desired stations} 1964 | \blueitem{Jett. Button}{\dotfill press \& hold} 1965 | \blueitem{Selective Jett. Knob}{\dotfill SAFE} 1966 | \end{checklistenumerate} 1967 | 1968 | \section{FORWARD FIRING} 1969 | 1970 | \subsection{M61A2 GUN - A/G} 1971 | \begin{checklistenumerate} 1972 | \blueitem{Master Arm}{\dotfill ARM} 1973 | \blueitem{Master Mode}{\dotfill A/G} 1974 | \blueitem{SMS}{\dotfill select GUN 1975 | \begin{subitemize} 1976 | \item \blue{Rounds} MK-50 or PGU-28 1977 | \item \blue{Firing Rate} HI or LO 1978 | \item \blue{Mode} CCIP 1979 | \end{subitemize}} 1980 | \blueitem{Reticle}{\dotfill on target} 1981 | \blueitem{Fire}{\dotfill once IN RNG cue} 1982 | \blueitem{Break Away}{\dotfill before X cue} 1983 | \end{checklistenumerate} 1984 | 1985 | \subsection{ROCKETS} 1986 | \begin{checklistenumerate} 1987 | \blueitem{Master Arm}{\dotfill ARM} 1988 | \blueitem{Master Mode}{\dotfill A/G} 1989 | \blueitem{SMS}{\dotfill select pod (68R) 1990 | \begin{subitemize} 1991 | \item \blue{Firing Mode} SGL or SAL 1992 | \item \blue{MTR} M4 or M66 1993 | \item \blue{Mode} CCIP 1994 | \end{subitemize}} 1995 | \blueitem{Reticle}{\dotfill on target} 1996 | \blueitem{Fire}{\dotfill once IN RNG cue appears} 1997 | \blueitem{Break Away}{\dotfill before X cue} 1998 | \end{checklistenumerate} 1999 | 2000 | \clearpage 2001 | 2002 | \section{UNGUIDED FREE-FALL MUNITIONS} 2003 | 2004 | \subsection{UNGUIDED BOMB - CCIP} 2005 | \begin{checklistenumerate} 2006 | \blueitem{Master Arm}{\dotfill ARM} 2007 | \blueitem{Master Mode}{\dotfill A/G} 2008 | \blueitem{SMS}{\dotfill select desired bomb (82B) 2009 | \begin{subenumerate} 2010 | \item Create delivery PROG 1 2011 | \item \blue{Mode}\dotfill CCIP 2012 | \item \blue{MFUZ}\dotfill NOSE 2013 | \item \blue{EFUZ}\dotfill DLY1 or INST 2014 | \item \blue{DRAG}\dotfill FF or RET based on bomb type 2015 | \end{subenumerate}} 2016 | \blueitem{UFC}{\dotfill press UFC OSB on SMS page 2017 | \begin{subitemize} 2018 | \item \blue{QTY} bombs per release 2019 | \item \blue{MULT} bombs per salvo in release 2020 | \item \blue{INT} interval between salvo in feet 2021 | \end{subitemize}} 2022 | \blueitem{Dive}{\dotfill 30-45 deg} 2023 | \blueitem{DIL}{\dotfill Displayed Impact Line over target} 2024 | \blueitem{CCIP Cross}{\dotfill appears once computed} 2025 | \blueitem{Maneuver}{\dotfill keep CCIP CROSS \& DIL on target} 2026 | \blueitem{Release}{\dotfill when CCIP CROSS on target} 2027 | \blueitem{Pull Up}{\dotfill before vel vector reaches PULL UP cue} 2028 | \end{checklistenumerate} 2029 | 2030 | \subsection{UNGUIDED BOMB - CCRP} 2031 | \begin{checklistenumerate} 2032 | \blueitem{Master Arm}{\dotfill ARM} 2033 | \blueitem{Master Mode}{\dotfill A/G} 2034 | \blueitem{SMS}{\dotfill select desired bomb (82B) 2035 | \begin{subenumerate} 2036 | \item Create delivery PROG 1 2037 | \item \blue{Mode}\dotfill CCRP 2038 | \item \blue{MFUZ}\dotfill NOSE 2039 | \item \blue{EFUZ}\dotfill DLY1 or INST 2040 | \item \blue{DRAG}\dotfill FF or RET based on bomb type 2041 | \end{subenumerate}} 2042 | \blueitem{UFC}{\dotfill press OSB for UFC on SMS page 2043 | \begin{subitemize} 2044 | \item \blue{QTY} bombs per release 2045 | \item \blue{MULT} bombs per salvo in release 2046 | \item \blue{INT} interval between salvo in feet 2047 | \end{subitemize}} 2048 | \blueitem{SCS}{\dotfill FWD to slave TDC to HUD} 2049 | \blueitem{Symbology}{\dotfill ``Ball \& Chain"} 2050 | \blueitem{Dive}{\dotfill 25 deg to place vel vector on target} 2051 | \blueitem{TDC}{\dotfill DEPRESS to designate target} 2052 | \blueitem{TDC}{\dotfill SLEW target designator} 2053 | \blueitem{Level Flight}{\dotfill keep vel vector aligned with ASL (azimuth steering line)} 2054 | \blueitem{Release}{\dotfill when weapon cue appears, hold until all ordnance released} 2055 | \blueitem{Pull Up}{\dotfill before vel vector reaches PULL UP cue} 2056 | \end{checklistenumerate} 2057 | 2058 | \subsection{MK-20 CLUSTER BOMB - CCIP} 2059 | \begin{checklistenumerate} 2060 | \blueitem{Master Arm}{\dotfill ARM} 2061 | \blueitem{Master Mode}{\dotfill A/G} 2062 | \blueitem{SMS}{\dotfill select desired bomb (RE) 2063 | \begin{subenumerate} 2064 | \item Create delivery PROG 1 2065 | \item \blue{Mode}\dotfill CCIP 2066 | \item \blue{MFUZ}\dotfill VT 2067 | \item \blue{HT OSB}\dotfill press to cycle 2068 | \end{subenumerate}} 2069 | \blueitem{UFC}{\dotfill press UFC OSB on SMS page 2070 | \begin{subitemize} 2071 | \item \blue{QTY} bombs per release 2072 | \item \blue{MULT} bombs per salvo in release 2073 | \item \blue{INT} interval between salvo in feet 2074 | \end{subitemize}} 2075 | \blueitem{Dive}{\dotfill 30-45 deg} 2076 | \blueitem{DIL}{\dotfill Displayed Impact Line over target} 2077 | \blueitem{CCIP Cross}{\dotfill appears once computed} 2078 | \blueitem{Maneuver}{\dotfill keep CCIP CROSS \& DIL on target} 2079 | \blueitem{Release}{\dotfill when CCIP CROSS on target} 2080 | \blueitem{Pull Up}{\dotfill before vel vector reaches PULL UP cue} 2081 | \end{checklistenumerate} 2082 | 2083 | \clearpage 2084 | 2085 | \section{GPS GUIDED MUNITIONS} 2086 | 2087 | \subsection{JDAM/JSOW - PP} 2088 | \blue{Weapon Setup} 2089 | \begin{checklistenumerate} 2090 | \blueitem{Coord.}{\dotfill prepare in format \\ \hfill DEG MIN SEC : DEC-SEC} 2091 | \blueitem{SMS}{\dotfill while on ground 2092 | \begin{subenumerate} 2093 | \item Select desired JDAM (J-82) or JSOW (JSA/JSC) 2094 | \item \blue{Wait}\dotfill for GOOD align (3 min) 2095 | \item \blue{Mode}\dotfill PP 2096 | \item \blue{Fuzing}\dotfill INST 2097 | \end{subenumerate}} 2098 | \blueitem{JDAM Display}{\dotfill press JDAM DSPLY OSB} 2099 | \blueitem{Release Type}{\dotfill MANUAL} 2100 | \blueitem{QTY}{\dotfill press QTY OSB select desired stations (recommend: all) press RTN OSB, now STEP OSB cycles between stations} 2101 | \blueitem{MSN Page}{\dotfill crossed out PP mean no coordinates} 2102 | \blueitem{Select PP1}{\dotfill press PP1 OSB} 2103 | \blueitem{Data Entry}{\dotfill press TGT UFC OSB 2104 | \begin{subenumerate} 2105 | \item \blue{HT}\dotfill enter height for cluster\\ 2106 | \hfill dispersal (only for JSA) 2107 | \item \blue{Return}\dotfill press TGT UFC twice\\ 2108 | \hfill to return to main UFC page 2109 | \item \blue{ELEV}\dotfill select ELEV on UFC 2110 | \item \blue{Return}\dotfill press TGT UFC twice\\ 2111 | \hfill to return to main UFC page 2112 | \item \blue{POSN}\dotfill select POSN on UFC 2113 | \item \blue{LAT}\dotfill input DEG MIN SEC, ENT \\ 2114 | \hfill input DEC-SEC, ENT 2115 | \item \blue{LON}\dotfill input DEG MIN SEC, ENT \\ 2116 | \hfill input DEC-SEC, ENT 2117 | \item \blue{Return}\dotfill press TGT UFC twice\\ 2118 | \hfill to return to main UFC page 2119 | \end{subenumerate}} 2120 | \blueitem{Verify}{\dotfill PP1 no longer crossed} 2121 | \blueitem{Repeat}{\dotfill for remaining stations} 2122 | \end{checklistenumerate} 2123 | 2124 | 2125 | \blue{Weapon Launch} 2126 | \begin{checklistenumerate} 2127 | \blueitem{Master Arm}{\dotfill ARM} 2128 | \blueitem{Master Mode}{\dotfill A/G} 2129 | \blueitem{SMS}{\dotfill verify J-82 boxed} 2130 | \blueitem{R DDI}{\dotfill HSI page} 2131 | \blueitem{L DDI}{\dotfill JDAM page} 2132 | \blueitem{Verify}{\dotfill MANUAL release, PP, desired station} 2133 | \blueitem{Maneuver}{\dotfill with steering cues} 2134 | \blueitem{TMR}{\dotfill Time to Minimum Range} 2135 | \blueitem{IN RNG}{\dotfill In Range} 2136 | \blueitem{Fire}{\dotfill hold weapon release} 2137 | \blueitem{Next}{\dotfill system will auto cycle to next JDAM} 2138 | \blueitem{Verify}{\dotfill MANUAL release, PP, desired station} 2139 | \blueitem{Repeat}{\dotfill for remaining bombs} 2140 | \end{checklistenumerate} 2141 | 2142 | \blue{Note} each JDAM can have 4 PP targets 2143 | 2144 | \subsection{JDAM/JSOW - TOO WYPT} 2145 | \blue{Weapon Setup} 2146 | \begin{checklistenumerate} 2147 | \blueitem{Waypoints}{\dotfill verify 2148 | \begin{subenumerate} 2149 | \item \blue{SUPT HSI} 2150 | \item \blue{DATA}\dotfill cycle through waypoints 2151 | \item \blue{Precise}\dotfill push PRECISE OSB to add DEC-SEC 2152 | \end{subenumerate}} 2153 | \blueitem{SMS}{\dotfill while on ground 2154 | \begin{subenumerate} 2155 | \item Select desired JDAM (J-82) or JSOW (JSA/JSC) 2156 | \item \blue{Wait}\dotfill for GOOD align (3 min) 2157 | \item \blue{Mode}\dotfill TOO 2158 | \item \blue{Fuzing}\dotfill INST 2159 | \end{subenumerate}} 2160 | \blueitem{JDAM Display}{\dotfill press JDAM DSPLY OSB} 2161 | \blueitem{Release Type}{\dotfill MANUAL} 2162 | \blueitem{QTY}{\dotfill press QTY OSB select desired stations (recommend: all), press RTN OSB, now STEP OSB cycles between stations} 2163 | \blueitem{MSN Page}{\dotfill press TOO1} 2164 | \blueitem{Data Entry}{ 2165 | \begin{subenumerate} 2166 | \item \blue{TOO UFC} 2167 | \item \blue{HT}\dotfill enter height for cluster dispersal (only for JSA) 2168 | \item \blue{Return}\dotfill press TGT UFC twice to return to main UFC 2169 | \end{subenumerate}} 2170 | \blueitem{Repeat}{\dotfill for remaining stations} 2171 | \end{checklistenumerate} 2172 | 2173 | \blue{Weapon Launch} 2174 | \begin{checklistenumerate} 2175 | \blueitem{Master Arm}{\dotfill ARM} 2176 | \blueitem{Master Mode}{\dotfill A/G} 2177 | \blueitem{SMS}{\dotfill verify J-82 boxed} 2178 | \blueitem{R DDI}{\dotfill HSI page} 2179 | \blueitem{L DDI}{\dotfill JDAM page} 2180 | \blueitem{Verify}{\dotfill MANUAL release, TOO, desired station} 2181 | \blueitem{HSI}{\dotfill select waypoint 1} 2182 | \blueitem{Designate}{\dotfill press WPDSG} 2183 | \blueitem{Maneuver}{\dotfill with steering cues} 2184 | \blueitem{TMR}{\dotfill Time to Minimum Range} 2185 | \blueitem{IN RNG}{\dotfill In Range} 2186 | \blueitem{Fire}{\dotfill hold weapon release} 2187 | \blueitem{Next}{\dotfill system will auto cycle to next JDAM} 2188 | \blueitem{Verify}{\dotfill MANUAL release, TOO, desired station} 2189 | \blueitem{Repeat}{\dotfill for remaining bombs \& waypoints} 2190 | \end{checklistenumerate} 2191 | 2192 | \subsection{JDAM/JSOW - TOO TPOD} 2193 | \blue{Weapon Setup} 2194 | \begin{checklistenumerate} 2195 | \blueitem{SMS}{\dotfill while on ground 2196 | \begin{subenumerate} 2197 | \item Select desired JDAM (J-82) or JSOW (JSA/JSC) 2198 | \item \blue{Wait}\dotfill for GOOD align (3 min) 2199 | \item \blue{Mode}\dotfill TOO 2200 | \item \blue{Fuzing}\dotfill INST 2201 | \end{subenumerate}} 2202 | \blueitem{JDAM Display}{\dotfill press JDAM DSPLY OSB} 2203 | \blueitem{Release Type}{\dotfill MANUAL} 2204 | \blueitem{QTY}{\dotfill press QTY OSB select desired stations (recommend: all), press RTN OSB, now STEP OSB cycles between stations} 2205 | \blueitem{MSN Page}{\dotfill press TOO1} 2206 | \blueitem{Data Entry}{ 2207 | \begin{subenumerate} 2208 | \item \blue{TOO UFC} 2209 | \item \blue{HT}\dotfill enter height for cluster \\ \hfill dispersal (only for JSA) 2210 | \item \blue{Return}\dotfill press TGT UFC twice \\ \hfill to return to main UFC 2211 | \end{subenumerate}} 2212 | \blueitem{FLIR}{\dotfill STBY} 2213 | \blueitem{DDI/AMPCD}{\dotfill select FLIR, monitor warm up} 2214 | \blueitem{FLIR}{\dotfill ON, once ready} 2215 | \blueitem{Master Mode}{\dotfill A/G} 2216 | \blueitem{LTD/R}{\dotfill ARM} 2217 | \blueitem{SCS}{\dotfill in direction of FLIR DDI/AMPCD} 2218 | \blueitem{TDC}{\dotfill slew TPOD reticle over target} 2219 | \blueitem{SCS}{ towards FLIR display to toggle 2220 | \begin{subitemize} 2221 | \item \blue{PTRK} tracks moving target (vehicle) 2222 | \item \blue{ATRK} track static target 2223 | \end{subitemize}} 2224 | \blueitem{Designate}{\dotfill depress TDC to designate target, coordinates will auto transfer to JDAM/JSOW} 2225 | \blueitem{Verify}{\dotfill updated coordinates \\ \hfill in JDAM MSN page} 2226 | \end{checklistenumerate} 2227 | 2228 | \blue{NOTE} CAN ONLY GIVE COORD TO 1 JDAM, CANNOT TRANSFER COORD FROM TOO TO PP 2229 | 2230 | \blue{WEAPON LAUNCH} 2231 | \begin{checklistenumerate} 2232 | \blueitem{Master Arm}{\dotfill ARM} 2233 | \blueitem{Master Mode}{\dotfill A/G} 2234 | \blueitem{SMS}{\dotfill verify J-82 boxed} 2235 | \blueitem{AMPCD}{\dotfill HSI} 2236 | \blueitem{R DDI}{\dotfill FLIR page} 2237 | \blueitem{L DDI}{\dotfill JDAM page} 2238 | \blueitem{Verify}{\dotfill MANUAL release, TOO, desired station} 2239 | \blueitem{Maneuver}{\dotfill with steering cues} 2240 | \blueitem{TMR}{\dotfill Time to Minimum Range} 2241 | \blueitem{IN RNG}{\dotfill In Range} 2242 | \blueitem{Fire}{\dotfill hold weapon release} 2243 | \end{checklistenumerate} 2244 | 2245 | \clearpage 2246 | 2247 | \section{LASER GUIDED MUNITIONS} 2248 | 2249 | \subsection{GBU-12 PAVEWAY II} 2250 | \begin{checklistenumerate} 2251 | \blueitem{Master Arm}{\dotfill ARM} 2252 | \blueitem{Master Mode}{\dotfill A/G} 2253 | \blueitem{SMS}{\dotfill select desired bomb (82LG) 2254 | \begin{subenumerate} 2255 | \item Create delivery PROG 1 2256 | \item \blue{Mode}\dotfill CCRP (preferred) / CCIP 2257 | \item \blue{MFUZ}\dotfill OFF 2258 | \item \blue{EFUZ}\dotfill DLY1 or INST 2259 | \end{subenumerate}} 2260 | \blueitem{FLIR}{\dotfill STBY} 2261 | \blueitem{DDI/AMPCD}{\dotfill select FLIR, monitor warm up} 2262 | \blueitem{FLIR}{\dotfill ON, once ready} 2263 | \blueitem{LTD/R}{\dotfill ARM} 2264 | \blueitem{SCS}{\dotfill in direction of FLIR DDI/AMPCD} 2265 | \blueitem{TDC}{\dotfill slew TPOD reticle over target} 2266 | \blueitem{SCS}{\dotfill towards FLIR display to toggle 2267 | \begin{subitemize} 2268 | \item \blue{PTRK} tracks moving target (vehicle) 2269 | \item \blue{ATRK} track static target 2270 | \end{subitemize}} 2271 | \blueitem{UFC OSB}{\dotfill press to set code on UFC} 2272 | \blueitem{LTDC}{\dotfill select on UFC, set code , press ENT} 2273 | \blueitem{SMS}{\dotfill select 82LG} 2274 | \blueitem{CODE OSB}{} 2275 | \blueitem{UFC}{\dotfill enter CODE} 2276 | \blueitem{82LG}{\dotfill should display RDY} 2277 | \blueitem{FLIR}{\dotfill press TRIG OSB} 2278 | \blueitem{Laser}{\dotfill press gun trigger to fire} 2279 | \blueitem{TDC}{\dotfill depress to designate laser as target (will slave A/G weapons to laser)} 2280 | \blueitem{Level Flight}{\dotfill keep vel vector aligned with ASL (azimuth steering line)} 2281 | \blueitem{Release}{\dotfill when weapon cue appears, hold until ordnance released} 2282 | \end{checklistenumerate} 2283 | 2284 | \blue{Note} To drop other GBUs, must re-enter CODE for each bomb 2285 | 2286 | \subsection{GBU-24 PAVEWAY III} 2287 | 2288 | \clearpage 2289 | 2290 | \section{AGM-65 MAVERICK} 2291 | 2292 | \subsection{AGM-65F/G IR-MAV} 2293 | \blue{COOLING} begins upon first selection in SMS, weight on wheels inhibits cooling. Cooldown takes about 3 minutes 2294 | \begin{checklistenumerate} 2295 | \blueitem{Master Mode}{A/G} 2296 | \blueitem{SMS}{select MAVF} 2297 | \blueitem{Wait}{for cooldown} 2298 | \blueitem{Master Arm}{ARM} 2299 | \blueitem{TAC Page}{select IMAV DSPLY\\ OR \\} 2300 | \blue{SMS}\dotfill select MAVF twice 2301 | \blueitem{Fuzing}{as desired} 2302 | \blueitem{SCS}{towards MAV feed (usually L DDI)} 2303 | \blueitem{FOV}{as desired} 2304 | \blueitem{Cage/Uncaged}{ 2305 | \begin{subitemize} 2306 | \item \blue{Caged} seeker points at boresight 2307 | \item \blue{Uncaged} missile attempts to lock on to contrast 2308 | \end{subitemize}} 2309 | \blueitem{TDC}{slew WHILE depressing} 2310 | \blueitem{Release TDC}{MAV will attempt to lock on, good range 7.5 miles} 2311 | \blueitem{LOCK ON}{cross will disappear} 2312 | \blueitem{Fire}{hold weapon release} 2313 | \end{checklistenumerate} 2314 | 2315 | \subsection{AGM-65E LASER-MAV} 2316 | \begin{checklistenumerate} 2317 | \blueitem{Master Mode}{A/G} 2318 | \blueitem{Master Arm}{ARM} 2319 | \blueitem{SMS}{select MAV} 2320 | \begin{enumerate} 2321 | \item \blue{Self Test}\dotfill 30s, monitor in MAV DSPLY 2322 | \item \blue{Fuzing}\dotfill INST 2323 | \end{enumerate} 2324 | \blueitem{MAV DSPLY}{press UFC OSB (edits ALL laser codes at once)} 2325 | \blueitem{CODE}{enter on UFC} 2326 | \blueitem{FLIR}{STBY} 2327 | \blueitem{DDI/AMPCD}{select FLIR, monitor warm up} 2328 | \blueitem{FLIR}{ON, once ready} 2329 | \blueitem{LTD/R}{ARM} 2330 | \blueitem{SCS}{in direction of FLIR DDI/AMPCD} 2331 | \blueitem{TDC}{slew TPOD reticle over target} 2332 | \blueitem{SCS}{towards FLIR display to toggle} 2333 | \begin{itemize} 2334 | \item \blue{PTRK} tracks moving target (vehicle) 2335 | \item \blue{ATRK} track static target 2336 | \end{itemize} 2337 | \blueitem{UFC OSB}{press to set code on UFC} 2338 | \blueitem{LTDC}{select on UFC, set code , press ENT} 2339 | \blueitem{FLIR}{press TRIG OSB} 2340 | \blueitem{Laser}{press gun trigger to fire} 2341 | \blueitem{SCS}{to MAV DSPLY DDI} 2342 | \blueitem{MAV DSPLY}{select desired station using STEP OSB} 2343 | \blueitem{Uncage}{missile} 2344 | \end{checklistenumerate} 2345 | 2346 | \blue{NOTE} MAV DSPLY must be selected, else will boresight TPOD 2347 | \begin{checklistenumerate} 2348 | \blueitem{RDY}{indication \& MAV LKD in HUD indicates ready to fire} 2349 | \blueitem{Fire}{hold weapon release} 2350 | \end{checklistenumerate} 2351 | 2352 | \clearpage 2353 | 2354 | \section{AGM-88C HARM} 2355 | 2356 | \subsection{HARM - TOO} 2357 | \begin{checklistenumerate} 2358 | \blueitem{Master Arm}{ARM} 2359 | \blueitem{Master Mode}{A/G} 2360 | \blueitem{R DDI}{TAC EW page} 2361 | \blueitem{L DDI}{SMS page, select HARM} 2362 | \blueitem{Mode}{TOO (Target Of Opportunity)} 2363 | \blueitem{SCS}{towards HARM DDI} 2364 | \blueitem{Cycle Emitter}{depress RAID/FLIR to cycle, consult HUD, RWR or EW page} 2365 | \blueitem{Maneuver}{align target icon with cross of seeker} 2366 | \blueitem{Handoff}{press CAGE/UNCAGE to lock seeker to target} 2367 | \blueitem{Fire}{hold weapon release} 2368 | \end{checklistenumerate} 2369 | 2370 | \subsection{HARM - SP} 2371 | \begin{checklistenumerate} 2372 | \blueitem{Master Arm}{ARM} 2373 | \blueitem{Master Mode}{A/G} 2374 | \blueitem{R DDI}{TAC EW page} 2375 | \blueitem{L DDI}{SMS page, select HARM} 2376 | \blueitem{Mode}{SP (Self Protect)} 2377 | \blueitem{Cycle Emitter}{depress RAID/FLIR to cycle, consult HUD, RWR or EW page} 2378 | \blueitem{Fire}{hold weapon release} 2379 | \end{checklistenumerate} 2380 | 2381 | \subsection{HARM - PULLBACK} 2382 | If RWR detects critical threat, SP Pullback will automatically select and prepare harm for launch. \\ 2383 | \blue{NOTE} HARM OVRD on SMS must be unboxed 2384 | \begin{checklistenumerate} 2385 | \blueitem{Master Arm}{ARM} 2386 | \blueitem{Master Mode}{A/G} 2387 | \blueitem{HRM OVRD}{unboxed} 2388 | \blueitem{RWR}{Critical threat} 2389 | \blueitem{HUD}{HARM displayed} 2390 | \blueitem{Fire}{hold weapon release} 2391 | \end{checklistenumerate} 2392 | 2393 | 2394 | 2395 | \subsection{HARM - PB Intro} 2396 | \subsection{HARM - PB Setup} 2397 | \subsection{HARM - A/C LOFT} 2398 | \subsection{HARM - HRM LOFT} 2399 | 2400 | \clearpage 2401 | 2402 | \section{AGM-84D HARPOON} 2403 | 2404 | \subsection{HARPOON - BOL} 2405 | \blue{Launch Parameters} 2406 | \begin{checklistitemize} 2407 | \blueitem{Search Point Distance}{ 0-105 nm, from launch until start search, or from HPTP to search} 2408 | \blueitem{Self Destruct Distance}{} 2409 | \blueitem{Bearing To Target}{ deg, bearing missile will follow either from launch or after HPTP (Turnpoint)} 2410 | \blueitem{FLT}{ HIGH 35k, MED 15k, LOW 5k} 2411 | \blueitem{Term.}{ SKIM/POP} 2412 | \end{checklistitemize} 2413 | 2414 | \begin{checklistenumerate} 2415 | \blueitem{Master Arm}{ARM} 2416 | \blueitem{Master Mode}{A/G} 2417 | \blueitem{SMS}{select HPD OSB} 2418 | \blueitem{Align}{monitor from SMS (25 s)} 2419 | \blueitem{Program Parameters}{ 2420 | \begin{subenumerate} 2421 | \item \blue{UFC}\dotfill press UFC OSB 2422 | \item \blue{SRCH}\dotfill input Search Point, ENT 2423 | \item \blue{DSTR}\dotfill input Self Destruct, ENT 2424 | \item \blue{BRG}\dotfill input Bearing, ENT 2425 | \end{subenumerate}} 2426 | \blue{SMS}{ 2427 | \begin{subenumerate} 2428 | \item \blue{Mode}\dotfill BOL 2429 | \item \blue{FLT}\dotfill LO/MED/HI 2430 | \item \blue{Term.}\dotfill SKIM/POP 2431 | \end{subenumerate}} 2432 | \blueitem{R DDI}{HSI} 2433 | \blueitem{FXP/HPTP}{ 2434 | \begin{subitemize} 2435 | \item \blue{FXP} Fixpoint, located 1/2 dis between SRCH and DSTR point, harpoon will fly to FXP and hold that bearing 2436 | \item \blue{HPTP} Harpoon Turnpoint \\ select waypoint, press HPTP OSB, harpoon will fly to HPTP, then BRG 2437 | \end{subitemize}} 2438 | \blueitem{IN ZONE}{follow steering cues until IN ZONE cue appears} 2439 | \blueitem{Alt}{2500 ft or higher} 2440 | \blueitem{g}{positive} 2441 | \blueitem{Fire}{hold weapon release} 2442 | \blueitem{RADALT}{warning normal} 2443 | \end{checklistenumerate} 2444 | 2445 | \subsection{HARPOON - R/BL} 2446 | \blue{Launch Parameters} 2447 | \begin{checklistitemize} 2448 | \blueitem{TGT}{ Target must be designated with WPDSG from HSI, TPOD by depressing TDC, or RDR} 2449 | \blueitem{FLT}{ HIGH 35k, MED 15k, LOW 5k} 2450 | \blueitem{TERM}{ SKIM/POP} 2451 | \blueitem{SEEK}{ search area, SML/MED/LRG} 2452 | \end{checklistitemize} 2453 | 2454 | \begin{checklistenumerate} 2455 | \blueitem{Master Arm}{ARM} 2456 | \blueitem{Master Mode}{A/G} 2457 | \blueitem{SMS}{select HPD OSB 2458 | \begin{subenumerate} 2459 | \item \blue{Align}\dotfill monitor (25 s) 2460 | \item \blue{HPTP}\dotfill Harpoon Turnpoint \\ select waypoint, press HPTP OSB, harpoon will fly to HPTP, then TGT Point 2461 | \item \blue{Mode}\dotfill R/BL \\ with valid TGT 2462 | \item \blue{FLT}\dotfill LO/MED/HI 2463 | \item \blue{Term.}\dotfill SKIM/POP 2464 | \item \blue{Seek}\dotfill SML (5.4 nm) \\ \hfill MED (10.8 nm) \\ \hfill LRG (16.2 nm) 2465 | \end{subenumerate}} 2466 | \blueitem{R DDI}{HSI} 2467 | \blueitem{IN ZONE}{follow steering cues until IN ZONE cue appears} 2468 | \blueitem{Alt}{2500 ft or higher} 2469 | \blueitem{g}{positive} 2470 | \blueitem{Fire}{hold weapon release} 2471 | \blueitem{RADALT}{warning normal} 2472 | \end{checklistenumerate} 2473 | 2474 | \clearpage 2475 | 2476 | \section{AGM-84E/H SLAM \& SLAM/ER} 2477 | 2478 | \subsection{SLAM - SETUP} 2479 | \label{subsec:slamsetup} 2480 | \begin{tableitemize} 2481 | \blueitem{Master Mode}{ 2482 | \begin{subenumerate} 2483 | \item \textbf{Master Arm} \dotfill \textbf{ARM} 2484 | \item \textbf{Master Mode} \dotfill \textbf{A/G} 2485 | \end{subenumerate}} 2486 | \blueitem{SLAM Power}{ 2487 | \begin{subenumerate} 2488 | \item \textbf{SLAM OSB} \dotfill \textbf{Boxed} 2489 | \begin{itemize} 2490 | \item Select desired station with \textbf{STEP OSB} 2491 | \item Alignment -- approx. 3 min 2492 | \end{itemize} 2493 | \item \textbf{ALN QUAL} \dotfill \textbf{01 GOOD} 2494 | \end{subenumerate}} 2495 | \blueitem{Datalink}{ 2496 | \begin{subenumerate} 2497 | \item \textbf{DL13} \dotfill \textbf{Boxed} 2498 | \item \textbf{WEP OSB} \dotfill \textbf{Press} 2499 | \begin{itemize} 2500 | \item Select desired SLAM for datalink 2501 | \end{itemize} 2502 | \item Verify \textbf{SLAM} indication under boxed DL13 2503 | \end{subenumerate}} 2504 | \blueitem{Weapon \break Parameters}{ 2505 | \begin{subenumerate} 2506 | \item \textbf{FLT} \dotfill \textbf{As Desired} 2507 | \begin{itemize} 2508 | \item HIGH -- 35000 ft 2509 | \item MED -- 15000 ft 2510 | \item LOW -- 5000 ft 2511 | \end{itemize} 2512 | \item \textbf{EFUZ} \dotfill \textbf{INST} 2513 | \end{subenumerate}} 2514 | \blueitem{SLAM DSPLAY Page}{ 2515 | \begin{subenumerate} 2516 | \item \textbf{REL TYPE} \dotfill \textbf{MAN} 2517 | \item \textbf{UFC OSB} \dotfill \textbf{Boxed} 2518 | \item \textbf{DIST} \dotfill \textbf{As Required} 2519 | \begin{itemize} 2520 | \item \textbf{DIST} -- Distance from target in NM when seeker head goes active 2521 | \item \textbf{Typical Value} -- 15 2522 | \end{itemize} 2523 | \item \textbf{UFC OSB} \dotfill \textbf{Unbox} 2524 | \end{subenumerate}} 2525 | \blueitem{Target \break Designation}{ 2526 | \begin{subitemize} 2527 | \item \hyperref[subsec:slamdestoowypt]{\textbf{TOO WYPT}} 2528 | / \hyperref[subsec:slamdestootpod]{\textbf{TOO TPOD}} 2529 | / \hyperref[subsec:slamdestooag]{\textbf{TOO A/G RDR}} 2530 | \item \hyperref[subsec:slamdespp]{\textbf{PP}} 2531 | \end{subitemize}} 2532 | \end{tableitemize} 2533 | 2534 | \clearpage 2535 | 2536 | \subsection{SLAM - TOO WYPT} 2537 | \label{subsec:slamdestoowypt} 2538 | \begin{tablenumerate} 2539 | \blueitem{Generic Setup}{\hyperref[subsec:slamsetup]{\textbf{Refer to Setup Section}}} 2540 | \blueitem{SLAM DSPLY \break TOO Setup}{ 2541 | \begin{subenumerate} 2542 | \item \textbf{MODE} \dotfill \textbf{TOO} 2543 | \item \textbf{MSN Page} \dotfill \textbf{Enter} 2544 | \begin{itemize} 2545 | \item Select between TOO1 \& TOO2 2546 | \item Verify \textbf{ORP} (\textbf{O}ffset \textbf{R}elease \textbf{P}oint) blank 2547 | \end{itemize} 2548 | \item \textbf{TERM (Optional)} \dotfill \textbf{As Desired} 2549 | \begin{itemize} 2550 | \item Can enter terminal heading, angle and velocity via UFC 2551 | \end{itemize} 2552 | \item \textbf{O/S (Optional)} \dotfill \textbf{As Desired} 2553 | \begin{itemize} 2554 | \item Can input Offset parameters via UFC 2555 | \end{itemize} 2556 | \end{subenumerate}} 2557 | \blueitem{HSI Waypoint \break Designation}{ 2558 | \begin{subenumerate} 2559 | \item \textbf{WYPT} \dotfill \textbf{Boxed} 2560 | \item \textbf{Target Waypoint} \dotfill \textbf{Selected} 2561 | \item \textbf{WPDSG} \dotfill \textbf{Press} 2562 | \begin{itemize} 2563 | \item \textbf{TGT} will replace \textbf{WYPT} as boxed 2564 | \item Min/Max Launch Range circles appear on HSI 2565 | \end{itemize} 2566 | \end{subenumerate}} 2567 | \blueitem{Cueing}{ 2568 | \begin{subitemize} 2569 | \item \textbf{MSN Page} -- \textbf{ORP} shows coordinates of designated waypoint 2570 | \item \textbf{HUD} -- designation diamond, steering cues, range to target, SLAM, TMR, and TOO indications appear 2571 | \end{subitemize}} 2572 | \blueitem{Weapon Launch}{\hyperref[subsec:slamlaunch]{\textbf{Refer to Launch Section}}} 2573 | \end{tablenumerate} 2574 | 2575 | \clearpage 2576 | 2577 | \subsection{SLAM - TOO TPOD} 2578 | \label{subsec:slamdestootpod} 2579 | \begin{tablenumerate} 2580 | \blueitem{Generic Setup}{\hyperref[subsec:slamsetup]{\textbf{Refer to Setup Section}}} 2581 | \blueitem{SLAM DSPLY \break TOO Setup}{ 2582 | \begin{subenumerate} 2583 | \item \textbf{MODE} \dotfill \textbf{TOO} 2584 | \item \textbf{MSN Page} \dotfill \textbf{Enter} 2585 | \begin{itemize} 2586 | \item Select between TOO1 \& TOO2 2587 | \item Verify \textbf{ORP} (\textbf{O}ffset \textbf{R}elease \textbf{P}oint) blank 2588 | \end{itemize} 2589 | \item \textbf{TERM (Optional)} \dotfill \textbf{As Desired} 2590 | \begin{itemize} 2591 | \item Can enter terminal heading, angle and velocity via UFC 2592 | \end{itemize} 2593 | \item \textbf{O/S (Optional)} \dotfill \textbf{As Desired} 2594 | \begin{itemize} 2595 | \item Can input Offset parameters via UFC 2596 | \end{itemize} 2597 | \end{subenumerate}} 2598 | \blueitem{TPOD Designation}{ 2599 | \begin{subenumerate} 2600 | \item Slew TPOD over target 2601 | \item \textbf{TDC} \dotfill \textbf{Depress} 2602 | \end{subenumerate}} 2603 | \blueitem{Cueing}{ 2604 | \begin{subitemize} 2605 | \item \textbf{MSN Page} -- \textbf{ORP} shows coordinates of designated waypoint 2606 | \item \textbf{HSI Page} -- Min/Max launch circles 2607 | \item \textbf{HUD} -- designation diamond, steering cues, range to target, SLAM, TMR, and TOO indications appear 2608 | \end{subitemize}} 2609 | \blueitem{Weapon Launch}{\hyperref[subsec:slamlaunch]{\textbf{Refer to Launch Section}}} 2610 | \end{tablenumerate} 2611 | 2612 | \notebox{ 2613 | \begin{itemize} 2614 | \item \textbf{TPOD range < SLAM range} -- \textbf{IN RNG} cue on designation likely 2615 | \end{itemize} 2616 | } 2617 | 2618 | \clearpage 2619 | 2620 | \subsection{SLAM - TOO A/G RDR} 2621 | \label{subsec:slamdestooag} 2622 | \begin{tablenumerate} 2623 | \blueitem{Generic Setup}{\hyperref[subsec:slamsetup]{\textbf{Refer to Setup Section}}} 2624 | \blueitem{SLAM DSPLY \break TOO Setup}{ 2625 | \begin{subenumerate} 2626 | \item \textbf{MODE} \dotfill \textbf{TOO} 2627 | \item \textbf{MSN Page} \dotfill \textbf{Enter} 2628 | \begin{itemize} 2629 | \item Select between TOO1 \& TOO2 2630 | \item Verify \textbf{ORP} (\textbf{O}ffset \textbf{R}elease \textbf{P}oint) blank 2631 | \end{itemize} 2632 | \item \textbf{TERM (Optional)} \dotfill \textbf{As Desired} 2633 | \begin{itemize} 2634 | \item Can enter terminal heading, angle and velocity via UFC 2635 | \end{itemize} 2636 | \item \textbf{O/S (Optional)} \dotfill \textbf{As Desired} 2637 | \begin{itemize} 2638 | \item Can input Offset parameters via UFC 2639 | \end{itemize} 2640 | \end{subenumerate}} 2641 | \blueitem{RDR Designation}{ 2642 | \begin{subenumerate} 2643 | \item \textbf{EXP Mode} \dotfill \textbf{As Required} 2644 | \item \textbf{TDC} \dotfill \textbf{Depress \& Hold} \\ 2645 | \hfill slew, release to designate target 2646 | \end{subenumerate}} 2647 | \blueitem{Cueing}{ 2648 | \begin{subitemize} 2649 | \item \textbf{MSN Page} -- \textbf{ORP} shows coordinates of designated waypoint 2650 | \item \textbf{HSI Page} -- Min/Max launch circles 2651 | \item \textbf{HUD} -- designation diamond, steering cues, range to target, SLAM, TMR, and TOO indications appear 2652 | \end{subitemize}} 2653 | \blueitem{Weapon Launch}{\hyperref[subsec:slamlaunch]{\textbf{Refer to Launch Section}}} 2654 | \end{tablenumerate} 2655 | 2656 | \notebox{ 2657 | \begin{itemize} 2658 | \item \textbf{A/G RDR range < SLAM range} -- \textbf{IN RNG} cue on designation likely 2659 | \item \textbf{Radar significantly less precise} -- if visibility allows FLIR is preferred TOO designation method 2660 | \end{itemize} 2661 | } 2662 | 2663 | \clearpage 2664 | 2665 | \subsection{SLAM - PP} 2666 | \label{subsec:slamdespp} 2667 | \begin{tablenumerate} 2668 | \blueitem{Generic Setup}{\hyperref[subsec:slamsetup]{\textbf{Refer to Setup Section}}} 2669 | \blueitem{SLAM DSPLY \break TOO Setup}{ 2670 | \begin{subenumerate} 2671 | \item \textbf{MODE} \dotfill \textbf{PP} 2672 | \item \textbf{MSN Page} \dotfill \textbf{Enter} 2673 | \begin{itemize} 2674 | \item Select between PP1-PP5 2675 | \item Verify \textbf{TGT} blank 2676 | \end{itemize} 2677 | \item \textbf{TERM (Optional)} \dotfill \textbf{As Desired} 2678 | \begin{itemize} 2679 | \item Can enter terminal heading, angle and velocity via UFC 2680 | \end{itemize} 2681 | \item \textbf{O/S (Optional)} \dotfill \textbf{As Desired} 2682 | \begin{itemize} 2683 | \item Can input Offset parameters via UFC 2684 | \end{itemize} 2685 | \end{subenumerate}} 2686 | \blueitem{Target \break Designation}{ 2687 | \begin{subenumerate} 2688 | \item \textbf{Prepare Coordinates} 2689 | \begin{itemize} 2690 | \item \textbf{LAT/LONG} -- DEG MIN SEC : DEC-SEC 2691 | \item \textbf{ELEV} -- FT 2692 | \end{itemize} 2693 | \item \textbf{Desired PP} \dotfill \textbf{Boxed} 2694 | \item \textbf{TGT UFC} \dotfill \textbf{Boxed} 2695 | \item \textbf{UFC} \dotfill \textbf{Select POSN} 2696 | \begin{itemize} 2697 | \item Input LAT, LONG respectively 2698 | \item DEG MIN SEC, \textbf{ENTER}, then DEC-SEC 2699 | \end{itemize} 2700 | \item \textbf{TGT UFC} \dotfill \textbf{Press 2x} \\ 2701 | \hfill (returns to main UFC Menu) 2702 | \item \textbf{UFC} \dotfill \textbf{Select ELEV} 2703 | \begin{itemize} 2704 | \item Select desired unit (FEET / MTRS) 2705 | \item Enter elevation data 2706 | \end{itemize} 2707 | \item \textbf{TGT UFC} \dotfill \textbf{Press 2x} \\ 2708 | \hfill (returns to main UFC Menu) 2709 | \item \textbf{MSN Page} 2710 | \begin{itemize} 2711 | \item \textbf{PP} -- Selected PP no longer crossed out 2712 | \item \textbf{TGT} -- Shows desired coords / elev data 2713 | \end{itemize} 2714 | \end{subenumerate}} 2715 | \blueitem{Cueing}{ 2716 | \begin{subitemize} 2717 | \item \textbf{HSI Page} -- Min/Max launch circles 2718 | \item \textbf{HUD} -- designation diamond, steering cues, range to target, SLAM, TMR, and TOO indications appear 2719 | \end{subitemize}} 2720 | \blueitem{Weapon Launch}{\hyperref[subsec:slamlaunch]{\textbf{Refer to Launch Section}}} 2721 | \end{tablenumerate} 2722 | 2723 | \clearpage 2724 | 2725 | \subsection{SLAM-ER - STEERPOINTS} 2726 | \label{subsec:slamersteerpoints} 2727 | \begin{tablenumerate} 2728 | \blueitem{Generic Setup}{\hyperref[subsec:slamsetup]{\textbf{Refer to Setup Section}}} 2729 | \blueitem{Target Designation}{\textbf{Refer to Designation Sections} 2730 | \begin{subitemize} 2731 | \item \hyperref[subsec:slamdestoowypt]{\textbf{TOO WYPT}} 2732 | / \hyperref[subsec:slamdestootpod]{\textbf{TOO TPOD}} 2733 | / \hyperref[subsec:slamdestooag]{\textbf{TOO A/G RDR}} 2734 | \item \hyperref[subsec:slamdespp]{\textbf{PP}} 2735 | \end{subitemize}} 2736 | \blueitem{SMS Page \break Steerpoint \break Designation}{\textbf{(Optional)} 2737 | \begin{subenumerate} 2738 | \item \textbf{STP OSB} \dotfill \textbf{Boxed} 2739 | \item \textbf{UFC} \dotfill \textbf{STP1} 2740 | \begin{itemize} 2741 | \item Input desired waypoint number, \textbf{ENTER} 2742 | \end{itemize} 2743 | \item \textbf{Repeat} up to \textbf{STP5} 2744 | \end{subenumerate}} 2745 | \blueitem{Weapon Launch}{\hyperref[subsec:slamlaunch]{\textbf{Refer to Launch Section}}} 2746 | \end{tablenumerate} 2747 | 2748 | \notebox{ 2749 | \begin{itemize} 2750 | \item SLAM-ER is labeled as \textbf{SLMR} on \textbf{SMS} / \textbf{MSN Page}, adjust procedures accordingly 2751 | \item SLAM-ER has significantly higher range as compared to SLAM 2752 | \end{itemize} 2753 | } 2754 | 2755 | \clearpage 2756 | 2757 | \subsection{SLAM - LAUNCH} 2758 | \label{subsec:slamlaunch} 2759 | \begin{tablenumerate} 2760 | \blueitem{Generic Setup}{\hyperref[subsec:slamsetup]{\textbf{Refer to Setup Section}}} 2761 | \blueitem{Target \break Designation}{ 2762 | \begin{subitemize} 2763 | \item \hyperref[subsec:slamdestoowypt]{\textbf{TOO WYPT}} 2764 | / \hyperref[subsec:slamdestootpod]{\textbf{TOO TPOD}} 2765 | / \hyperref[subsec:slamdestooag]{\textbf{TOO A/G RDR}} 2766 | \item \hyperref[subsec:slamdespp]{\textbf{PP}} 2767 | \end{subitemize}} 2768 | \blueitem{Cockpit Setup}{ 2769 | \begin{subitemize} 2770 | \item \textbf{R DDI} -- \textbf{HSI Page} 2771 | \item \textbf{L DDI} -- \textbf{SMS Page} 2772 | \end{subitemize}} 2773 | \blueitem{SMS Page \break Datalink Setup}{ 2774 | \begin{subenumerate} 2775 | \item \textbf{SLAM OSB} \dotfill \textbf{Unboxed} 2776 | \item \textbf{DL13 OSB} \dotfill \textbf{Boxed} 2777 | \item \textbf{Datalink Channel} \dotfill \textbf{Set} 2778 | \begin{itemize} 2779 | \item Must set to match weapon station 2780 | \item Set via UFC OSB \& UFC input 2781 | \end{itemize} 2782 | \end{subenumerate}} 2783 | \blueitem{Launch \break Conditions}{ 2784 | \begin{subitemize} 2785 | \item \textbf{Weapon Station} \dotfill \textbf{RDY} 2786 | \item \textbf{Range Cue} \dotfill \textbf{IN RNG} 2787 | \item \textbf{Release Profile} \dotfill \textbf{Set} 2788 | \item \textbf{Master Mode} \dotfill \textbf{A/G} 2789 | \item \textbf{Master Arm} \dotfill \textbf{ARM} 2790 | \end{subitemize}} 2791 | \blueitem{Weapon Launch}{Hold \textbf{WEAPON RELEASE} until separation} 2792 | \blueitem{TTS = 0}{ 2793 | \begin{subitemize} 2794 | \item Datalink feed activates 2795 | \item Seeker becomes uncaged 2796 | \item \textbf{FOV OSB} toggles field-of-view 2797 | \end{subitemize}} 2798 | \blueitem{Manual \break Correction}{ 2799 | \begin{subitemize} 2800 | \item Press \& Hold TDC while slewing 2801 | \item Not recommended unless necessary 2802 | \end{subitemize}} 2803 | \blueitem{Impact}{Datalink feed cuts out} 2804 | \end{tablenumerate} 2805 | 2806 | \notebox{ 2807 | \begin{itemize} 2808 | \item \textbf{Cueing} 2809 | \begin{itemize} 2810 | \item \textbf{TTS} -- (\textbf{T}ime-\textbf{T}o-\textbf{S}eeker) 2811 | time until seeker goes active and pilot can take control 2812 | \item \textbf{TMR} -- Time until maximum launch range 2813 | \item \textbf{IN RNG} -- Within maximum launch range 2814 | \item \textbf{Diamond} -- Shows Target location on HUD/HMD 2815 | \end{itemize} 2816 | \end{itemize} 2817 | } 2818 | 2819 | \clearpage 2820 | 2821 | \section{AGM-84E/H SLAM \& SLAM/ER -- ALTERNATE FORMAT} 2822 | 2823 | \subsection{SLAM - SETUP} 2824 | \begin{checklistenumerate} 2825 | \blueitem{Master Mode}{ 2826 | \begin{subenumerate} 2827 | \item \textbf{Master Arm} \dotfill \textbf{ARM} 2828 | \item \textbf{Master Mode} \dotfill \textbf{A/G} 2829 | \end{subenumerate}} 2830 | \blueitem{SLAM Power}{ 2831 | \begin{subenumerate} 2832 | \item \textbf{SLAM OSB} \dotfill \textbf{Boxed} 2833 | \begin{itemize} 2834 | \item Select desired station with \textbf{STEP OSB} 2835 | \item Alignment -- approx. 3 min 2836 | \end{itemize} 2837 | \item \textbf{ALN QUAL} \dotfill \textbf{01 GOOD} 2838 | \end{subenumerate}} 2839 | \blueitem{Datalink}{ 2840 | \begin{subenumerate} 2841 | \item \textbf{DL13} \dotfill \textbf{Boxed} 2842 | \item \textbf{WEP OSB} \dotfill \textbf{Press} 2843 | \begin{itemize} 2844 | \item Select desired SLAM for datalink 2845 | \end{itemize} 2846 | \item Verify \textbf{SLAM} indication under boxed DL13 2847 | \end{subenumerate}} 2848 | \blueitem{Weapon Parameters}{ 2849 | \begin{subenumerate} 2850 | \item \textbf{FLT} \dotfill \textbf{As Desired} 2851 | \begin{itemize} 2852 | \item HIGH -- 35000 ft 2853 | \item MED -- 15000 ft 2854 | \item LOW -- 5000 ft 2855 | \end{itemize} 2856 | \item \textbf{EFUZ} \dotfill \textbf{INST} 2857 | \end{subenumerate}} 2858 | \blueitem{SLAM DSPLAY Page}{ 2859 | \begin{subenumerate} 2860 | \item \textbf{REL TYPE} \dotfill \textbf{MAN} 2861 | \item \textbf{UFC OSB} \dotfill \textbf{Boxed} 2862 | \item \textbf{DIST} \dotfill \textbf{As Required} 2863 | \begin{itemize} 2864 | \item \textbf{DIST} -- Distance from target in NM when seeker head goes active 2865 | \item \textbf{Typical Value} -- 15 2866 | \end{itemize} 2867 | \item \textbf{UFC OSB} \dotfill \textbf{Unbox} 2868 | \end{subenumerate}} 2869 | \blueitem{Target Designation}{-- \textbf{Refer to Designation Sections} 2870 | \begin{subitemize} 2871 | \item \hyperref[subsec:slamdestoowypt]{\textbf{TOO WYPT}} 2872 | / \hyperref[subsec:slamdestootpod]{\textbf{TOO TPOD}} 2873 | / \hyperref[subsec:slamdestooag]{\textbf{TOO A/G RDR}} 2874 | \item \hyperref[subsec:slamdespp]{\textbf{PP}} 2875 | \end{subitemize}} 2876 | \end{checklistenumerate} 2877 | 2878 | \clearpage 2879 | 2880 | \subsection{SLAM - TOO WYPT} 2881 | \begin{checklistenumerate} 2882 | \blueitem{Generic Setup}{-- \hyperref[subsec:slamsetup]{\textbf{Refer to Setup Section}} } 2883 | \blueitem{SLAM DSPLY -- TOO Setup}{ 2884 | \begin{subenumerate} 2885 | \item \textbf{MODE} \dotfill \textbf{TOO} 2886 | \item \textbf{MSN Page} \dotfill \textbf{Enter} 2887 | \begin{itemize} 2888 | \item Select between TOO1 \& TOO2 2889 | \item Verify \textbf{ORP} (\textbf{O}ffset \textbf{R}elease \textbf{P}oint) blank 2890 | \end{itemize} 2891 | \item \textbf{TERM (Optional)} \dotfill \textbf{As Desired} 2892 | \begin{itemize} 2893 | \item Can enter terminal heading, angle and velocity via UFC 2894 | \end{itemize} 2895 | \item \textbf{O/S (Optional)} \dotfill \textbf{As Desired} 2896 | \begin{itemize} 2897 | \item Can input Offset parameters via UFC 2898 | \end{itemize} 2899 | \end{subenumerate}} 2900 | \blueitem{HSI Waypoint Designation}{ 2901 | \begin{subenumerate} 2902 | \item \textbf{WYPT} \dotfill \textbf{Boxed} 2903 | \item \textbf{Target Waypoint} \dotfill \textbf{Selected} 2904 | \item \textbf{WPDSG} \dotfill \textbf{Press} 2905 | \begin{itemize} 2906 | \item \textbf{TGT} will replace \textbf{WYPT} as boxed 2907 | \item Min/Max Launch Range circles appear on HSI 2908 | \end{itemize} 2909 | \end{subenumerate}} 2910 | \blueitem{Cueing}{ 2911 | \begin{subitemize} 2912 | \item \textbf{MSN Page} -- \textbf{ORP} shows coords of designated waypoint 2913 | \item \textbf{HUD} -- designation diamond, steering cues, range to target, SLAM, TMR, and TOO indications appear 2914 | \end{subitemize}} 2915 | \blueitem{Weapon Launch}{-- \hyperref[subsec:slamlaunch]{\textbf{Refer to Launch Section}}} 2916 | \end{checklistenumerate} 2917 | 2918 | \clearpage 2919 | 2920 | \subsection{SLAM - TOO TPOD} 2921 | \begin{checklistenumerate} 2922 | \blueitem{Generic Setup}{-- \hyperref[subsec:slamsetup]{\textbf{Refer to Setup Section}}} 2923 | \blueitem{SLAM DSPLY TOO Setup}{ 2924 | \begin{subenumerate} 2925 | \item \textbf{MODE} \dotfill \textbf{TOO} 2926 | \item \textbf{MSN Page} \dotfill \textbf{Enter} 2927 | \begin{itemize} 2928 | \item Select between TOO1 \& TOO2 2929 | \item Verify \textbf{ORP} (\textbf{O}ffset \textbf{R}elease \textbf{P}oint) blank 2930 | \end{itemize} 2931 | \item \textbf{TERM (Optional)} \dotfill \textbf{As Desired} 2932 | \begin{itemize} 2933 | \item Can enter terminal heading, angle and velocity via UFC 2934 | \end{itemize} 2935 | \item \textbf{O/S (Optional)} \dotfill \textbf{As Desired} 2936 | \begin{itemize} 2937 | \item Can input Offset parameters via UFC 2938 | \end{itemize} 2939 | \end{subenumerate}} 2940 | \blueitem{TPOD Designation}{ 2941 | \begin{subenumerate} 2942 | \item \textbf{TPOD} \dotfill \textbf{Slewed to Target} 2943 | \item \textbf{TDC} \dotfill \textbf{Depress} 2944 | \end{subenumerate}} 2945 | \blueitem{Cueing}{ 2946 | \begin{subitemize} 2947 | \item \textbf{MSN Page} -- \textbf{ORP} shows coords of designated waypoint 2948 | \item \textbf{HSI Page} -- Min/Max launch circles 2949 | \item \textbf{HUD} -- designation diamond, steering cues, range to target, SLAM, TMR, and TOO indications appear 2950 | \end{subitemize}} 2951 | \blueitem{Weapon Launch}{-- \hyperref[subsec:slamlaunch]{\textbf{Refer to Launch Section}}} 2952 | \end{checklistenumerate} 2953 | 2954 | \notebox{ 2955 | \begin{itemize} 2956 | \item \textbf{TPOD range < SLAM range} -- \textbf{IN RNG} cue on designation likely 2957 | \end{itemize} 2958 | } 2959 | 2960 | \clearpage 2961 | 2962 | \subsection{SLAM - TOO A/G RDR} 2963 | \begin{checklistenumerate} 2964 | \blueitem{Generic Setup}{-- \hyperref[subsec:slamsetup]{\textbf{Refer to Setup Section}}} 2965 | \blueitem{SLAM DSPLY \break TOO Setup}{ 2966 | \begin{subenumerate} 2967 | \item \textbf{MODE} \dotfill \textbf{TOO} 2968 | \item \textbf{MSN Page} \dotfill \textbf{Enter} 2969 | \begin{itemize} 2970 | \item Select between TOO1 \& TOO2 2971 | \item Verify \textbf{ORP} (\textbf{O}ffset \textbf{R}elease \textbf{P}oint) blank 2972 | \end{itemize} 2973 | \item \textbf{TERM (Optional)} \dotfill \textbf{As Desired} 2974 | \begin{itemize} 2975 | \item Can enter terminal heading, angle and velocity via UFC 2976 | \end{itemize} 2977 | \item \textbf{O/S (Optional)} \dotfill \textbf{As Desired} 2978 | \begin{itemize} 2979 | \item Can input Offset parameters via UFC 2980 | \end{itemize} 2981 | \end{subenumerate}} 2982 | \blueitem{RDR Designation}{ 2983 | \begin{subenumerate} 2984 | \item \textbf{EXP Mode} \dotfill \textbf{As Required} 2985 | \item \textbf{TDC} \dotfill \textbf{Depress \& Hold} \\ 2986 | \hfill slew, release to designate target 2987 | \end{subenumerate}} 2988 | \blueitem{Cueing}{ 2989 | \begin{subitemize} 2990 | \item \textbf{MSN Page} -- \textbf{ORP} shows coordinates of designated waypoint 2991 | \item \textbf{HSI Page} -- Min/Max launch circles 2992 | \item \textbf{HUD} -- designation diamond, steering cues, range to target, SLAM, TMR, and TOO indications appear 2993 | \end{subitemize}} 2994 | \blueitem{Weapon Launch}{-- \hyperref[subsec:slamlaunch]{\textbf{Refer to Launch Section}} } 2995 | \end{checklistenumerate} 2996 | 2997 | \notebox{ 2998 | \begin{itemize} 2999 | \item \textbf{A/G RDR range < SLAM range} -- \textbf{IN RNG} cue on designation likely 3000 | \item \textbf{Radar significantly less precise} -- if visibility allows FLIR is preferred TOO designation method 3001 | \end{itemize} 3002 | } 3003 | 3004 | \clearpage 3005 | 3006 | \subsection{SLAM - PP} 3007 | \begin{checklistenumerate} 3008 | \blueitem{Generic Setup}{-- \hyperref[subsec:slamsetup]{\textbf{Refer to Setup Section}}} 3009 | \blueitem{SLAM DSPLY TOO Setup}{ 3010 | \begin{subenumerate} 3011 | \item \textbf{MODE} \dotfill \textbf{PP} 3012 | \item \textbf{MSN Page} \dotfill \textbf{Enter} 3013 | \begin{itemize} 3014 | \item Select between PP1-PP5 3015 | \item Verify \textbf{TGT} blank 3016 | \end{itemize} 3017 | \item \textbf{TERM (Optional)} \dotfill \textbf{As Desired} 3018 | \begin{itemize} 3019 | \item Can enter terminal heading, angle and velocity via UFC 3020 | \end{itemize} 3021 | \item \textbf{O/S (Optional)} \dotfill \textbf{As Desired} 3022 | \begin{itemize} 3023 | \item Can input Offset parameters via UFC 3024 | \end{itemize} 3025 | \end{subenumerate}} 3026 | \blueitem{Target Designation}{ 3027 | \begin{subenumerate} 3028 | \item \textbf{Prepare Coordinates} 3029 | \begin{itemize} 3030 | \item \textbf{LAT/LONG} -- DEG MIN SEC : DEC-SEC 3031 | \item \textbf{ELEV} -- FT 3032 | \end{itemize} 3033 | \item \textbf{Desired PP} \dotfill \textbf{Boxed} 3034 | \item \textbf{TGT UFC} \dotfill \textbf{Boxed} 3035 | \item \textbf{UFC} \dotfill \textbf{Select POSN} 3036 | \begin{itemize} 3037 | \item Input LAT, LONG respectively 3038 | \item DEG MIN SEC, \textbf{ENTER}, then DEC-SEC 3039 | \end{itemize} 3040 | \item \textbf{TGT UFC} \dotfill \textbf{Press 2x} \\ 3041 | \hfill (returns to main UFC Menu) 3042 | \item \textbf{UFC} \dotfill \textbf{Select ELEV} 3043 | \begin{itemize} 3044 | \item Select desired unit (FEET / MTRS) 3045 | \item Enter elevation data 3046 | \end{itemize} 3047 | \item \textbf{TGT UFC} \dotfill \textbf{Press 2x} \\ 3048 | \hfill (returns to main UFC Menu) 3049 | \item \textbf{MSN Page} 3050 | \begin{itemize} 3051 | \item \textbf{PP} -- Selected PP no longer crossed out 3052 | \item \textbf{TGT} -- Shows desired coords / elev data 3053 | \end{itemize} 3054 | \end{subenumerate}} 3055 | \blueitem{Cueing}{ 3056 | \begin{subitemize} 3057 | \item \textbf{HSI Page} -- Min/Max launch circles 3058 | \item \textbf{HUD} -- designation diamond, steering cues, range to target, SLAM, TMR, and TOO indications appear 3059 | \end{subitemize}} 3060 | \blueitem{Weapon Launch}{-- \hyperref[subsec:slamlaunch]{\textbf{Refer to Launch Section}} \\} 3061 | \end{checklistenumerate} 3062 | 3063 | \clearpage 3064 | 3065 | \subsection{SLAM-ER - STEERPOINTS} 3066 | \begin{checklistenumerate} 3067 | \blueitem{Generic Setup}{-- \hyperref[subsec:slamsetup]{\textbf{Refer to Setup Section}}} 3068 | \blueitem{Target Designation}{-- \textbf{Refer to Designation Sections} 3069 | \begin{subitemize} 3070 | \item \hyperref[subsec:slamdestoowypt]{\textbf{TOO WYPT}} 3071 | / \hyperref[subsec:slamdestootpod]{\textbf{TOO TPOD}} 3072 | / \hyperref[subsec:slamdestooag]{\textbf{TOO A/G RDR}} 3073 | \item \hyperref[subsec:slamdespp]{\textbf{PP}} 3074 | \end{subitemize}} 3075 | \blueitem{SMS Page -- Steerpoint Designation}{-- \textbf{(Optional)} 3076 | \begin{subenumerate} 3077 | \item \textbf{STP OSB} \dotfill \textbf{Boxed} 3078 | \item \textbf{UFC} \dotfill \textbf{STP1} 3079 | \begin{itemize} 3080 | \item Input desired waypoint number, \textbf{ENTER} 3081 | \end{itemize} 3082 | \item \textbf{Repeat} up to \textbf{STP5} 3083 | \end{subenumerate}} 3084 | \blueitem{Weapon Launch}{-- \hyperref[subsec:slamlaunch]{\textbf{Refer to Launch Section}}} 3085 | \end{checklistenumerate} 3086 | 3087 | \notebox{ 3088 | \begin{itemize} 3089 | \item SLAM-ER is labeled as \textbf{SLMR} on \textbf{SMS} / \textbf{MSN Page}, adjust procedures accordingly 3090 | \item SLAM-ER has significantly higher range as compared to SLAM 3091 | \end{itemize} 3092 | } 3093 | 3094 | \clearpage 3095 | 3096 | \subsection{SLAM - LAUNCH} 3097 | \begin{checklistenumerate} 3098 | \blueitem{Generic Setup}{-- \hyperref[subsec:slamsetup]{\textbf{Refer to Setup Section}}} 3099 | \blueitem{Target Designation}{-- \textbf{Refer to Designation Sections} 3100 | \begin{subitemize} 3101 | \item \hyperref[subsec:slamdestoowypt]{\textbf{TOO WYPT}} 3102 | / \hyperref[subsec:slamdestootpod]{\textbf{TOO TPOD}} 3103 | / \hyperref[subsec:slamdestooag]{\textbf{TOO A/G RDR}} 3104 | \item \hyperref[subsec:slamdespp]{\textbf{PP}} 3105 | \end{subitemize}} 3106 | \blueitem{Cockpit Setup}{ 3107 | \begin{subitemize} 3108 | \item \textbf{R DDI} -- \textbf{HSI Page} 3109 | \item \textbf{L DDI} -- \textbf{SMS Page} 3110 | \end{subitemize}} 3111 | \blueitem{SMS Page Datalink Setup}{ 3112 | \begin{subenumerate} 3113 | \item \textbf{SLAM OSB} \dotfill \textbf{Unboxed} 3114 | \item \textbf{DL13 OSB} \dotfill \textbf{Boxed} 3115 | \item \textbf{Datalink Channel} \dotfill \textbf{Set} 3116 | \begin{itemize} 3117 | \item Must set to match weapon station 3118 | \item Set via UFC OSB \& UFC input 3119 | \end{itemize} 3120 | \end{subenumerate}} 3121 | \blueitem{Launch Conditions}{ 3122 | \begin{subitemize} 3123 | \item \textbf{Weapon Station} \dotfill \textbf{RDY} 3124 | \item \textbf{Range Cue} \dotfill \textbf{IN RNG} 3125 | \item \textbf{Release Profile} \dotfill \textbf{Set} 3126 | \item \textbf{Master Mode} \dotfill \textbf{A/G} 3127 | \item \textbf{Master Arm} \dotfill \textbf{ARM} 3128 | \end{subitemize}} 3129 | \blueitem{Weapon Launch}{-- Hold \textbf{WEAPON RELEASE} until separation} 3130 | \blueitem{TTS = 0}{ 3131 | \begin{subitemize} 3132 | \item Datalink feed activates 3133 | \item Seeker becomes uncaged 3134 | \item \textbf{FOV OSB} toggles field-of-view 3135 | \end{subitemize}} 3136 | \blueitem{Manual Correction}{ 3137 | \begin{subitemize} 3138 | \item Press \& Hold TDC while slewing 3139 | \item Not recommended unless necessary 3140 | \end{subitemize}} 3141 | \blueitem{Impact}{-- Datalink feed cuts out} 3142 | \end{checklistenumerate} 3143 | 3144 | \notebox{ 3145 | \begin{itemize} 3146 | \item \textbf{Cueing} 3147 | \begin{itemize} 3148 | \item \textbf{TTS} -- (\textbf{T}ime-\textbf{T}o-\textbf{S}eeker) 3149 | time until seeker goes active and pilot can take control 3150 | \item \textbf{TMR} -- Time until maximum launch range 3151 | \item \textbf{IN RNG} -- Within maximum launch range 3152 | \item \textbf{Diamond} -- Shows Target location on HUD/HMD 3153 | \end{itemize} 3154 | \end{itemize} 3155 | } 3156 | 3157 | \clearpage 3158 | 3159 | \section{AGM-62 WALLEYE II} 3160 | 3161 | \subsection{AGM-62 WALLEYE II} 3162 | \begin{checklistenumerate} 3163 | \blueitem{Master Arm}{ARM} 3164 | \blueitem{Master Mode}{A/G} 3165 | \blueitem{SMS}{select WEDL 3166 | \begin{subenumerate} 3167 | \item \blue{TV Feed}\dotfill select WEDL OSB again 3168 | \item \blue{Fuzing}\dotfill as desired 3169 | \end{subenumerate}} 3170 | \blueitem{SCS}{towards walleye feed DDI} 3171 | \blueitem{Cage/Uncage}{when uncaged the bomb will attempt to lock on to contrast} 3172 | \blueitem{TDC}{DEPRESS \& \textbf{hold} while slewing} 3173 | \blueitem{LOCK ON}{RDY indication next to station, WE no longer crossed out in HUD, WEDL no longer crossed out in SMS} 3174 | \blueitem{Fire}{hold weapon release} 3175 | \end{checklistenumerate} 3176 | 3177 | \subsection{AGM-62 WALLEYE II - D/L} 3178 | \begin{checklistenumerate} 3179 | \blueitem{Master Arm}{ARM} 3180 | \blueitem{Master Mode}{A/G} 3181 | \blueitem{SMS}{select WEDL 3182 | \begin{subenumerate} 3183 | \item \blue{D/L}\dotfill select DL13 OSB\\ 3184 | \hfill (turns on D/L \& TV feed) 3185 | \item \blue{CHNL}\dotfill press UFC OSB and set channel equal to selected station of walleye, then deselect UFC OSB 3186 | \item \blue{Fuzing}\dotfill as desired 3187 | \end{subenumerate}} 3188 | \blueitem{SCS}{towards DL feed} 3189 | \blueitem{Cage/Uncage}{when uncaged the bomb will attempt to lock on to contrast} 3190 | \blueitem{TDC}{DEPRESS \& \textbf{hold} while slewing} 3191 | \blueitem{LOCK ON}{RDY indication next to station, WE no longer crossed out in HUD, WEDL no longer crossed out in SMS} 3192 | \blueitem{Fire}{hold weapon release} 3193 | \blueitem{Steer}{DEPRESS \& \textbf{hold} TDC} 3194 | \blueitem{Impact}{D/L Feed will cut out} 3195 | \end{checklistenumerate} 3196 | 3197 | \blue{Range} theoretical max 20 nm, practical max 10 nm, 3198 | altitude of 20k and high airspeed recommended \\ 3199 | \blue{Lock On} not required for D/L launch but recommended \\ 3200 | \blue{Oversteering} significantly reduces range 3201 | 3202 | 3203 | 3204 | 3205 | \cleardoublepage 3206 | 3207 | \chapter{A/A WEAPONS} 3208 | \thumbtab{A/A}{5} 3209 | \minitoc 3210 | \cleardoublepage 3211 | 3212 | \section{M61A2 GUN} 3213 | 3214 | \subsection{M61 - NO RADAR} 3215 | \begin{checklistenumerate} 3216 | \blueitem{Master Arm}{\dotfill ARM} 3217 | \blueitem{Radar}{\dotfill OFF} 3218 | \blueitem{Weapon Select}{\dotfill A/A GUNS (aft)} 3219 | \blueitem{SMS}{ 3220 | \begin{subitemize} 3221 | \item \blue{Rounds} MK-50 or PGU-28 3222 | \item \blue{Firing Rate} HI or LO 3223 | \end{subitemize}} 3224 | \blueitem{Fire}{\dotfill TRIGGER} 3225 | \end{checklistenumerate} 3226 | 3227 | \subsection{M61 - RADAR} 3228 | \begin{checklistenumerate} 3229 | \blueitem{Master Arm}{\dotfill ARM} 3230 | \blueitem{Radar}{\dotfill OPERATE} 3231 | \blueitem{Weapon Select}{\dotfill A/A GUNS (aft)} 3232 | \blueitem{SMS}{ 3233 | \begin{subitemize} 3234 | \item \blue{Rounds} MK-50 or PGU-28 3235 | \item \blue{Firing Rage} HI or LO 3236 | \end{subitemize}} 3237 | \blueitem{Radar ACM}{\dotfill GACQ (occurs automatically)} 3238 | \blueitem{Maneuver}{\dotfill place pipper over target} 3239 | \blueitem{Fire}{\dotfill TRIGGER} 3240 | \end{checklistenumerate} 3241 | 3242 | \clearpage 3243 | 3244 | \section{AIM-9 SIDEWINDER} 3245 | 3246 | \subsection{AIM-9 - NO RADAR} 3247 | \begin{checklistenumerate} 3248 | \blueitem{IR Cool}{\dotfill NORM} 3249 | \blueitem{Master Arm}{\dotfill ARM} 3250 | \blueitem{Radar}{\dotfill OFF} 3251 | \blueitem{Weapon Select}{\dotfill SIDEWINDER (fwd)} 3252 | \blueitem{Cage/Uncage}{\dotfill DEPRESS} 3253 | \blueitem{Maneuver}{\dotfill place target in seeker (good tone)} 3254 | \blueitem{Fire}{\dotfill TRIGGER} 3255 | \end{checklistenumerate} 3256 | 3257 | \subsection{AIM-9 - RADAR} 3258 | \begin{checklistenumerate} 3259 | \blueitem{IR Cool}{\dotfill NORM} 3260 | \blueitem{Master Arm}{\dotfill ARM} 3261 | \blueitem{Radar}{\dotfill OPERATE} 3262 | \blueitem{Weapon Select}{\dotfill SIDEWINDER (fwd)} 3263 | \blueitem{SCS}{\dotfill ACM (forward)} 3264 | \blueitem{Select Sub Mode}{\dotfill with further depresses 3265 | \begin{subitemize} 3266 | \item \blue{BST} Boresight 3267 | \item \blue{VACQ} Vertical Acquisition 3268 | \item \blue{WACQ} Wide Acquisition 3269 | \end{subitemize}} 3270 | \blueitem{Maneuver}{\dotfill place target in lock on zone} 3271 | \blueitem{Cage/Uncage}{\dotfill depress} 3272 | \blueitem{Maneuver}{\dotfill place steering dot inside ASE/NIRD circle} 3273 | \blueitem{Fire}{\dotfill TRIGGER} 3274 | \end{checklistenumerate} 3275 | 3276 | \subsection{AIM-9X - JHMCS} 3277 | \begin{checklistenumerate} 3278 | \blueitem{IR Cool}{\dotfill NORM} 3279 | \blueitem{HMD}{\dotfill BRT} 3280 | \blueitem{Master Arm}{\dotfill ARM} 3281 | \blueitem{Weapon Select}{\dotfill SIDEWINDER (fwd)} 3282 | \blueitem{Move Head}{\dotfill place DAC on target} 3283 | \blueitem{Cage/Uncage}{\dotfill DEPRESS} 3284 | \blueitem{Fire}{\dotfill on good tone} 3285 | \end{checklistenumerate} 3286 | 3287 | \notebox{ 3288 | \begin{itemize} 3289 | \item \textbf{AIM-9X TONES} 3290 | \begin{itemize} 3291 | \item \textbf{Static} -- Searching 3292 | \item \textbf{Double Beep} -- Past 27.5 deg off boresight 3293 | \item \textbf{Repeating beep} -- Sees I/R contrast (not enough for track) 3294 | \item \textbf{Steady Tone} -- Sees I/R contrasting target 3295 | \item \textbf{High Pitched Tone} -- Uncaged 3296 | \item \textbf{Higher Pitch Tone} -- Uncaged and past 27.5 deg off boresight 3297 | \end{itemize} 3298 | \end{itemize} 3299 | } 3300 | 3301 | \clearpage 3302 | 3303 | \section{AIM-7 SPARROW} 3304 | 3305 | \subsection{AIM-7F - RADAR} 3306 | \begin{checklistenumerate} 3307 | \blueitem{Radar}{\dotfill OPERATE} 3308 | \blueitem{R DDI}{\dotfill RDR ATTK page} 3309 | \blueitem{Master Arm}{\dotfill ARM} 3310 | \blueitem{Weapon Select}{\dotfill SPARROW (left)} 3311 | \blueitem{SMS}{ 3312 | \begin{subitemize} 3313 | \item \blue{Size} SML/MED/LRG 3314 | \item \blue{HELO} as desired 3315 | \item Desired sparrow type 3316 | \end{subitemize}} 3317 | \blueitem{Sensor Select Switch}{\dotfill RIGHT to select BVR/RWR mode and slave TDC to R DDI} 3318 | \blueitem{Radar Range Scale}{\dotfill as desired} 3319 | \blueitem{Radar Azimuth Range}{\dotfill as desired} 3320 | \blueitem{Radar Bar Mode}{\dotfill as desired} 3321 | \blueitem{Aantenna Elev.}{\dotfill choose optimum} 3322 | \blueitem{Lock Target}{\dotfill TDC DEPRESS over target} 3323 | \blueitem{Maneuver}{\dotfill place target in ASE circle (will cause STT lock)} 3324 | \blueitem{Maneuver}{\dotfill place steering dot inside ASE/NIRD circle} 3325 | \blueitem{Fire}{ once in range and SHOOT cue appears} 3326 | \end{checklistenumerate} 3327 | 3328 | \blue{Undesignate} by pressing UNDESIGNATE button\\ 3329 | \blue{ACM} modes can also be used with sparrow (see SIDEWINDER - RADAR) 3330 | 3331 | \clearpage 3332 | 3333 | \section{AIM-120 AMRAAM} 3334 | 3335 | \subsection{AIM-120 - STT} 3336 | \begin{checklistenumerate} 3337 | \blueitem{Radar}{\dotfill OPERATE} 3338 | \blueitem{R DDI}{\dotfill RDR ATTK page} 3339 | \blueitem{Master Arm}{\dotfill ARM} 3340 | \blueitem{Weapon Select}{\dotfill AMRAAM (right)} 3341 | \blueitem{SMS}{ 3342 | \begin{subitemize} 3343 | \item \blue{Size} SML / MED / LRG 3344 | \item Select desired AMRAAM station 3345 | \end{subitemize}} 3346 | \blueitem{Sensor Select Switch}{\dotfill RIGHT to select BVR/RWR mode and slave TDC to R DDI} 3347 | \blueitem{Radar Range Scale}{\dotfill as desired} 3348 | \blueitem{Radar Azimuth Range}{\dotfill as desired} 3349 | \blueitem{Radar Bar Mode}{\dotfill as desired} 3350 | \blueitem{Antenna Elev.}{\dotfill choose optimum} 3351 | \blueitem{Lock Target}{\dotfill place TDC over target and depress} 3352 | \blueitem{Maneuver}{\dotfill place target in ASE circle (will cause STT lock)} 3353 | \blueitem{Maneuver}{\dotfill place steering dot inside ASE/NIRD circle} 3354 | \blueitem{Fire}{\dotfill once SHOOT cue appears} 3355 | \end{checklistenumerate} 3356 | \subsection{AIM-120 - TWS} 3357 | 3358 | %fills rest of page with blanks 3359 | \cleardoublepage 3360 | 3361 | \iftoggle{print}{ 3362 | \pagestyle{superempty} 3363 | \newpage \null 3364 | \thumbwide 3365 | \newpage \null 3366 | }{} 3367 | \end{document} 3368 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | FOR THE CODE CONTAINED IN THIS PROJECT: 2 | [Including all .tex, .cls files] 3 | 4 | ================================================================= 5 | MIT LICENSE 6 | ================================================================= 7 | Copyright (c) 2022 Techneatium 8 | 9 | Permission is hereby granted, free of charge, to any person obtaining a copy 10 | of this software and associated documentation files (the "Software"), to deal 11 | in the Software without restriction, including without limitation the rights 12 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 13 | copies of the Software, and to permit persons to whom the Software is 14 | furnished to do so, subject to the following conditions: 15 | 16 | The above copyright notice and this permission notice shall be included in all 17 | copies or substantial portions of the Software. 18 | 19 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 20 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 21 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 22 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 23 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 24 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 25 | SOFTWARE. 26 | ================================================================= 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # F/A-18C CHEATSHEET 2 | 3 | ## HOW TO USE 4 | 5 | Check the [Releases](https://github.com/Techneatium/F18_CheatSheet/releases) and download the latest PDF, then use as desired. The LaTeX source files are also available for download. 6 | 7 | For ease of maintenance, no image file versions are maintained here. To convert this to a format directly suitable as an in-game kneeboard (e.g PNG) please use [DCS Kneeboard Builder](https://dcskneeboardbuilder.com/) 8 | 9 | *** 10 | 11 | ## WHAT IS THIS? 12 | 13 | - A kneeboard-style `Cheat Sheet` for the DCS F/A-18C 14 | - Intended to allow someone already (partially) familiar with the Hornet's systems to quickly find necessary information 15 | 16 | *** 17 | 18 | ## COOL FEATURES 19 | 20 | Or at least what *I* think is cool. 21 | 22 | ### Hyperlinks. Lot's of Hyperlinks 23 | 24 | To facilitate quick location of the desired information the front page's chevrons/thumbtabs act as hyperlinks to the relevant chapters. Then, the mini-table-of-contents at the start of each chapter are also hyperlinks to the sections and subsections. Finally, one can return to the front page at any time simply by clicking on the hatching at the top of the page in order to find the next piece of information. 25 | 26 | ### Thumbtabs 27 | 28 | The front page chevrons and thumbtabs on the chapter pages are not just for show. If printed and cut they should act in much the same way as the thumbtabs on typical in-cockpit checklists. Additional cut lines are provided on odd pages as necesary. 29 | 30 | ### Styling 31 | 32 | While the styling of this document is in no ways completely representative of actual documentation, it was chosen to feel *inspired* by actual NATOPS and Emergency Checklists. 33 | 34 | *** 35 | 36 | ## REPOSITORY - `TECHS CHECKS` 37 | 38 | [**Check out my other Cheatsheets**](https://github.com/Techneatium/Techs-Checks) (Precompiled PDFs for various aircraft) 39 | 40 | ## WORK IN PROGRESS 41 | 42 | **This guide is still in progress and updates will come as I have time.** 43 | 44 | ### TO-DO 45 | 46 | - `PROCEDURES` 47 | - ICLS CASE III 48 | - ACLS 49 | - AAR 50 | 51 | - `SYSTEMS` 52 | - Collectivize smaller, related subsections together. 53 | - Datalink section 54 | - IFF section 55 | - SA page section 56 | 57 | - `RADAR` 58 | - Update new modes and behavior (e.g LTWS, WACQ uncaged) 59 | 60 | - `TGP-JHMCS` 61 | - Merge Litening and ATFLIR sections 62 | - Complete JHMCS section 63 | 64 | - `A/G WEAPONS` 65 | - Requires major overhaul of formatting and information 66 | - Decide between `tablenumitem` and `checklistenumitem` formatting 67 | - AGM-88C HARM 68 | - complete 69 | - AGM-84E SLAM 70 | - Remove redundant format test version 71 | 72 | - `A/A WEAPONS` 73 | - Overhaul with more practical information 74 | 75 | - `GENERAL` 76 | - General overhaul to match newer styling of F-14 Cheatsheet 77 | - Move RWR symbology to an Appendix? 78 | 79 | *** 80 | 81 | ## THANKS / SOURCES 82 | 83 | - A huge thanks to [Chuck's Guides](https://www.mudspike.com/chucks-guides-dcs/), this served as the original basis for this guide. 84 | - The official NATOPS was also referenced when necessary. 85 | -------------------------------------------------------------------------------- /TechCheck.cls: -------------------------------------------------------------------------------- 1 | %================================================================= 2 | % MIT LICENSE 3 | %================================================================= 4 | % Copyright (c) 2022 Techneatium 5 | % 6 | % Permission is hereby granted, free of charge, to any person obtaining a copy 7 | % of this software and associated documentation files (the "Software"), to deal 8 | % in the Software without restriction, including without limitation the rights 9 | % to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 10 | % copies of the Software, and to permit persons to whom the Software is 11 | % furnished to do so, subject to the following conditions: 12 | % 13 | % The above copyright notice and this permission notice shall be included in all 14 | % copies or substantial portions of the Software. 15 | % 16 | % THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 | % IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 | % FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 | % AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 | % LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 21 | % OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 22 | % SOFTWARE. 23 | %================================================================= 24 | 25 | \NeedsTeXFormat{LaTeX2e} 26 | \LoadClass[10pt,usenames,dvipsnames,twoside]{report} 27 | \NeedsTeXFormat{LaTeX2e} 28 | \ProvidesClass{TechCheck}[2022/05/29] 29 | 30 | %----------------------------------------------------------------- 31 | % GENERAL PACKAGES 32 | %----------------------------------------------------------------- 33 | \RequirePackage{geometry} 34 | \RequirePackage[yyyymmdd]{datetime} % change date format 35 | \renewcommand{\dateseparator}{} % select date separator character 36 | \RequirePackage[shortlabels]{enumitem} % pause/resume lists 37 | \RequirePackage{multicol} % multi column format 38 | \RequirePackage{graphicx} % used for figures 39 | \graphicspath{{images/}} % put figures inside folder 'images' in same folder as .tex 40 | \RequirePackage{subcaption} % used for subfigures 41 | \RequirePackage[dvipsnames]{xcolor} %colors, dvips -> extra premade colors 42 | \RequirePackage[explicit]{titlesec} % formating of titles 43 | \RequirePackage{siunitx} % SI units 44 | \RequirePackage{tikz} % shapes, figures 45 | \RequirePackage{tikzpagenodes} % points for tikz 46 | \usetikzlibrary{calc} % used for hyperlinked nodes 47 | \RequirePackage[hidelinks]{hyperref} % used for hyperlinked nodes 48 | \RequirePackage{cleveref} % better referencing 49 | \RequirePackage{lipsum} % lorem ipsum 50 | \RequirePackage[document]{ragged2e} % left ragged text 51 | \RequirePackage{atbegshi} % special commands that apply tikz to all pages 52 | \RequirePackage{fancyhdr} % custom header/footer 53 | \RequirePackage{etoolbox} % Boolean and if/else 54 | \RequirePackage{calc} % math inside other commands 55 | \RequirePackage{booktabs} % fancy tables 56 | \RequirePackage{multirow} % more fancy tables 57 | \RequirePackage{longtable} % multi page tables 58 | \RequirePackage{tocloft} % TOC formatting 59 | \RequirePackage{minitoc} % chapter tocs 60 | \RequirePackage[auto]{chappg} 61 | \RequirePackage{tcolorbox} % for rounded boxes 62 | \tcbuselibrary{skins, breakable} 63 | \RequirePackage{luatex85} % required to make changebar work with lualatex 64 | \RequirePackage[pdftex, color, outerbars]{changebar} % what it says 65 | \RequirePackage{xkeyval} % allows defining keys for macros 66 | 67 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 68 | % O P T I O N S S T A R T 69 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 70 | 71 | %----------------------------------------------------------------- 72 | % FONT OPTIONS 73 | %----------------------------------------------------------------- 74 | % Declare toggles for each font option 75 | \newtoggle{fontHelvet} 76 | \newtoggle{loadfontspec} 77 | \newtoggle{fontJost} 78 | \newtoggle{fontSpartan} 79 | \newtoggle{fontMetropolis} 80 | \newtoggle{fontHelvetica} 81 | \newtoggle{fontInter} 82 | 83 | % Default pdflatex helvetica clone 84 | \DeclareOption{fontHelvet}{ 85 | \toggletrue{fontHelvet} 86 | } 87 | 88 | % Futura Clone -- pointy 89 | \DeclareOption{fontJost}{ 90 | \toggletrue{loadfontspec} 91 | \toggletrue{fontJost} 92 | % toggle other fonts false 93 | \togglefalse{fontSpartan} 94 | \togglefalse{fontMetropolis} 95 | \togglefalse{fontHelvetica} 96 | \togglefalse{fontInter} 97 | } 98 | 99 | % Futura DemiBold Clone -- Achtung requires resizing 100 | \DeclareOption{fontSpartan}{ 101 | \toggletrue{loadfontspec} 102 | \toggletrue{fontSpartan} 103 | % toggle other fonts false 104 | \togglefalse{fontJost} 105 | \togglefalse{fontMetropolis} 106 | \togglefalse{fontHelvetica} 107 | \togglefalse{fontInter} 108 | } 109 | 110 | \DeclareOption{fontMetropolis}{ 111 | \toggletrue{loadfontspec} 112 | \toggletrue{fontMetropolis} 113 | % toggle other fonts false 114 | \togglefalse{fontJost} 115 | \togglefalse{fontSpartan} 116 | \togglefalse{fontHelvetica} 117 | \togglefalse{fontInter} 118 | } 119 | 120 | \DeclareOption{fontHelvetica}{ 121 | \toggletrue{loadfontspec} 122 | \toggletrue{fontHelvetica} 123 | % toggle other fonts false 124 | \togglefalse{fontJost} 125 | \togglefalse{fontSpartan} 126 | \togglefalse{fontMetropolis} 127 | \togglefalse{fontInter} 128 | } 129 | 130 | % Helvetica clone 131 | \DeclareOption{fontInter}{ 132 | \toggletrue{loadfontspec} 133 | \toggletrue{fontInter} 134 | % toggle other fonts false 135 | \togglefalse{fontJost} 136 | \togglefalse{fontSpartan} 137 | \togglefalse{fontMetropolis} 138 | \togglefalse{fontHelvetica} 139 | } 140 | 141 | %----------------------------------------------------------------- 142 | % GEOMETRY OPTIONS 143 | %----------------------------------------------------------------- 144 | % if print will add corner rounding and tabs 145 | \newtoggle{print} 146 | 147 | % Basic paper geometry 148 | \newlength{\paperh} 149 | \newlength{\paperw} 150 | 151 | % margins, input here as variable for ROUNDING 152 | \newlength{\inmar} 153 | \newlength{\outmar} 154 | \newlength{\topmar} 155 | \newlength{\botmar} 156 | \newlength{\footmar} 157 | \setlength\topmar{1.2cm} 158 | \setlength\botmar{0.8cm} 159 | \setlength\footmar{0.5cm} 160 | 161 | % indendtation for chevrons on front page 162 | \newlength{\chevin} 163 | 164 | % tab dimensions 165 | \newlength{\tabwidth} 166 | \newlength{\tabdepth} 167 | 168 | % Number of sections 169 | \newcounter{tabnumber} 170 | \setcounter{tabnumber}{6} 171 | 172 | % determines width of tab based on number of tabs 173 | \setlength\tabwidth{\textheight/\thetabnumber} 174 | 175 | % Nominal A5 paper size -- 210x148mm 176 | \DeclareOption{a5}{ 177 | \setlength\paperh{210mm} 178 | \setlength\paperw{148mm} 179 | \setlength\inmar{10mm} 180 | \setlength\outmar{10mm} 181 | \setlength{\chevin}{\outmar-33mm} 182 | \setlength\tabdepth{8mm} 183 | } 184 | 185 | % A5 paper with 8mm extra for tabs -- 210x(148+8)mm 186 | \DeclareOption{a5print}{ 187 | \setlength\paperh{210mm} 188 | \setlength\paperw{156mm} 189 | \setlength\inmar{16mm} 190 | \setlength\outmar{12mm} 191 | \setlength\chevin{\outmar-35mm} 192 | \setlength\tabdepth{8mm} 193 | \toggletrue{print} 194 | } 195 | 196 | % A5 paper with 9.5mm extra for 4x3 aspect -- 210x(148+9.5)mm 197 | \DeclareOption{4x3print}{ 198 | \setlength\paperh{210mm} 199 | \setlength\paperw{157.5mm} 200 | \setlength\inmar{16mm} 201 | \setlength\outmar{13.5mm} 202 | \setlength\chevin{\outmar-36.5mm} 203 | \setlength\tabdepth{9.5mm} 204 | \toggletrue{print} 205 | } 206 | 207 | 208 | % Nominal A4 paper size -- 297x210mm 209 | \DeclareOption{a4}{ 210 | \setlength\paperh{297mm} 211 | \setlength\paperw{210mm} 212 | \setlength\inmar{14mm} 213 | \setlength\outmar{14mm} 214 | \setlength{\chevin}{\outmar-31mm} 215 | \setlength\tabdepth{8mm} 216 | } 217 | 218 | % A4 paper with offset margins for printing -- 297x210mm 219 | \DeclareOption{a4print}{ 220 | \setlength\paperh{297mm} 221 | \setlength\paperw{210mm} 222 | \setlength\inmar{16mm} 223 | \setlength\outmar{12mm} 224 | \setlength{\chevin}{\outmar-29mm} 225 | \setlength\tabdepth{8mm} 226 | \toggletrue{print} 227 | } 228 | 229 | %----------------------------------------------------------------- 230 | % COLOR OPTIONS 231 | %----------------------------------------------------------------- 232 | % color1 - main color 233 | % color2 - highlight color 234 | % color3 - alternate highlight color 235 | 236 | \DeclareOption{colorful}{ 237 | \colorlet{color1}{black} 238 | % \definecolor{color1}{HTML}{222222} 239 | \colorlet{color2}{NavyBlue} 240 | \colorlet{color3}{NavyBlue} 241 | \definecolor{color4}{HTML}{FFE534} % bf2042yellow 242 | } 243 | 244 | \DeclareOption{b/w}{ 245 | \colorlet{color1}{black} 246 | \colorlet{color2}{black} 247 | \colorlet{color3}{black} 248 | \definecolor{color4}{HTML}{FFE534} % bf2042yellow 249 | } 250 | 251 | %----------------------------------------------------------------- 252 | % OTHER FORMATTING OPTIONS 253 | %----------------------------------------------------------------- 254 | 255 | %----------------------------------------------------------------- 256 | % DEV OPTIONS 257 | %----------------------------------------------------------------- 258 | % Turn hatching off 259 | \newtoggle{hatch} 260 | \toggletrue{hatch} 261 | \DeclareOption{nohatch}{ 262 | \togglefalse{hatch} 263 | } 264 | 265 | % Geometry showframe 266 | \DeclareOption{showframe}{ 267 | \PassOptionsToClass{showframe}{geometry} 268 | } 269 | 270 | % Thumbnar on/off 271 | \newtoggle{autothumbnar} 272 | \toggletrue{autothumbnar} 273 | \DeclareOption{manthumbnar}{ 274 | \togglefalse{autothumbnar} 275 | } 276 | 277 | %----------------------------------------------------------------- 278 | % PROCESS OPTIONS 279 | %----------------------------------------------------------------- 280 | \ExecuteOptions{fontSpartan, a5print, colorful} 281 | \ProcessOptions\relax 282 | 283 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 284 | % O P T I O N S E N D 285 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 286 | 287 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 288 | % GLOBAL FORMATTING 289 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% 290 | 291 | %----------------------------------------------------------------- 292 | % APPLY PAGE GEOMETRY 293 | %----------------------------------------------------------------- 294 | \geometry{ 295 | paperheight=\paperh, 296 | paperwidth=\paperw, 297 | margin=1mm, 298 | top=\topmar, 299 | bottom=\botmar, 300 | headsep=5mm, 301 | headheight=5mm, 302 | footskip=\footmar, 303 | inner=\inmar, 304 | outer=\outmar, 305 | centering 306 | } 307 | 308 | %----------------------------------------------------------------- 309 | % OPTIONAL PACKAGES 310 | %----------------------------------------------------------------- 311 | \iftoggle{fontHelvet}{ 312 | \RequirePackage[T1]{fontenc} 313 | \RequirePackage{helvet} 314 | \renewcommand{\familydefault}{\sfdefault} 315 | }{} 316 | 317 | \iftoggle{loadfontspec}{ 318 | \RequirePackage{fontspec} 319 | }{} 320 | 321 | \iftoggle{fontJost}{ 322 | \setmainfont[ 323 | Ligatures=TeX, 324 | UprightFont=*-Regular, 325 | ItalicFont=*-Italic, 326 | BoldFont=*-Bold, 327 | BoldFeatures={LetterSpace=2.5} 328 | ]{Jost} 329 | \newfontfamily\tightfont{Jost}[Ligatures=TeX, BoldFeatures={LetterSpace=0.0}] % used for `---` in page numbering 330 | \newfontfamily\titlefont{Jost-Bold}[Ligatures=TeX, LetterSpace=4.0] 331 | }{} 332 | 333 | \iftoggle{fontSpartan}{ 334 | \setmainfont[ 335 | Ligatures=TeX, 336 | Scale=0.85, 337 | UprightFont=*-Medium, 338 | ItalicFont=Jost-Italic, 339 | ItalicFeatures={Scale=1.0}, 340 | BoldFont=*-Bold, 341 | BoldFeatures={LetterSpace=2.5} 342 | ]{Spartan} 343 | \newfontfamily\tightfont{Spartan}[Ligatures=TeX, Scale=0.85, BoldFeatures={LetterSpace=0.0}] % used for `---` in page numbering 344 | \newfontfamily\titlefont{Spartan-Bold}[Ligatures=TeX, Scale=0.85, LetterSpace=4.0] 345 | }{} 346 | 347 | \iftoggle{fontMetropolis}{ 348 | \setmainfont[ 349 | Ligatures=TeX, 350 | UprightFont=*-Regular, 351 | ItalicFont=*-Regular Italic, 352 | BoldFont=*-Semi Bold, 353 | BoldFeatures={LetterSpace=3.0} 354 | ]{Metropolis} 355 | \newfontfamily\tightfont{Metropolis}[Ligatures=TeX, BoldFeatures={LetterSpace=0.0}] % used for `---` in page numbering 356 | \newfontfamily\titlefont{Metropolis-Bold}[Ligatures=TeX, LetterSpace=4.0] 357 | }{} 358 | 359 | \iftoggle{fontHelvetica}{ 360 | \setmainfont[ 361 | Ligatures=TeX, 362 | BoldFont=*-Bold, 363 | ItalicFont=*-Italic, 364 | ]{Helvetica Neue} 365 | \newfontfamily\tightfont{Spartan-Bold}[Ligatures=TeX, Scale=0.85, LetterSpace=0.0] % used for `---` in page numbering 366 | \newfontfamily\titlefont{Spartan-Bold}[Ligatures=TeX, Scale=0.85, LetterSpace=4.0] 367 | } 368 | 369 | \iftoggle{fontInter}{ 370 | \setmainfont[ 371 | Ligatures=TeX, 372 | BoldFont=*-Bold, 373 | ItalicFont=Jost-Italic, 374 | ]{Inter} 375 | \newfontfamily\tightfont{Spartan-Bold}[Ligatures=TeX, Scale=0.85, LetterSpace=0.0] % used for `---` in page numbering 376 | \newfontfamily\titlefont{Spartan-Bold}[Ligatures=TeX, Scale=0.85, LetterSpace=4.0] 377 | } 378 | 379 | %----------------------------------------------------------------- 380 | % GLOBAL PARAMETER COMMANDS 381 | %----------------------------------------------------------------- 382 | 383 | % Set label for title page 384 | \newcommand*\aircraftlong{FULL A/C NAME} 385 | \newcommand*{\setaircraftlong}[1]{\renewcommand*\aircraftlong{#1}} 386 | % Set label for header 387 | \newcommand*\aircraftshort{F-XX} 388 | \newcommand*{\setaircraftshort}[1]{\renewcommand*\aircraftshort{#1}} 389 | 390 | % Set number of tabs in preable 391 | \newcommand{\settabnumber}[1]{ 392 | \setcounter{tabnumber}{#1} 393 | \setlength\tabwidth{\textheight/\thetabnumber} 394 | } 395 | 396 | %----------------------------------------------------------------- 397 | % HEADER/FOOT FORMATTING 398 | %----------------------------------------------------------------- 399 | % remove header and foot 400 | \pagestyle{empty} 401 | % fancy header with section title in hatching 402 | \pagestyle{fancy} 403 | \renewcommand{\chaptermark}[1]{\markboth{\colorbox{color1}{ 404 | % code formatting section titles in header 405 | \textcolor{white}{\Large\textbf{#1}} 406 | }}{}} 407 | \fancypagestyle{superempty}{ 408 | % clear defaults 409 | \fancyhf{} 410 | \fancyhead[LE,LO]{ 411 | \iftoggle{hatch}{ 412 | \Hatch 413 | }{} 414 | } 415 | } 416 | \fancypagestyle{empty}{ 417 | % clear defaults 418 | \fancyhf{} 419 | \fancyhead[LE,LO]{ 420 | \iftoggle{hatch}{ 421 | \Hatch 422 | }{} 423 | } 424 | \fancyhead[RO]{ 425 | \iftoggle{autothumbnar}{ 426 | \thumbnar 427 | }{} 428 | } 429 | } 430 | \fancypagestyle{plain}{ 431 | % clear defaults 432 | \fancyhf{} 433 | % page number in footer 434 | % \fancyfoot[C]{{\tightfont \textbf{--- \thepage \ ---}}}% LE,RO 435 | \fancyfoot[C]{{\tightfont\textbf{\thepage}}}% LE,RO 436 | \fancyhead[LE,LO]{ 437 | \iftoggle{hatch}{ 438 | \Hatch 439 | }{} 440 | } 441 | } 442 | \fancypagestyle{body}{ 443 | % clear defaults 444 | \fancyhf{} 445 | % page number in footer 446 | % \fancyfoot[C]{{\tightfont \textbf{--- \thepage \ ---}}}% LE,RO 447 | \fancyfoot[C]{{\tightfont \textbf{\thepage}}}% LE,RO 448 | % date in top right 449 | \fancyhead[RE]{ 450 | \colorbox{color1}{ 451 | \textcolor{white}{\titlefont\Large\textbf{REV: \today}} 452 | } 453 | } 454 | \fancyhead[RO]{ 455 | \colorbox{color1}{ 456 | \textcolor{white}{\titlefont\Large\textbf{REV: \today}} 457 | } 458 | \iftoggle{autothumbnar}{ 459 | \thumbnar 460 | }{} 461 | } 462 | % extra thing in middle 463 | \fancyhead[C]{ 464 | \colorbox{color1}{ 465 | \textcolor{white}{\titlefont\Large\textbf{\aircraftshort}} 466 | } 467 | } 468 | \fancyhead[LE,LO]{ 469 | \iftoggle{hatch}{ 470 | \Hatch 471 | }{} 472 | \titlefont\textbf{\leftmark} 473 | } 474 | \renewcommand{\headrulewidth}{0pt} % and the line 475 | } 476 | \pagestyle{body} 477 | 478 | %----------------------------------------------------------------- 479 | % ENUMITEM FORMATTING 480 | %----------------------------------------------------------------- 481 | % spacing within lists 482 | \setlist[enumerate, 1]{itemsep=1pt, parsep=0pt, label=(\alph*)} 483 | \setlist[enumerate, 2]{itemsep=1pt, parsep=0pt} 484 | \setlist[itemize, 1]{itemsep=1pt, parsep=0pt, label=\textbf{\textbullet}} 485 | \setlist[itemize, 2]{itemsep=1pt, parsep=0pt} 486 | 487 | %----------------------------------------------------------------- 488 | % OTHER FORMATTING 489 | %----------------------------------------------------------------- 490 | % indent for paragraph 491 | \setlength{\parindent}{0pt} 492 | % space between paragraphs 493 | \setlength{\parskip}{0.3em} 494 | 495 | % space between columns 496 | \setlength{\columnsep}{2mm} 497 | % create lines between columns and define color of columns 498 | \setlength{\columnseprule}{0pt} %set thickness default 1pt 499 | \def\columnseprulecolor{\color{color1}} 500 | 501 | %----------------------------------------------------------------- 502 | % CHANGEBAR SETTINGS 503 | %----------------------------------------------------------------- 504 | \cbcolor{color1} 505 | \setlength{\changebarwidth}{2mm} 506 | 507 | %----------------------------------------------------------------- 508 | % TOCLOFT FORMATTING 509 | %----------------------------------------------------------------- 510 | % change distance between section number and title 511 | % default: 1.55em 512 | % required for Spartan font: 3.1em w/o chapters 513 | % required for Spartan font: 3.3em w/ chapters 514 | % \setlength{\cftsecnumwidth}{2.325em} 515 | % \setlength{\cftsubsecnumwidth}{3.50em} 516 | \tocloftpagestyle{empty} 517 | 518 | %----------------------------------------------------------------- 519 | % MINITOC FORMATTING 520 | %----------------------------------------------------------------- 521 | \mtcsetfont{minitoc}{section}{\normalfont\small} 522 | \mtcsetrules{minitoc}{off} 523 | 524 | %----------------------------------------------------------------- 525 | % TITLE FORMATTING 526 | %----------------------------------------------------------------- 527 | % \titleformat{}[]{}{