Page MenuHomec4science

spd_p.tex
No OneTemporary

File Metadata

Created
Tue, Oct 15, 09:31

spd_p.tex

\begin{tikzpicture}
\pgfplotsset
{
%scale only axis,
%scaled x ticks = base 10:2,
%height = 18cm,
width = 10cm,
xlabel={Pressure [\si{\milli\bar}]},
xmin = 0.7, xmax = 980,
legend style =
{
at = {(0.95, 0.95)},
anchor = north east
},
%cycle list name = color,
grid style = dashed,
ymajorgrids = true,
%minor x tick num = 2,
%minor y tick num = 4,
clip mode = individual,
% tick style
%xticklabel style={
% /pgf/number format/.cd,
% fixed,
% fixed zerofill,
% precision=2,
%}
}
\begin{semilogxaxis}
[
ylabel={Speed [\si{\metre\per\second}]},
ymin = 2.4, ymax = 5.5,
]
\pgfplotstableread{outs/infinite.dat}\datafile
\addplot
[
color = red,
mark = x,
mark options = {
draw = red,
fill = none
},
only marks,
error bars/.cd,
x dir=both,
y dir=both,
x explicit,
y explicit
]
table [x = p, y = v1, x error = dp, y error = dv1] {\datafile};
\addlegendentry{$v_1$}
\addplot
[
color = blue,
mark = asterisk,
mark options = {
draw = blue,
fill = none
},
only marks,
error bars/.cd,
x dir=both,
y dir=both,
x explicit,
y explicit
]
table [x = p, y = v2, x error = dp, y error = dv2] {\datafile};
\addlegendentry{$v_2$}
\addplot
[
color = orange,
mark = triangle,
mark options = {
draw = black,
fill = orange
},
only marks,
error bars/.cd,
x dir=both,
y dir=both,
x explicit,
y explicit
]
table [x = p, y = v3, x error = dp, y error = dv3] {\datafile};
\addlegendentry{$v_3$}
\addplot
[
color = violet,
mark = *,
mark options = {
draw = violet,
fill = cyan
},
only marks,
error bars/.cd,
x dir=both,
y dir=both,
x explicit,
y explicit
]
table [x = p, y = v4, x error = dp, y error = dv4] {\datafile};
\addlegendentry{$v_4$}
%\addplot
% [
% mark = none,
% dashed,
% color = black,
% domain = 0.3:0.38
% ]
%{5.7354e+09 * (x - 0.3370261)};
% \addlegendentry{$y = E \cdot (x - \epsilon_{rup})$}
\end{semilogxaxis}
\end{tikzpicture}

Event Timeline