about summary refs log tree commit diff
path: root/pres/presentation/presentation.tex
blob: c51a7d3deb3f279c3ea655db9612f3f2253144bc (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
\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}