Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.75 KB | None | 0 0
  1.  
  2. \begin{figure}[H]
  3. \begin{center}
  4. \begin{tikzpicture}
  5. \begin{loglogaxis}[log ticks with fixed point,
  6. xmin=0.1,xmax=1000000,ymin=0.1, ymax=100,
  7. extra y ticks={0.1, 0.2, 0.4, 0.6, 0.8, 1, 2, 4, 6, 8, 10, 20, 40, 60, 100},
  8. extra y tick style={log identify minor tick positions=false},
  9. ylabel={Drag coefficient, $C_D$},
  10. xlabel={Reynolds Number, $Re=\frac{Ud\rho}{\mu}$},
  11. grid=both, legend cell align={left},
  12. legend pos=north east,
  13. width=0.95\textwidth, height=0.7\textwidth]
  14.  
  15. \addplot[blue, mark=o, only marks] table[x,y,col sep=comma] {csv/Cd_Schlichting.csv};
  16. \addlegendentry{H. Schlichting (1982)\cite{Sch17}};
  17.  
  18. \addplot[green,domain=0.1:3] {8*pi/(x*(0.5-0.577216+ln(8/x))))};
  19. \addlegendentry{Oseen's approximation};
  20.  
  21. \addplot[red, thick, only marks, mark=square] coordinates {(10, 3.46)(100, 1.46)(10000, 1.09)};
  22. \addlegendentry{Simulated};
  23.  
  24. \addplot[orange, very thick, only marks] coordinates {(10000, 0.925)};
  25. \addlegendentry{k-$\epsilon$ model};
  26.  
  27. \addplot[thick, only marks, mark=x] coordinates {(15.3, 2.2)(17.3, 2.25)(97.3, 1.26)(105, 1.24)};
  28. \addlegendentry{D. J. Tritton (1959)\cite{Tri59}};
  29.  
  30. \addplot[thick, only marks, mark=o] coordinates {(10, 2.846)(100, 1.056)};
  31. \addlegendentry{S. C. R. Dennis (1970)\cite{Den70}};
  32.  
  33. \addplot[thick, only marks, mark=diamond] coordinates {(100, 1.172)};
  34. \addlegendentry{A. E. Hamielec (1969)\cite{Ham69}};
  35. \end{loglogaxis}
  36. \end{tikzpicture}
  37. \caption{Drag coefficient vs. Reynolds number for circular cylinder}
  38. \label{fig:vali1}
  39. \end{center}
  40. \end{figure}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement