aboutsummaryrefslogtreecommitdiff
path: root/img/poiseuille2d_setup.tikz
diff options
context:
space:
mode:
authorAdrian Kummerlaender2019-03-14 17:16:25 +0100
committerAdrian Kummerlaender2019-03-14 17:16:25 +0100
commit8eacb3256ee33532a15e947e62d3a46dd5cbccd5 (patch)
treedafdf8ba089f2978f7da504c13914afdeee26eed /img/poiseuille2d_setup.tikz
parentd7eca9bc8f398a433f43b7592aa97c721fc5f409 (diff)
downloadgrid_refinement_bsc_thesis-8eacb3256ee33532a15e947e62d3a46dd5cbccd5.tar
grid_refinement_bsc_thesis-8eacb3256ee33532a15e947e62d3a46dd5cbccd5.tar.gz
grid_refinement_bsc_thesis-8eacb3256ee33532a15e947e62d3a46dd5cbccd5.tar.bz2
grid_refinement_bsc_thesis-8eacb3256ee33532a15e947e62d3a46dd5cbccd5.tar.lz
grid_refinement_bsc_thesis-8eacb3256ee33532a15e947e62d3a46dd5cbccd5.tar.xz
grid_refinement_bsc_thesis-8eacb3256ee33532a15e947e62d3a46dd5cbccd5.tar.zst
grid_refinement_bsc_thesis-8eacb3256ee33532a15e947e62d3a46dd5cbccd5.zip
Restrict plot width to text width
Diffstat (limited to 'img/poiseuille2d_setup.tikz')
-rw-r--r--img/poiseuille2d_setup.tikz38
1 files changed, 0 insertions, 38 deletions
diff --git a/img/poiseuille2d_setup.tikz b/img/poiseuille2d_setup.tikz
deleted file mode 100644
index 76b307d..0000000
--- a/img/poiseuille2d_setup.tikz
+++ /dev/null
@@ -1,38 +0,0 @@
-\begin{tikzpicture}[
- scale=1.1*\textwidth/41cm,
- coarse/.style={circle,thick,inner sep=2},
- fine/.style={cross out,thick,inner sep=0.75},
- legend/.style={minimum height=1,minimum width=1}
-]
-
-\foreach \x in {0,...,20}
- \foreach \y in {0,...,10}{
- \ifthenelse{\equal{\y}{0} \OR \equal{\y}{10}}{
- \node[coarse,draw=black] at (\x,\y){ };
- }{
- \ifthenelse{\equal{\x}{0}}{
- \node[coarse,draw=green] at (\x,\y){ };
- }{
- \node[coarse,draw=blue] at (\x,\y){ };
- }
- }
- }
-
-\foreach \x in {0,...,42}
- \foreach \y in {0,...,20}{
- \ifthenelse{\equal{\y}{0} \OR \equal{\y}{20}}{
- \node[fine,draw=black] at (19+\x*0.5,\y*0.5){ };
- }{
- \ifthenelse{\equal{\x}{42}}{
- \node[fine,draw=red] at (19+\x*0.5,\y*0.5){ };
- }{
- \node[fine,draw=blue] at (19+\x*0.5,\y*0.5){ };
- }
- }
- }
-
-\node[legend,fill=blue,label=0:Fluid] at (9+0*6,-2) { };
-\node[legend,fill=black,label=0:Wand] at (9+1*6,-2) { };
-\node[legend,fill=green,label=0:Einfluss] at (9+2*6,-2) { };
-\node[legend,fill=red,label=0:Ausfluss] at (9+3*6,-2) { };
-\end{tikzpicture}