1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
|
\chapter{Communication Systems}
\begin{refsection}
\section{What is Communication?}
\index{communication}
\textbf{Communication} (from Latin \emph{communicare}, ``to share'') is the act of conveying information from one entity to another using mutually understood sign and symbols.
\index{information}
\textbf{Information} is the knowledge which is being conveyed from the source to the recipient. Information results in increased knowledge at the recipient's side.
Many research areas concern with communication and information:
\begin{itemize}
\item Information theory: Quantification, storage, communication and information in general
\item Communication studies: Human communication
\item Linguistics: Language as a carrier of information
\item Biosemiotics: Communication in and between living organisms
\item ...
\end{itemize}
Communication and information are general terms. \textbf{Digital communication} concerns with the technology of conveying information using discrete signals. A \textbf{digital communication system} is a set of components and processes which implement digital communication. The signals carrying the information in a digital communication system are usually electromagnetic waves.
\section{Objectives and Distinction from Other Subjects}
This course will provide an understanding of how a digital communication system can be described. You will learn methods to describe information in their physical form as signals as well as system components.
The theory of digital communication system is strongly connected to other subjects, for example:
\begin{itemize}
\item Information and coding theory
\item Computer networks
\item Statistics
\item Signals and systems
\item Microwave engineering
\item Electronics
\end{itemize}
There are courses at this university which give you a deeper insight into these subjects.
\section{Components of A Communication System}
\subsection{Communication Model}
%\todo{citation}
Claude Shannon and Warren Weaver were engineers at the Bell Telephone Labs, USA. They developed the \index{Shannon-Weaver model} \textbf{Shannon-Weaver Model} \cite{Shannon1949} (Figure \ref{fig:ch01:shannon_weaver_model}).
\begin{figure}[H]
\centering
\begin{tikzpicture}
\draw node[draw, block](Source){Information\\ source};
\draw node[draw, block, right=of Source](STrans){Transducer\\ (sender)};
\draw node[draw, block, right=of STrans](TX){Transmitter};
\draw node[draw, block, below right=of TX](Ch){Transmission\\ channel};
\draw node[draw, block, below left=of Ch](RX){Receiver};
\draw node[draw, block, left=of RX](RTrans){Transducer\\ (recipient)};
\draw node[draw, block, left=of RTrans](Sink){Information\\ sink};
\draw[-latex] (Source) -- node[midway, align=center, above]{a} (STrans);
\draw[-latex] (STrans) -- node[midway, align=center, above]{b} (TX);
\draw[-latex] (TX) -| node[midway, align=center, above left]{c} (Ch);
\draw[-latex] (Ch) |- node[midway, align=center, above left]{d} (RX);
\draw[-latex] (RX) -- node[midway, align=center, above]{e} (RTrans);
\draw[-latex] (RTrans) -- node[midway, align=center, above]{f} (Sink);
\end{tikzpicture}
\caption{Shannon-Weaver model of communication}
\label{fig:ch01:shannon_weaver_model}
\end{figure}
\begin{description}
\item[Information source] The information is created here.
\item[Signal a] The original information is represented in physical form by a signal.
\item[Transducer (sender)] The \index{Shannon-Weaver model!transducer} transducer converts the signal from one physical form to another.
\item[Signal b] The signal is in a form which can be processed by the transmitter.
\item[Transmitter] The information is modulated on a carrier, which can be transmitted through the transmission channel.
\item[Signal c] The information is modulated on a carrier and can pass through the transmission channel.
\item[Tansmission channel] The physical system through which the modulated information passes. \index{transmission channels} Transmission channels are noisy and add disturbances to the information.
\item[Signal d] It is basically the Signal c. However, noise and disturbances have been added.
\item[Receiver] The receiver extracts the information from the carrier. Information must be reconstructed from the noisy input signal.
\item[Signal e] The output signal of the receiver.
\item[Transducer (recipient)] The signal must be converted into a physical form which can be processed by the information sink.
\item[Signal f] The signal carries the information in a form which can be used by the information sink.
\item[Information sink] The endpoint of the information. It uses the information to gain knowledge.
\end{description}
\paragraph{Example: Cell phone}
\begin{enumerate}
\item The information source is the brain.
\item Electrical impulses and molecules are conveyed by the nerves to the vocal cords (transducer 1). Vocal cords convert the signals to sound.
\item The sound is converted to an electrical signal by a microphone (transducer 2).
\item The electrical pulses are modulated on a radio carrier (transmitter).
\item Radio waves are transmitted over the air (transmission channel).
\item A noisy signal is received. The receivers demodulates the information from the radio carrier.
\item The analogue electrical signal is converted into sound by a speaker (transducer 3).
\item The sound reaches the ear that converts them to electrical pulses (transducer 4).
\item Electrical impulses and molecules are conveyed by the nerves to the brain (information sink).
\end{enumerate}
\subsection{Classification of Signals}
A \index{signal} signal conveys information in a form that can be processed by components of the communication systems.
\begin{figure}[H]
\centering
\begin{tikzpicture}
\draw node[block](Main){\textbf{Signals carrying}\\ \textbf{information}};
\draw node[block, below left=of Main](Analogue){Analogue};
\draw node[block, below right=of Main](Digital){Digital};
\draw node[block, below left=of Analogue](TimeCont){Time\\ continuous};
\draw node[block, below right=of Analogue](TimeDis){Time\\ discrete};
\draw [-latex] (Main) -- (Analogue);
\draw [-latex] (Main) -- (Digital);
\draw [-latex] (Analogue) -- (TimeCont);
\draw [-latex] (Analogue) -- (TimeDis);
\end{tikzpicture}
\caption{Classification of signals carrying information}
\label{fig:ch01:signals_classif}
\end{figure}
\paragraph{Analogue signals.}
\index{signal!analogue signal}
\index{signal!value-continuous}
Analogue signals are represented by values out of a continuous range (\emph{value-continuous}). The range can be limited. However, each real value in this range can be taken.
Examples:
\begin{itemize}
\item Acoustic signals (speech, sound)
\item Electric signals (voltage, current)
\item Light signals (microscope, photograph)
\end{itemize}
\index{signal!time-continuous}
\index{signal!time-discrete}
Analogue signals can be time-continuous or time-discrete. \emph{Time-continuity} means that the signal is defined at any real point of time. A \emph{time-discrete} signal is only defined at certain time instances. The number of time instances can be unlimited. However, the signal is not defined between two time points.
\begin{figure}[H]
\centering
\begin{adjustbox}{scale=0.8}
\begin{tikzpicture}
\draw node[draw, block](Continuous){Value-continuous,\\ time-continuous\\ signal};
\draw node[draw, block, right=3cm of Continuous](Sampled){Value-continuous,\\ time-discrete\\ signal};
\draw node[draw, block, right=3cm of Sampled](Digital){Value-discrete,\\ time-discrete\\ signal};
\draw [-latex] (Continuous) -- node[midway, align=center, above]{Sampling} (Sampled);
\draw [-latex] (Sampled) -- node[midway, align=center, above]{Quantization} (Digital);
\draw[decorate, decoration={brace, amplitude=3mm, mirror}] ([yshift=-5mm] Continuous.south west) -- ([yshift=-5mm] Sampled.south east) node[midway, below, yshift=-3mm]{\textbf{Analogue}};
\draw[decorate, decoration={brace, amplitude=3mm, mirror}] ([yshift=-5mm] Digital.south west) -- ([yshift=-5mm] Digital.south east) node[midway, below, yshift=-3mm]{\textbf{Digital}};
\end{tikzpicture}
\end{adjustbox}
\caption{Conversion from analogue to digital signals}
\label{fig:ch01:signals_sampling}
\end{figure}
\begin{figure}[H]
\centering
%\includegraphics{../chapter01/Signal_Analogue.jpg}
\begin{tikzpicture}
\begin{axis}[
height={0.25\textheight},
width=0.6\linewidth,
scale only axis,
xlabel={$t$},
ylabel={$x$},
%grid style={line width=.6pt, color=lightgray},
%grid=both,
grid=none,
axis lines=left,
legend pos=north east,
xmin=0,
xmax=7,
ymin=0,
ymax=3,
xtick={0, 1, ..., 6},
ytick={0, 0.5, ..., 2.5}
]
\addplot[smooth, blue, thick] coordinates {(0, 1.1) (1, 1.8) (2, 2.1) (3, 1.0) (4, 0.8) (5, 1.7) (6, 2.4)};
\end{axis}
\end{tikzpicture}
\caption[An analogue, value-continuous, time-continuous signal]{An analogue, value-continuous, time-continuous signal. Both time and value can be any real number.}
\label{fig:ch01:Signal_Analogue}
\end{figure}
\begin{figure}[H]
\centering
%\includegraphics{../chapter01/Signal_TimeDiscr.jpg}
\begin{tikzpicture}
\begin{axis}[
height={0.25\textheight},
width=0.6\linewidth,
scale only axis,
xlabel={$t$},
ylabel={$x$},
%grid style={line width=.6pt, color=lightgray},
%grid=both,
grid=none,
axis lines=left,
legend pos=north east,
xmin=0,
xmax=7,
ymin=0,
ymax=3,
xtick={0, 1, ..., 6},
ytick={0, 0.5, ..., 2.5}
]
\addplot[smooth, blue, dashed] coordinates {(0, 1.1) (1, 1.8) (2, 2.1) (3, 1.0) (4, 0.8) (5, 1.7) (6, 2.4)};
\addplot[red, thick] coordinates {(0, 0) (0, 1.1)};
\addplot[red, thick] coordinates {(1, 0) (1, 1.8)};
\addplot[red, thick] coordinates {(2, 0) (2, 2.1)};
\addplot[red, thick] coordinates {(3, 0) (3, 1.0)};
\addplot[red, thick] coordinates {(4, 0) (4, 0.8)};
\addplot[red, thick] coordinates {(5, 0) (5, 1.7)};
\addplot[red, thick] coordinates {(6, 0) (6, 2.4)};
\addplot[only marks, red, thick, mark=o] coordinates {(0, 1.1) (1, 1.8) (2, 2.1) (3, 1.0) (4, 0.8) (5, 1.7) (6, 2.4)};
\end{axis}
\end{tikzpicture}
\caption[An analogue, value-continuous, but time-discrete signal]{An analogue, value-continuous, but time-discrete signal. Only certain time points (in this case $t \in \mathbb{Z}$) are valid, but the values can be any real number. The red circles form the signal. The vertical lines illustrate that the signal in time-discrete. The blue, dashed signal is not present, but illustrates the original time-continuous signal from which the time-discrete signal has been obtained.}
\label{fig:ch01:Signal_TimeDiscr}
\end{figure}
\paragraph{Digital signals.}
\index{signal!digital signal}
\index{signal!value-discrete}
Digital signals are both time-discrete and value-discrete. \emph{Value-discrete} means that they can take only one state out of a limited set of states.
\begin{figure}[H]
\centering
%\includegraphics{../chapter01/Signal_Digital.jpg}
\begin{tikzpicture}
\begin{axis}[
height={0.25\textheight},
width=0.6\linewidth,
scale only axis,
xlabel={$t$},
ylabel={$x$},
%grid style={line width=.6pt, color=lightgray},
%grid=both,
xmajorgrids=false,
ymajorgrids=true,
grid style={color=lightgray, dashed},
axis lines=left,
legend pos=north east,
xmin=0,
xmax=7,
ymin=0,
ymax=3,
xtick={0, 1, ..., 6},
ytick={0, 0.5, ..., 2.5}
]
\addplot[smooth, blue, dashed] coordinates {(0, 1.1) (1, 1.8) (2, 2.1) (3, 1.0) (4, 0.8) (5, 1.7) (6, 2.4)};
\addplot[red, thick] coordinates {(0, 0) (0, 1.0)};
\addplot[red, thick] coordinates {(1, 0) (1, 2.0)};
\addplot[red, thick] coordinates {(2, 0) (2, 2.0)};
\addplot[red, thick] coordinates {(3, 0) (3, 1.0)};
\addplot[red, thick] coordinates {(4, 0) (4, 1.0)};
\addplot[red, thick] coordinates {(5, 0) (5, 1.5)};
\addplot[red, thick] coordinates {(6, 0) (6, 2.5)};
\addplot[only marks, red, thick, mark=o] coordinates {(0, 1.0) (1, 2.0) (2, 2.0) (3, 1.0) (4, 1.0) (5, 1.5) (6, 2.5)};
\end{axis}
\end{tikzpicture}
\caption[A digital, value-discrete, time-discrete signal]{A digital, value-discrete, time-discrete signal. Only certain time points and a limited set of values (in this case multiples of $0.5$) are valid.}
\label{fig:ch01:Signal_Digital}
\end{figure}
Examples:
\begin{itemize}
\item Text letters
\item Morse code
\item Coded data
\end{itemize}
\index{signal!binary signal}
A special kind of digital signal is the \textbf{binary signal}. It has two discrete states.
\begin{excursus}{How analogue are digital signals?}
In fact, the physical form of a digital signal is again an analogue signal. If digital electronics are implemented, digital signals are transferred into a physical form. A binary signal can take the discrete states ``high'' and ``low''. Being on a wire, its states are represented by voltage levels, for example \SI{0}{V} and \SI{3.3}{V}. At this point, the engineer must carefully consider the effects which the signal is subject to. This topic is covered by the field of microwave engineering and \ac{EMC}.
However, if processed by a digital system, the physical representation is of minor importance. The theoretical consideration of digital signals neglects the physical nature. Even more, it is irrelevant which physical form of the digital signal exists and whether it exits. Only the discrete, logical states are of interest.
\end{excursus}
\subsection{Transmission Channels}
\index{transmission channel}
Digital communication systems employ electromagnetic waves to convey information. Therefore, only transmission channels transporting electromagnetic waves are considered.
\begin{figure}[H]
\centering
\begin{tikzpicture}
\draw node[block](Main){\textbf{Transmission}\\ \textbf{channels}};
\draw node[block, below left=of Main](Wired){Wired\\ channels};
\draw node[block, below right=of Main](Wireless){Wireless\\ channels};
\draw [-latex] (Main) -- (Wired);
\draw [-latex] (Main) -- (Wireless);
\end{tikzpicture}
\caption{Classification of transmission channels}
\label{fig:ch01:trans_ch_classif}
\end{figure}
\paragraph{Wired Channels.}
The electromagnetic wave propagates along a transmission line.
Examples of transmission lines:
\begin{itemize}
\item Cables
\begin{itemize}
\item Two wire, twisted-pair \index{twisted-pair cable}
\item Coaxial cable \index{coaxial cable}
\end{itemize}
\item Waveguides \index{waveguide}
\item Planar lines (on printed circuit boards or integrated circuits)
\begin{itemize}
\item Microstrip \index{microstrip}
\item Coplanar waveguide \index{coplanar waveguide}
\end{itemize}
\item Glass fibre (light is an electromagnetic wave, too)
\end{itemize}
\paragraph{Wireless Channels.}
The electromagnetic wave is not bound to a transmission line. It propagates through the space. A medium is not necessary. Electromagnetic wave can also travel through vacuum.
\section{The Electromagnetic Spectrum}
The carrier of information in an electronic communication system are electromagnetic waves -- either bound to a transmission line or wireless. Electromagnetic waves are electric fields $\underline{E}$ and magnetic fields $\underline{H}$, which oscillate at high frequencies.
\begin{excursus}{Maxwell's equations and wave equations}
The Maxwell's equations are a set of coupled partial differential equations. They are the foundation of classical electromagnetism and classical optics.
\textbf{Gauss' law:}
\begin{equation}
\nabla \cdot \cmplxvect{E} = \frac{\rho}{\varepsilon_0}
\end{equation}
\textbf{Gauss' law of magnetism:}
\begin{equation}
\nabla \cdot \cmplxvect{B} = 0
\end{equation}
\textbf{Faraday's law (electromagnetic induction):}
\begin{equation}
\nabla \times \cmplxvect{E} = - \frac{\partial \cmplxvect{B}}{\partial t}
\end{equation}
\textbf{Ampere's circuital law with Maxwell's extension:}
\begin{equation}
\nabla \times \cmplxvect{B} = \mu_0 \left(\cmplxvect{J} + \varepsilon_0 \frac{\partial \cmplxvect{E}}{\partial t} \right)
\end{equation}
James Clerk Maxwell postulated electromagnetic waves in 1865 \cite{Maxwell1864}. By ``decoupling'' the Maxwell's equations, the wave equations can be isolated for both the electric field and the magnetic field. They describe the wave propagation in any media.
\begin{subequations}
\begin{align}
\Delta \cmplxvect{E} - \underline{\gamma}^2 \cmplxvect{E} &= \vect{0} \\
\Delta \cmplxvect{H} - \underline{\gamma}^2 \cmplxvect{H} &= \vect{0}
\end{align}
\end{subequations}
where $\underline{\gamma}$ is the complex propagation constant, that devolves into the attenuation constant $\alpha$ and the phase constant $\beta$. $\alpha$ expresses the decrease of the field amplitudes while the wave travels through a lossy medium. $\beta$ determines the propagation speed and the wavelength $\lambda = 2 \pi / \beta$.
\begin{equation}
\underline{\gamma} = \alpha + \mathsf{j} \beta
\end{equation}
\end{excursus}
\begin{figure}[H]
\centering
\includegraphics[width=0.8\linewidth]{svg/ch01_EM_Spectrum_Properties.pdf}
\caption{Diagram of the electromagnetic spectrum. \licensequote{\cite{Inductiveload2007}}{''Inductiveload''}{\href{https://creativecommons.org/licenses/by-sa/3.0/deed.en}{CC-BY-SA 3.0}}}
\end{figure}
Electromagnetic waves have different properties and applications, depending on the frequency. The most interesting range for communication is from radio waves to visible light.
\begin{itemize}
\item Infrared and visible light are used in glass fibre (optical) communication systems. Before the appearance of electronic communication, light was an important information carrier (lighthouses, optical telegraphs, etc.).
\item Radio waves and microwaves can be generated by electronics and are radiated by antennas. They have advantages over light like a wider range or their ability to penetrate walls.
\end{itemize}
Instead of the frequency, the \index{wavelength} \textbf{wavelength} $\lambda$ can be given. It is inverse proportional to the frequency with the proportionality constant $c_0$, the speed of light. The wavelength is the distance in which one period of the oscillating electromagnetic wave fits. The higher the frequency, the short the distance which a wave travels until the next period starts.
\begin{equation}
\lambda = \frac{c_0}{f} = \frac{2 \pi c_0}{\omega}
\end{equation}
\begin{figure}[H]
\centering
\includegraphics[width=0.5\linewidth]{svg/ch01_Electromagnetic-Spectrum.pdf}
\caption{Zooming into the radio spectrum as apart of the electromagnetic spectrum. \licensequote{\cite{Penubag2012}}{"Penubag" and Victor Blacus}{\href{https://creativecommons.org/licenses/by-sa/3.0/deed.en}{CC-BY-SA 3.0}}}
\end{figure}
Radio waves are used as a information carrier since the beginning of the 20th century. They can be further divided in accordance with their properties. The radio spectrum is split into \index{band} \textbf{bands}.
\renewcommand{\arraystretch}{1.5}
\begin{table}[H]
\centering
\caption[ITU radio band plan]{\ac{ITU} radio band plan}
\begin{tabular}{|l|l|l|l|}
\hline
Band & Frequency & Properties & Example Applications \\
\hline
\hline
\acs{ELF} & \SIrange{3}{30}{Hz} & \multirow{3}{*}{\begin{minipage}{0.25\textwidth}can penetrate water,\\ follows earth curvature\end{minipage}} & \multirow{3}{*}{\begin{minipage}{0.25\textwidth}submarine communication\end{minipage}} \\
\cline{1-2}
\acs{SLF} & \SIrange{30}{300}{Hz} & & \\
\cline{1-2}
\acs{ULF} & \SIrange{300}{3000}{Hz} & & \\
\cline{1-4}
\acs{VLF} & \SIrange{3}{30}{kHz} & \multirow{3}{*}{\begin{minipage}{0.25\textwidth}follows earth curvature\end{minipage}} & \begin{minipage}{0.25\textwidth}time signals, geophysics\end{minipage} \\[1.5em]
\cline{1-2}
\cline{4-4}
\acs{LF} & \SIrange{30}{300}{kHz} & & \begin{minipage}{0.25\textwidth}time signals, maritime navigation, AM broadcasting\end{minipage} \\[1.5em]
\cline{1-2}
\cline{4-4}
\acs{MF} & \SIrange{300}{3000}{kHz} & & \begin{minipage}{0.25\textwidth}AM broadcasting, aviation navigation, avalanche beacon\end{minipage} \\[1.5em]
\cline{1-4}
\acs{HF} & \SIrange{3}{30}{MHz} & \begin{minipage}{0.25\textwidth}reflections at ionosphere\end{minipage} & \begin{minipage}{0.25\textwidth}AM broadcasting, amateur radio, \acs{RFID}, maritime communication, long-distance aviation communication\end{minipage} \\[1.5em]
\cline{1-4}
\acs{VHF} & \SIrange{30}{300}{MHz} & \begin{minipage}{0.25\textwidth}quasi-optical propagation,\\ reflections at ionosphere possible\end{minipage} & \begin{minipage}{0.25\textwidth}FM broadcasting, television broadcasting, maritime and aviation communication, land mobile communication, weather satellites\end{minipage} \\[1.5em]
\cline{1-4}
\acs{UHF} & \SIrange{300}{3000}{MHz} & \multirow{3}{*}{\begin{minipage}{0.25\textwidth}quasi-optical propagation,\\ higher frequencies generally mean higher attenuation and shorter ranges\end{minipage}} & \begin{minipage}{0.25\textwidth}television broadcasting, \acs{WLAN}, \acs{GPS}, communication satellites, cell phones\end{minipage} \\[1.5em]
\cline{1-2}
\cline{4-4}
\acs{SHF} & \SIrange{3}{30}{GHz} & & \begin{minipage}{0.25\textwidth}radio astronomy, communication satellites, radar, satellite television broadcasting\end{minipage} \\[1.5em]
\cline{1-2}
\cline{4-4}
\acs{EHF} & \SIrange{30}{300}{GHz} & & \begin{minipage}{0.25\textwidth}new \acs{WLAN} standard (IEEE\,802.11ad), radar, radio astronomy, imaging (millimeter wave scanners), remote sensing\end{minipage} \\[1.5em]
\hline
\end{tabular}
\end{table}
Especially, the bands LF to UHF have been traditionally used in wireless communication. Furthermore, their usage is not limited to wireless systems. For example, cable television uses parts of the VHF or UHF spectra. Cable internet shares the wire with TV broadcasting.
Because of the increasing number of services and growing demands regarding bandwidth and response time, modern communication system advance in the direction of microwaves. The microwave spectrum begins at \SI{3}{GHz}.
%There are dedicate band plans for microwave applications. Table \ref{tab:ch01:IEEE_radar_bands} IEEE radar bands.
%\begin{table}[H]
% \centering
% \caption{IEEE radar bands}
% \label{tab:ch01:IEEE_radar_bands}
% \begin{tabular}{|l|}
% \hline
% Abbreviation \\
% \hline
% \hline
% HF \\
% \hline
% \end{tabular}
%\end{table}
The services using the electromagnetic spectrum receive a \index{frequency allocation} \textbf{frequency allocation}. Usually, a national telecommunication regulation authority is responsible for allocation frequencies to the services. They follow recommendations of the \ac{ITU}, a special agency of the \ac{UN}. In Germany, the regulation authority is the Federal Network Agency (Bundesnetzagentur).
\section{Computer Networks}
This course focuses on the technologies which convey information between endpoints, using electromagnetic waves. The information, being conveyed, are called \textbf{data}. The handling of the data is a subject of computer science, especially \emph{computer networks} \index{computer network}. Since data processing is a part of digital communication systems, too, this digression shall give an overview about the employed concepts.
\subsection{Protocols}
Modern communication systems convey information world-wide. These communication links are established over myriads of devices, which form a network. The biggest computer network is the internet.
In order to interact, the devices are required to follow certain rules, which are called \textbf{communication protocols} \index{communication protocol}. Protocols define
\begin{itemize}
\item the structure and semantics of data,
\item synchronization of communication, and
\item possible error recovery methods.
\end{itemize}
Protocols are standardized and must be implemented in every device, which interacts with other devices. Important standardization organizations are amongst others:
\begin{itemize}
\item The non-profit organization \textbf{\acf{IETF}} issues standards concerning the internet. The standards are called \emph{Request For Comment} (RFC) and are available for everyone for free. Example standards: \ac{IP}, \ac{HTTP}
\item The \textbf{\acf{IEEE}} has standards committees which develop and publish standards. With respect to the internet, the IEEE\,802 LAN/MAN Standards Committee is the most important one. Example standards: IEEE\,802.11 (\ac{WLAN}, Wifi)
\item The \textbf{\acf{ETSI}} is an independent, non-profit standardization organization. It is recognized by the European Council and officially responsible for standardization of information and communication technologies in Europe. Example standards: 3G (cell phone system), 4G (cell phone system), TETRA (professional mobile radio system)
\end{itemize}
\subsection{\acs{OSI} Model}
There are many task which a digital communication systems must accomplish.
\begin{itemize}
\item An application processes user input and displays data to the user.
\item The application data must be reliably transferred over a network with many nodes.
\item The network is shared with other users and applications.
\item The network consists of many links using different physical transmission channels, for example, wired and wireless.
\end{itemize}
For each task, there are communication protocols to solve it. Communication protocols are grouped by the task which they fulfil. There is an increasing level of abstraction from the physical link to the application data. The \index{OSI model} \textbf{\acs{OSI} Model} (Figure \ref{fig:ch01:osi_model}) defines a layer structure for classifying communication protocols, which regards the level of abstraction.
\begin{figure}[H]
\centering
\begin{tikzpicture}[
layer/.style={
rectangle,
minimum height=1cm,
minimum width=8cm
}
]
\draw node[draw, layer](L7){Application layer};
\draw node[draw, layer, below=0 of L7](L6){Presentation layer};
\draw node[draw, layer, below=0 of L6](L5){Session layer};
\draw node[draw, layer, below=0 of L5](L4){Transport layer};
\draw node[draw, layer, below=0 of L4](L3){Network layer};
\draw node[draw, layer, below=0 of L3](L2){Data link layer};
\draw node[draw, layer, below=0 of L2](L1){Physical layer};
\node [anchor=east, align=right] at([xshift=-5mm] L7.west) {Layer 7};
\node [anchor=east, align=right] at([xshift=-5mm] L6.west) {Layer 6};
\node [anchor=east, align=right] at([xshift=-5mm] L5.west) {Layer 5};
\node [anchor=east, align=right] at([xshift=-5mm] L4.west) {Layer 4};
\node [anchor=east, align=right] at([xshift=-5mm] L3.west) {Layer 3};
\node [anchor=east, align=right] at([xshift=-5mm] L2.west) {Layer 2};
\node [anchor=east, align=right] at([xshift=-5mm] L1.west) {Layer 1};
\filldraw[fill=gray!60, draw=none] ([xshift=10mm, yshift=3mm] L7.north east) -- node[midway, above, anchor=south, align=center]{Level of\\ abstraction} ([xshift=15mm, yshift=3mm] L7.north east) -- ([xshift=12.5mm, yshift=-3mm] L1.south east);
\end{tikzpicture}
\caption[OSI Model with seven layers]{\ac{OSI} Model with seven layers}
\label{fig:ch01:osi_model}
\end{figure}
\begin{table}[H]
\caption[Description of the layers of the OSI Model]{Description of the layers of the \ac{OSI} Model (Figure \ref{fig:ch01:osi_model}). The protocol data unit is the information }
\begin{tabular}{|l|l|p{0.5\linewidth}|}
\hline
Layer & PDU & Function \\
\hline
\hline
7: Application & Data & Processing user inputs, displaying data, providing services \\
\hline
6: Presentation & Data & Translation between network service and application (encryption, compression, etc.) \\
\hline
5: Session & Data & Managing sessions (retaining the communication state across multiple contacts) \\
\hline
4: Transport & Datagram, Segment & Reliable communication (segmentation, multiplexing, data loss detection) \\
\hline
3: Network & Packet & Data transfer across multiple nodes (addressing, routing, traffic control) \\
\hline
2: Data link & Frame & Transmission between two devices (medium access, flow control) \\
\hline
1: Physical & Symbol & Transmission over a physical medium \\
\hline
\end{tabular}
\end{table}
Each protocol has a standardized interface exposed to the upper layer, called \index{service access point} \textbf{\ac{SAP}}. They allow an upper layer protocol to execute functions of the lower layer protocol. These functions are, for example:
\begin{itemize}
\item Sending or receiving data
\item Control operations
\item Network registration and de-registration
\end{itemize}
Protocol layers add own information to the data received from the upper layer. This additional information is required to provide the protocol's functionality. For example, the \acf{IP} needs to add the source and destination address, so that the packet can be routed to the correct endpoint. One can imagine this like data which is written on a letter, which is put into an envelope, which itself is put into another envelope, and so on.
\begin{figure}[H]
\centering
\includegraphics{../chapter01/Frame_Wrapping.jpg}
\caption{Principle of adding more information in each protocol layer}
\label{fig:ch01:frame_construction}
\end{figure}
Communication protocols may be exchanged in one layer without affecting the functionality of the other layers. For example, \ac{HTTP} operates on \acs{TCP}/\acs{IP}. But the \acf{IP} works on multiple physical links like Ethernet (IEEE\,802.3), Wifi (IEEE\,802.11) or 4G. The transmission media can even change along the communication path. Information travelling through the internet experience lots of \index{media change} \textbf{media changes}. For example, a datagram is firstly sent over a \ac{WLAN} link an relayed by the router on a cable to the internet service provider.
%\begin{figure}[H]
% \centering
% \caption{Media change on the internet. }
% \label{fig:ch01:media_changes}
%\end{figure}
This course on digital communication systems mainly considers the physical layer (layer 1) and the data link layer (layer 2). This physical layer converts the information to physical signals which then leave the device to be transmitted over a physical transmission channel. Networks, which are enabled by protocols of layer 3 and above, are outside the scope of this course.
\subsection{Network Topologies}
In the context of networks,
\begin{itemize}
\item the devices are called \index{node} \textbf{nodes} and
\item the communication channels between the nodes are called \index{link} \textbf{links}.
\end{itemize}
Nodes of a network can be arranged in various ways. The structures being formed are \index{network topology} \textbf{network topologies}. Basic topologies are:
\begin{itemize}
\item \textbf{Line} or chain -- The nodes are connected in series. A packet is passed on by each node until reaches its destination.
\item \textbf{Ring} -- An extension of the line where the outer nodes are interconnected, too. A packet is passed by every node to its destination. The failure of a single node does not split the network into two segments, which increases the fault tolerance.
\item \textbf{Bus} -- All nodes are connected to a central cable, the bus. Each node can receive the signals transmitted. As a drawback, only one device may occupy the bus simultaneously for transmission.
\item \textbf{Star} -- A central node (a hub or switch) relays the packets to its destination.
\item \textbf{Tree} -- Tree structure is a hybrid network of star networks interconnected by a bus. Because there a no loops in the network, the nodes can be graphically re-ordered to a tree graph.
\item \textbf{Mesh} -- The nodes are interconnected directly. Nodes may have many direct connections to other nodes, while there is no hierarchy. There are many loops in the network. Usually, mesh networks are re-organized dynamically in mobile systems. A node discovers all nodes which it can reach and establishes a link. A special form is the \emph{Full Mesh}, where all nodes are interconnected with every other one.
\end{itemize}
\begin{figure}[H]
\centering
\includegraphics[width=0.7\linewidth]{svg/ch01_NetworkTopologies.pdf}
\caption{Network topologies. \licensequote{\cite{Maksim2011}}{``Maksim'' and ``Malyszkz''}{Public Domain}}
\end{figure}
The network topology is a concern of the physical and data link layers of the \ac{OSI} model. It can be physical or logical.
\begin{itemize}
\item The \index{network topology!physical topology} \textbf{physical topology} refers to the placement of the hardware. For example, in a cable network, the physical topology is defined by the cables which interconnect the devices. The topology is mainly implemented in the physical layer.
\item The \index{network topology!logical topology} \textbf{logical topology} models the data flow in the network. For example, in a wireless network, each node can receive the signals of all other nodes in range. By addressing the devices and filtering out packets with wrong destination addresses, a logical network is created on top of the physical wireless interface. The topology is mainly implemented in the data link layer.
\end{itemize}
A network must fulfil requirements, which determine the network topology, in the end. The use case and constraints must be considered by the engineer. For example:
\begin{itemize}
\item Lines and trees lack in reliability. The failure of one node divides the network into two segments and the remaining nodes cannot communicate with each other.
\item The ring is an improvement of the line with respect to reliability. Lines and rings require that all nodes have equal power. Otherwise, the weakest node would be a bottleneck with respect to network bandwidth.
\item Mesh and fully connected topologies are fault tolerant. The failure of one node does not corrupt the whole network. Furthermore, high data rates and lower latencies may be reached due to a higher number of links.
\item Mesh and fully connected topologies increase the cost of the networks. Each link consumes energy, space and money.
\item Buses and stars reduce the cost by maintaining a reasonable amount of reliability. The failure of one device has no major impact on the network, but a disturbance of the bus may. Buses can only be occupied by one node simultaneously. The results in lower data rate and higher latency compared to meshes.
\end{itemize}
An optimal topology may mix the basic forms.
\phantomsection
\addcontentsline{toc}{section}{References}
\printbibliography[heading=subbibliography]
\end{refsection}
|