Page MenuHomec4science

convy.tex
No OneTemporary

File Metadata

Created
Fri, Jan 3, 07:13

convy.tex

\begin{tikzpicture}
\pgfplotstableread{conv_study_one.dat}\convstudyone
\pgfplotsset
{
xmin = 0, xmax = 22,
width = \textwidth
}
\begin{axis}
[
title = {Étude sur la composante $y$},
xlabel={$dt \: [10^{-5} \; s]$},
ylabel={$y_f \: [10^{-5} \; m]$},
ymin=-22, ymax= 2,
ymajorgrids = true,
grid style = dashed,
legend style = {
matrix anchor = south west,
at = {(0.05, 0.05)}
}
]
\addplot
table [x = dt, y = Eyf] {\convstudyone};
\label{eyf}
\addlegendentry{$Euler$}
\addplot
table [x = dt, y = ECyf] {\convstudyone};
\label{ecyf}
\addlegendentry{$Euler-Cromer$}
\addplot
table [x = dt, y = RKyf] {\convstudyone};
\label{rkyf}
\addlegendentry{$Runge-Kutta$}
\addplot+[mark = none, domain = 0:22] {0};
\label{thyvalue}
\addlegendentry{Valeur analytique}
\end{axis}
\end{tikzpicture}

Event Timeline