-
Notifications
You must be signed in to change notification settings - Fork 2
/
aviatikz.tex
170 lines (116 loc) · 3.55 KB
/
aviatikz.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{newpxtext}
\usepackage{newpxmath}
\usepackage{textcomp}
\usepackage{parskip}
\usepackage{a4wide}
\usepackage{float}
\usepackage{subcaption}
\usepackage{tikz}
\usepackage{aviatikz}
\usepackage{xfrac}
\usepackage{amsmath}
\usepackage{siunitx}
\usepackage{listings}
\usepackage{listingsutf8}
\usepackage{booktabs}
\usepackage{tabularx}
\floatplacement{figure}{htb}
\floatplacement{table}{htb}
\DeclareSIUnit[number-unit-product={}]{\inch}{\text{\textquotedbl}}
%\DeclareSIUnit[number-unit-product={\thinspace}]{\inch}{in}
\DeclareSIUnit{\feet}{ft}
\DeclareSIUnit{\KIAS}{KIAS}
\sisetup{per-mode = symbol}
\lstset{
language=[LaTeX]{TeX},
basicstyle=\ttfamily,
keywordstyle=\fontfamily{lmss}\bfseries,
tabsize=2,
inputencoding=utf8/latin1,
floatplacement=htb}
\lstdefinestyle{block}{
basicstyle=\ttfamily,
breaklines,
breakindent=10pt}
\lstdefinestyle{numberedblock}{
style=block,
numbers=left,
numberstyle=\scriptsize,
xleftmargin=20pt,
frame=leftline}
\input{documentation/latex/inst_figure}
\newcommand{\lara}[1]{\textnormal{\textlangle#1\textrangle}}
\title{AviaTi\textit{k}Z}
\author{Mario Haustein}
\begin{document}
\maketitle
\tableofcontents
\section{Introduction}
This package provides a set of commands to draw graphics related for
theoretical flight training courses. It is base in the \texttt{tikz} package.
All drawing commands have to be placed inside a
\texttt{tikzpicture}~environment.
\section{Instruments}
\input{documentation/content/inst_sample}
\clearpage
\subsection{Pitot-Static Instruments}
The pitot-static system consists of two pressure probes. The static port
measures the barometric pressure of the air around the aircraft. The pitot tube
measures the total pressure of the airflow in the direction of flight. The
difference between total and static pressure is called dynamic pressure.
\subsubsection{Altimeter}
\input{documentation/content/inst_altimeter}
\subsubsection{Variometer}
\input{documentation/content/inst_vsi}
\subsubsection{Airspeed Indicator}
\input{documentation/content/inst_asi}
\clearpage
\subsection{Gyroscopic Instruments}
Gyroscopic instruments using spinning masses driven either pneumatically by a
suction pump or electrically. They base on the effect of precession to display
they orientation or turn rate of the aircraft uninfluenced by acceleration
forces.
\subsubsection{Heading Indicator}
\input{documentation/content/inst_hi}
\subsubsection{Turn Coordinator}
\input{documentation/content/inst_tc}
\subsubsection{Attitude Indicator}
\begin{tikzpicture}
\aviainstai[]
\end{tikzpicture}
\clearpage
\subsection{Radio Navigation}
\subsubsection{Automatic Direction Finder}
\begin{tikzpicture}
\aviainstadf[type=rbi,rb=90]
\end{tikzpicture}
\begin{tikzpicture}
\aviainstadf[type=mdi,brng hdg={30}{55}]
\end{tikzpicture}
\begin{tikzpicture}
\aviainstadf[type=mdi,hdg=45,rb=60]
\end{tikzpicture}
\subsubsection{Course Deviation Indicator}
\begin{tikzpicture}
\aviainstcdi[obs=30,ils/dev={0.2}{0.2}]
\end{tikzpicture}
\begin{tikzpicture}
\aviainstcdi[obs=215,vor/radial=30]
\end{tikzpicture}
\begin{tikzpicture}
\aviainstcdi[obs=215,type=vor,vor/radial=200]
\end{tikzpicture}
\subsection{Engine}
\subsubsection{Tachometer}
\subsubsection{Oil Pressure}
\subsubsection{Oil Temperature}
\subsubsection{Cylinder Head Temperature}
\subsubsection{Exhaust Gas Temperature}
\subsubsection{Carburetor Temperature}
\subsubsection{Fuel Quantity}
\subsubsection{Fuel Flow}
\subsubsection{Manifold Pressure}
\end{document}