Initial commit for Group Meeting presentation

This commit is contained in:
Eric Teunis de Boone 2022-05-31 10:16:15 +02:00
parent c3d130a715
commit 4aeea93bcc
7 changed files with 145 additions and 0 deletions

View File

@ -0,0 +1,104 @@
\documentclass[showdate=false]{beamer}
\usepackage[british]{babel}
\usepackage{amsmath}
\usepackage{hyperref}
\usepackage[backend=bibtex,style=trad-plain]{biblatex}
\usepackage{graphicx}
\graphicspath{{.}{../../figures/}}
\addbibresource{../../../bibliotheca/bibliography.bib}
% Disable Captions
\setbeamertemplate{caption}{\raggedright\small\insertcaption\par}
% Show Section overview at beginning of section
%\AtBeginSection[]
%{
% \begin{frame}<beamer>{Table of Contents}
% \tableofcontents[currentsection, currentsubsection, sectionstyle=show/shaded, subsectionstyle=hide]
% \end{frame}
%}
% no to navigation, yes to frame numbering
\beamertemplatenavigationsymbolsempty
\setbeamerfont{page number in head/foot}{size=\normalsize}
\setbeamertemplate{footline}[frame number]
\title[Grand DU]{Channel delays in the Grand Digitizer}
\date{May 31, 2022}
\author{E.T. de Boone}
\begin{document}
\frame{\titlepage}
\begin{frame}{Wireless time distribution}
\begin{block}{Current Timing Methods}
\begin{itemize}
\item GNSS (online)
\item Beacon (online/offline)
\end{itemize}
\end{block}
\vspace{2em}
\begin{itemize}
\item GPS Accuracy $\leq 30 \mathrm{ns}$ for $95$\% time (often better)
\item Total time accuracy in the order of 5 -- 10~ns
\end{itemize}
\vspace{2em}
\begin{alertblock}{Grand Digitizer}
\begin{itemize}
\item Both GNSS and Beacon,
\item Maybe test GNSS with Beacon?
\end{itemize}
\end{alertblock}
\end{frame}
\section{Channel Delays in the GRAND DU}
\begin{frame}{Grand DU before ADC}
\begin{block}{Grand DU before ADC}
\begin{itemize}
\item Four channel ADC
\item Per-channel Filterchain (might introduce delays)
\end{itemize}
\end{block}
\begin{figure}
\includegraphics[width=\textwidth]{grand/antenna-to-adc.pdf}
\caption{
Antenna to the four-channel ADC
}
\end{figure}
\end{frame}
\begin{frame}{Channel Delays Setup}
\begin{block}{Channel Delay Setup}
Single input into two channels\\
$\mapsto$ delays due to cabling and filterchain\\
\\
Use correlation or phase differences to determine delay
\end{block}
\begin{figure}
\includegraphics[width=\textwidth]{grand/channel-delay-setup.pdf}
\caption{
Single input to two channels
}
\end{figure}
\begin{block}{What signal to put in?}
\begin{itemize}
\item Sine, $\mapsto$ single frequency response of chain
\item Pulse, $\mapsto$ multiple frequencies to compare
\end{block}
\end{frame}
\begin{frame}{Channel Delays Result}
\begin{figure}
\includegraphics[width=\textwidth]{grand/split-cable-delays/split-cable-delays-ch1ch4.pdf}
\end{figure}
\end{figure}
%%%%%%%%%%%%%
\section*{References}
\begin{frame}{References}
\printbibliography
\end{frame}
\end{document}

View File

@ -0,0 +1,24 @@
# vim:ft=make
-include config.mk
.PHONY: all clean dist-clean
### Variables
MAIN_SRC ?= main.tex
TEXENGINE ?= latexmk --pdf
MAIN_TARGET = $(patsubst %.tex,%.pdf,$(MAIN_SRC))
### Targets
all: $(MAIN_TARGET)
dist: all clean
$(MAIN_TARGET): $(MAIN_SRC)
$(TEXENGINE) $^
dist-clean: clean
@rm -vf *.pdf *.eps *.dvi *.ps
clean:
@rm -vf *.dat *.log *.out *.aux *.nav *.snm *.toc *.vrb *~ *.fls *.fdb_latexmk *-blx.bib *.bbl *.blg *.run.xml

View File

@ -0,0 +1,16 @@
# Short Presentation on current status
Mostly to show what I've been doing uptil now.
Add short description of experimental setup?
### Outline
* Timing Mechanisms (GNSS, Beacon)
* White Rabbit as reference timing mechanism
* White Rabbit
* PTP
* Fourier and Phase information
* precise measurement $N_{sample} = N_{required}$
* imprecise measurement $N_{sample} != N_{required}$

View File

@ -0,0 +1 @@
MAIN_SRC=2022-05-31_group_meeting.tex