aboutsummaryrefslogtreecommitdiff
path: root/img/cylinder2d_drag_comparison.tikz
blob: 8806b50fa764cd3bcac4bfd47ced494a94df2159 (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
\begin{tikzpicture}
\pgfplotstableread[col sep=comma]{img/data/cylinder2d_optimized_refinement_n5_re100_drag_lift_deltap.csv}\refined
\pgfplotstableread[col sep=comma]{img/data/cylinder2d_unrefined_n12_re100_drag_lift_deltap.csv}\uniform

\begin{axis}[
	scale only axis,
	height=8cm,
	width=0.9*\textwidth,
	legend cell align=left,
	legend pos=south east,
	grid=both,
	domain=0:16,
	xmin=0, xmax=16,
	xlabel={Simulierte physikalische Zeit},
	ylabel={Widerstandskoeffizient},
	x unit=s
]

\addplot[
	color=blue!50!white,
	very thin
] table [
	x expr=\thisrow{time}, y=drag
] {\uniform};
\addlegendentry {Uniformes \(N=12\) Gitter};

\addplot[
	color=green!70!black,
	thick
] table [
	x expr=8*\thisrow{time}, y=drag
] {\refined};
\addlegendentry {Problembezogen verfeinertes \(N=5\) Gitter};

\addplot[color=black]{3.23};
\addlegendentry {Gemittelte Referenzlösung \(c_\text{Dmax} := 3.23\)};

\end{axis}
\end{tikzpicture}