Page MenuHomec4science

fric_p.tex
No OneTemporary

File Metadata

Created
Thu, Aug 8, 13:24

fric_p.tex

\begin{tikzpicture}
\pgfplotsset
{
%scale only axis,
%scaled x ticks = base 10:2,
%height = 18cm,
width = 9.1cm,
xlabel={Pressure [\si{\milli\bar}]},
xmin = 0.2, 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={Acceleration [\si{\metre\per\second}]},
ymin = 0, % 0.05
ymax = 9.4, % 4.5
]
\pgfplotstableread{outs/finite.dat}\datafile
\addplot
[
color = green,
mark = *,
mark options = {
draw = black,
fill = green
},
only marks,
error bars/.cd,
x dir=both,
y dir=both,
x explicit,
y explicit
]
table [x = p, y = a1, x error = dp, y error = dF1] {\datafile};
\addlegendentry{$a_1$}
\addplot
[
color = red,
mark = asterisk,
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 = a2, x error = dp, y error = dF2] {\datafile};
\addlegendentry{$a_2$}
\addplot
[
color = cyan,
mark = triangle*,
mark options = {
draw = black,
fill = cyan
},
only marks,
error bars/.cd,
x dir=both,
y dir=both,
x explicit,
y explicit
]
table [x = p, y = a3, x error = dp, y error = dF3] {\datafile};
\addlegendentry{$a_3$}
\addplot
[
color = yellow,
mark = square*,
mark size = 1pt,
mark options = {
draw = black,
fill = yellow
},
only marks,
error bars/.cd,
x dir=both,
y dir=both,
x explicit,
y explicit
]
table [x = p, y = a4, x error = dp, y error = dF4] {\datafile};
\addlegendentry{$a_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