aboutsummaryrefslogtreecommitdiff
path: root/img/cylinder2d_high_res_comparsion.tikz
diff options
context:
space:
mode:
authorAdrian Kummerlaender2019-03-01 11:33:39 +0100
committerAdrian Kummerlaender2019-03-01 11:33:39 +0100
commit075ae15277c04fd96180a5f93b501d995d1b9a43 (patch)
tree376ddf38bdd719c16270f6214b905e008061f0ba /img/cylinder2d_high_res_comparsion.tikz
parente138c019fa3391b53da74b0e1b7e16285d72d746 (diff)
downloadgrid_refinement_bsc_thesis-075ae15277c04fd96180a5f93b501d995d1b9a43.tar
grid_refinement_bsc_thesis-075ae15277c04fd96180a5f93b501d995d1b9a43.tar.gz
grid_refinement_bsc_thesis-075ae15277c04fd96180a5f93b501d995d1b9a43.tar.bz2
grid_refinement_bsc_thesis-075ae15277c04fd96180a5f93b501d995d1b9a43.tar.lz
grid_refinement_bsc_thesis-075ae15277c04fd96180a5f93b501d995d1b9a43.tar.xz
grid_refinement_bsc_thesis-075ae15277c04fd96180a5f93b501d995d1b9a43.tar.zst
grid_refinement_bsc_thesis-075ae15277c04fd96180a5f93b501d995d1b9a43.zip
Relayout cylinder2d coefficient section
Diffstat (limited to 'img/cylinder2d_high_res_comparsion.tikz')
-rw-r--r--img/cylinder2d_high_res_comparsion.tikz80
1 files changed, 0 insertions, 80 deletions
diff --git a/img/cylinder2d_high_res_comparsion.tikz b/img/cylinder2d_high_res_comparsion.tikz
deleted file mode 100644
index 97d6ba7..0000000
--- a/img/cylinder2d_high_res_comparsion.tikz
+++ /dev/null
@@ -1,80 +0,0 @@
-\begin{tikzpicture}
-\pgfplotstableread[col sep=comma]{img/data/cylinder2d_optimized_grid_n20_re100_drag_lift_deltap.csv}\refined
-\pgfplotstableread[col sep=comma]{img/data/cylinder2d_unrefined_n48_re100_drag_lift_deltap.csv}\uniformMiddle
-\pgfplotstableread[col sep=comma]{img/data/cylinder2d_unrefined_n80_re100_drag_lift_deltap.csv}\uniformHigh
-
-\begin{axis}[
- scale only axis,
- height=6cm,
- width=0.9*\textwidth,
- legend cell align=left,
- legend pos=south east,
- grid=both,
- domain=0:16,
- xmin=6, xmax=16,
- ylabel={Widerstandskoeffizient},
- ylabel absolute, every axis y label/.append style={yshift=0.4cm},
- y tick label style={/pgf/number format/.cd, use comma}
-]
-
-\addplot[color=black]{3.23};
-\addlegendentry {Gemittelte Referenzlösung \(c_\text{Wmax} := \num{3.23}\)};
-\addplot[color=blue!50!white,thin,densely dashed] table [x expr=\thisrow{time}, y=drag] {\uniformHigh};
-\addplot[color=blue!50!white,thin] table [x expr=\thisrow{time}, y=drag] {\uniformMiddle};
-\addplot[color=green!70!black,thick] table [x expr=8*\thisrow{time}, y=drag] {\refined};
-
-\end{axis}
-
-\begin{axis}[
- scale only axis,
- yshift=-7cm,
- height=6cm,
- width=0.9*\textwidth,
- legend cell align=left,
- legend pos=south east,
- grid=both,
- domain=0:16,
- xmin=6, xmax=16,
- ylabel={Auftriebskoeffizient},
- ylabel absolute, every axis y label/.append style={yshift=0.4cm},
- y tick label style={/pgf/number format/.cd, use comma}
-]
-
-\addplot[color=black]{1.0};
-\addlegendentry {Gemittelte Referenzlösung \(c_\text{Lmax} := 1\)};
-\addplot[color=blue!50!white,thin,densely dashed] table [x expr=\thisrow{time}, y=lift] {\uniformHigh};
-\addplot[color=blue!50!white,thin] table [x expr=\thisrow{time}, y=lift] {\uniformMiddle};
-\addplot[color=green!70!black,thick] table [x expr=8*\thisrow{time}, y=lift] {\refined};
-
-\end{axis}
-
-\begin{axis}[
- scale only axis,
- yshift=-14cm,
- height=6cm,
- width=0.9*\textwidth,
- legend cell align=left,
- legend pos=south east,
- grid=both,
- domain=0:16,
- xmin=6, xmax=16,
- xlabel={Simulierte physikalische Zeit},
- ylabel={Druckdifferenz},
- x unit=s,
- y unit=N/m^2,
- ylabel absolute, every axis y label/.append style={yshift=0.4cm},
- y tick label style={/pgf/number format/.cd, use comma}
-]
-
-\addplot[color=black]{2.48};
-\addlegendentry {Gemittelte Referenzlösung \(\Delta P := \num{2.48}\)};
-\addplot[color=blue!50!white,thin,densely dashed] table [x expr=\thisrow{time}, y=deltap] {\uniformHigh};
-\addlegendentry {Uniformes \(N=80\) Gitter mit \(\sim 577000\) Knoten};
-\addplot[color=blue!50!white,thin] table [x expr=\thisrow{time}, y=deltap] {\uniformMiddle};
-\addlegendentry {Uniformes \(N=48\) Gitter mit \(\sim 208000\) Knoten};
-\addplot[color=green!70!black,thick] table [x expr=8*\thisrow{time}, y=deltap] {\refined};
-\addlegendentry {Verfeinertes \(N=20\) Gitter mit \(\sim 208000\) Knoten};
-
-\end{axis}
-
-\end{tikzpicture}