Page MenuHomec4science

Si_VB.tex
No OneTemporary

File Metadata

Created
Sun, Dec 22, 13:28

Si_VB.tex

\begin{tikzpicture}
\pgfplotsset
{
%scale only axis,
%scaled x ticks = base 10:2,
%height = 18cm,
width = 10cm,
xlabel={$B$ [\si{\milli\tesla}]},
xmin = -380, xmax = 380,
%title = {Aluminium},
legend style =
{
at = {(0.05, 0.95)},
anchor = north west
},
%cycle list name = color,
grid style = dashed,
ymajorgrids = true
}
\begin{axis}
[
ylabel={$V$ [\si{\volt}]},
ymin = -0.8, ymax = 0.8
]
\pgfplotstableread{outs/Si1mum_VB.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 = B, y = V, x error = errB, y error = errV] {\datafile};
\addlegendentry{$I_e = 1$ \si{\milli\ampere}}
\pgfplotstableread{outs/Si2mum_VB.dat}\datafile
\addplot+
[
color = brown,
mark = x,
mark options = {
draw = brown,
fill = none
},
only marks,
error bars/.cd,
x dir=both,
y dir=both,
x explicit,
y explicit
]
table [x = B, y = V, x error = errB, y error = errV] {\datafile};
\addlegendentry{$I_e = 1$ \si{\milli\ampere}}
\addplot
[
mark = none,
color = red,
domain = -380:380
] {2.019605688041694 * x - 0.031854504876027874};
\addplot
[
mark = none,
color = brown,
domain = -390:390
] {0.67 * x - 0.01700301975351804};
\end{axis}
\end{tikzpicture}

Event Timeline