about summary refs log tree commit diff
path: root/langfassung/docs/3_hauptteil.tex
diff options
context:
space:
mode:
authorhanemile <emile.hansmaennel@gmail.com>2017-12-04 22:34:36 +0100
committerhanemile <emile.hansmaennel@gmail.com>2017-12-04 22:34:36 +0100
commit4da8d15f58b595f9a2fdedb3f7ca2130eac4a3e6 (patch)
treeae72971c09fbb1fa0c77ab304d2d7ac7ed85b86b /langfassung/docs/3_hauptteil.tex
parent0b9e22198a2c50967d2cf377e2d8d18363f20358 (diff)
updated langfassung
Diffstat (limited to 'langfassung/docs/3_hauptteil.tex')
-rw-r--r--langfassung/docs/3_hauptteil.tex49
1 files changed, 47 insertions, 2 deletions
diff --git a/langfassung/docs/3_hauptteil.tex b/langfassung/docs/3_hauptteil.tex
index eab3897..5174f08 100644
--- a/langfassung/docs/3_hauptteil.tex
+++ b/langfassung/docs/3_hauptteil.tex
@@ -43,14 +43,59 @@ Blender is Awesome, Python is Awesome and together they are
 
 \subsection{Making things faster}
 
-Kicking out to many Stars, 1 out of 10000 is just to much...
+\paragraph{ Kicking out to many Stars, 1 out of 10000 is just to much... }
+~\\
+
+\begin{itemize}
+  \item Use a custom Density function for each Axis
+  \begin{itemize}
+    \item \( \phi(r_x)\), \( \phi(r_y) \) and \( \phi(r_z) \)
+    \item more controll
+  \end{itemize}
+\end{itemize}
+
+\begin{tikzpicture}
+\begin{scope}
+
+    \node[draw] (H) at (0,-2)
+        {\( \phi(x_1) > rand_x \)};
+    \node[draw] (I) at (5,-2)
+        {\( \phi(y_1) > rand_y \)};
+    \node[draw] (J) at (10,-2)
+        {\( \phi(z_1) > rand_z \)};
+
+    \node[draw] (K) at (10, -4) {true};
+    \node[draw] (L) at (0, -4) {false};
+
+    \node[draw] (M) at (10, -6) {write data to data.csv};
+
+    \node[draw] (N) at (0, -6) {generate new random coordinates};
+
+\end{scope}
+
+\begin{scope} [every node/.style={fill=white,circle},
+              every edge/.style={draw=red,very thick}]
+
+    \path[->] (H) edge (K);
+    \path[->] (I) edge (K);
+    \path[->] (J) edge (K);
+    \path[->] (H) edge (L);
+    \path[->] (I) edge (L);
+    \path[->] (J) edge (L);
+
+    \path[->] (K) edge (M);
+    \path[->] (L) edge (N);
+
+\end{scope}
+
+\end{tikzpicture}
 
 \subsection{Spiral Galaxies}
 
 The previous Galaxy models where all using a completely spherical model, generating
 a spiral galaxy is just not possible using these models.
 
-\subsubsection{N-Körper problem}
+\subsubsection{N-body problem}
 
 Kurze Beschreibung des N-Körper Problems