Page MenuHomec4science

Si_VI.tex
No OneTemporary

File Metadata

Created
Wed, Jan 29, 22:28

Si_VI.tex

\begin{tikzpicture}
\pgfplotsset
{
%scale only axis,
%scaled x ticks = base 10:2,
%height = 18cm,
width = 10cm,
xlabel={$I$ [\si{\milli\ampere}]},
xmin = -1.03, xmax = 1.03,
%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{rawdata/Si1mum_VI.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{$1$ \si{\micro\metre}}
\pgfplotstableread{rawdata/Si2mum_VI.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{$2$ \si{\micro\metre}}
\addplot
[
mark = none,
color = red,
domain = -1.03:1.03
] {0.7927918562652411 * x - 9.974909156530709e-08};
\addplot
[
mark = none,
color = brown,
domain = -1.03:1.03
] {0.235706619590954 * x - 2.3683368611373753e-7};
\end{axis}
\end{tikzpicture}

Event Timeline