aboutsummaryrefslogtreecommitdiffstats
path: root/doc/slides/slides.tex
blob: ae1e81bc9dafa88bf30b227d6f5aae071011d6d7 (plain)
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
% !TeX program = xelatex
% !TeX encoding = utf8
\documentclass[xetex, onlymath, handout]{beamer}
\usefonttheme{serif}
\usetheme{hsr}

% use lmodern for math
\usepackage{lmodern}

%% Pretty figures
\usepackage{circuitikz}  % Electric diagrams
\usepackage{pgfplots}    % Pretty plots
\usepackage{tikz}        % Pretty drawings
\usepackage{tikz-3dplot} % More dimensions!

\usetikzlibrary{
	external,
	calc,
	positioning,
	backgrounds,
	decorations.pathreplacing,
	calligraphy,
	decorations.markings,
	matrix,
	arrows,
	patterns,
}
\pgfplotsset{compat=newest}

% math packages
\usepackage{amsmath}
\usepackage{amssymb}

\usepackage[T1]{fontenc}
\usepackage{beramono} % monospaced
\usepackage{roboto} % other
\renewcommand*\familydefault{\sfdefault}

% metadata
\title{Multipath Fading Demonstration Platform using Software Defined Radio}
\author{Naoki Sean Pross \and Sara Cinzia Halter}
\date{23. December 2021}

\institute[OST]{OST FHO Campus Rapperswil}

\AtBeginSection[]
{
  \begin{frame}{Table of Contents}
    \tableofcontents[currentsection]
  \end{frame}
}


\begin{document}

\frame{
  \maketitle
}

\section{Multipath Fading}

\begin{frame}{Multipath Fading sketch}
	\begin{figure}
		\centering
		\input{figures/tikz/multipath-sketch}
	\end{figure}
	\begin{equation} \label{eqn:multipath-impulse-response}
		h(\tau, t) = \sum_k c_k(t) \delta(\tau - \tau_k(t)),
	\end{equation}
\end{frame}

\begin{frame}{Spectrum of a multipath fading channel}
	\begin{figure}
		\centering
		\resizebox{\linewidth}{!}{
			\input{figures/tikz/multipath-frequency-response-plots}
			% \skelfig[width = .8 \linewidth, height = 3cm]{}
		}
	\end{figure}
	\begin{equation} 
		H(f, t) = \int_\mathbb{R} \sum_k c_k(t) \delta(\tau - \tau_k(t)) e^{-2\pi jf\tau} \, d\tau
		= \sum_k c_k(t) e^{-2\pi jf \tau_k(t)}.
	\end{equation}
\end{frame}



\subsection{Discrete-time model}

\begin{frame}{Discrete-time model}
	\begin{figure}
		\centering
		\input{figures/tikz/tapped-delay-line}
	\end{figure}
	\begin{equation} 
		h_l(m) = \sum_k c_k(mT) \sinc(l - \tau(mT)/T)
	\end{equation}
\end{frame}


\subsection{Statistical model}

\begin{frame}[fragile]{Statistical model}
  \begin{columns}
    \begin{column}{.5\linewidth}
      \begin{itemize}
        \item Raileigh distribution (NLOS)
        \item Rician distribution (LOS) 
     \end{itemize}
    \end{column}
    \begin{column}{.5\linewidth}
  	  \begin{figure}
  		\centering
  		\resizebox{!}{4cm}{%
  			\input{figures/tikz/ring-of-scattering-objects}
  		}
  	 \end{figure}
    \end{column}
  \end{columns}
\end{frame}





\section{Implementation}

%TODO: Mabe picture Hardware, Bicture GR.

\begin{frame}{Tools}
  \begin{columns}
	\begin{column}{.5\linewidth}
		\begin{itemize}
			\item Software Stack
				\begin{itemize}
					\item GNU Radio
					\item Dear PyGUI
				\end{itemize}
			\item Hardware
			\begin{itemize}
				\item USRP B210
			\end{itemize}
		\end{itemize}
	\end{column}
	\begin{column}{.5\linewidth}
		\begin{figure}
		\centering
		\includegraphics[frame, width = \linewidth]{figures/screenshots/gui_screenshot}
		\end{figure}
	\end{column}
\end{columns}
\end{frame}


\begin{frame}{Blockdiagram}
	\begin{figure}
		\centering
		\resizebox{.9\linewidth}{!}{
			\input{figures/tikz/overview}
		}
		
	\end{figure}
\end{frame}



\subsection{Transmitter and Receiver chain}

\begin{frame}{Transmitter chain}
	
\end{frame}

\begin{frame}{Receiver chain}
	
\end{frame}

\subsection{Channel model}

\begin{frame}{Discrete-time model}
	\begin{figure}
		\centering
		\input{figures/tikz/qpsk-simulations-static}
	\end{figure}
	the 1 tap model the fading tap was \(0.2\delta(n - 0.25)\), and for the 4 tap model uses \(0.2 \delta(n - 0.25) + 0.08 \delta(n - 3.25) + 0.5 \delta(n - 4) + 0.4 \delta(n - 6.3)\). In both cases the delays are given in samples.
\end{frame}

\begin{frame}{Statistical model}
	
\end{frame}

\section{Conclusion}

\begin{frame}{Further steps}
	
\end{frame}

\section{Measurement/Demonstration}

%%Tools


\end{document}

% vim:et:ts=2:sw=2:wrap:nolinebreak: