about summary refs log tree commit diff
path: root/pres/presentation/presentation.tex
diff options
context:
space:
mode:
authorhanemile <emile.hansmaennel@gmail.com>2018-03-07 21:04:23 +0100
committerhanemile <emile.hansmaennel@gmail.com>2018-03-07 21:04:23 +0100
commit39ef28af054ec4d06f25aa9c94bcfeaaadc27f41 (patch)
treed0b9bc6ad1365bb966192501c52ed49c0375d9ce /pres/presentation/presentation.tex
parent38166a2e529de646f8143d02da57ac52d468b421 (diff)
presentation (posters)
Diffstat (limited to 'pres/presentation/presentation.tex')
-rw-r--r--pres/presentation/presentation.tex138
1 files changed, 138 insertions, 0 deletions
diff --git a/pres/presentation/presentation.tex b/pres/presentation/presentation.tex
new file mode 100644
index 0000000..c51a7d3
--- /dev/null
+++ b/pres/presentation/presentation.tex
@@ -0,0 +1,138 @@
+\documentclass[aspectratio=169]{beamer}
+\usepackage[utf8]{inputenc}
+\usepackage[T1]{fontenc}
+
+\usetheme{Singapore}
+
+\title{Galaxy Generation}
+\subtitle{Jugend Forscht 2018}
+\author{Emile Hansmaennel}
+\institute{Theodor Fliedner Gymnasium}
+\date{\today}
+
+
+\begin{document}
+  \begin{frame}
+    \titlepage
+  \end{frame}
+
+  \begin{frame}
+    \tableofcontents
+  \end{frame}
+
+  \section{Point Cloud}
+  \subsection{Random generation of points}
+
+  \begin{frame}
+    \frametitle{Generating an evenly distributed point-cloud}
+
+    \begin{itemize}
+      \item numpy
+    \end{itemize}
+
+  \end{frame}
+
+  \subsection{Random-Sampling with the NFW-profile}
+
+  \begin{frame}
+    \frametitle{Random Sampling}
+
+    \begin{itemize}
+      \item Generate a random value in a range \( [r_{min};r_{max}] \)
+      \item Find out if the value is bigger or smaller than the NFW value
+    \end{itemize}
+
+  \end{frame}
+
+  \begin{frame}
+    \frametitle{The NFW-Profile}
+
+    \begin{itemize}
+      \item Returns a probability for a star to get generated
+    \end{itemize}
+
+    [insert nfw-distance function image]
+  \end{frame}
+
+  \subsection{Saving the stars}
+
+  \begin{frame}
+    \frametitle{Using the .csv file format}
+
+    \begin{itemize}
+      \item How do I use the csv format?
+    \end{itemize}
+  \end{frame}
+
+  \section{Forces}
+  \subsection{Generating a grid for subdividing the galaxy into cells}
+
+  \begin{frame}
+    \frametitle{Generating a grid for subdividing the galaxy}
+
+    \begin{itemize}
+      \item insert grid image without the spheres
+      \item problem (threshold)
+    \end{itemize}
+  \end{frame}
+
+  \subsubsection{Generating the spheres}
+
+  \begin{frame}
+    \frametitle{Generating the spheres on the vertices of the grid}
+
+    \begin{equation}
+      r = \sqrt{1^2 + 1^2 + 1^2}
+    \end{equation}
+
+    \begin{itemize}
+      \item insert grid image with the spheres
+      \item problem (threshold)
+    \end{itemize}
+
+  \end{frame}
+
+  \subsubsection{Finding out which star is in which spheres}
+
+  \begin{frame}
+    \frametitle{Which Star is in which sphere?}
+
+    \begin{itemize}
+      \item Method for finding this out
+    \end{itemize}
+
+  \end{frame}
+
+  \subsection{Calculate the forces acting inside of each sphere}
+
+  \begin{frame}
+    \frametitle{Forces acting in each sphere}
+
+    \begin{itemize}
+      \item cycle through all the stars in each sphere and calculate the forces
+    \end{itemize}
+  \end{frame}
+
+  \subsubsection{Calculation the Forces acting between one star and the rest}
+
+  \begin{frame}
+    \frametitle{Calculate the forces acting inbetween the individual stars
+    and the other stars}
+
+    \begin{itemize}
+      \item DO EPIC THINGS!
+    \end{itemize}
+  \end{frame}
+
+  \section{Extrapolation}
+  \subsection{Calculate where the stars are next}
+
+  \begin{frame}
+    \frametitle{Where are the stars after n seconds?}
+
+    \begin{itemize}
+      \item Force acting on star for n seconds equals a displacement of m
+    \end{itemize}
+  \end{frame}
+
+\end{document}