Files
drammeasure-paper/plots/onur.tex
2025-03-24 20:58:27 +00:00

123 lines
3.5 KiB
TeX

\begin{tikzpicture}
\begin{axis}[
xmode=log,
ymode=log,
xlabel={Retention Time [\unit{\milli\second}]},
ylabel={Retention Error Rate},
xmin=1000, xmax=400000,
ymin=1e-11, ymax=1,
legend pos=north east,
legend style={font=\footnotesize, draw=none, fill=none},
legend cell align={left},
width=1.0\linewidth,
height=7.0cm,
yticklabel style={
/pgf/number format/fixed,
/pgf/number format/precision=5
},
scaled y ticks=false,
xticklabel style={
/pgf/number format/fixed,
/pgf/number format/precision=5
},
scaled x ticks=false
]
% 45*C
% Mutlu Vendor A (X)
\addplot[smooth, very thick, color=orange, dashed]
coordinates {
(2048 , 1.00E-06)
(4096 , 2.50E-05)
(8192 , 1.75E-04)
};
% Mutlu Vendor B (Y)
\addplot[smooth, very thick, color=green, dashed]
coordinates {
(2048 , 5.00E-07)
(4096 , 1.00E-05)
(8192 , 6.80E-05)
};
% Mutlu Vendor C (Z)
\addplot[smooth, very thick, color=blue, dashed]
coordinates {
(2048 , 5.00E-07)
(4096 , 1.00E-05)
(8192 , 8.00E-05)
};
%
%%%%%%%%%%%%%%%%%%%%%
% 60 Grad Micron
\addplot[smooth, very thick, color=blue]
coordinates {
(512, 0)
(1024, 7.10E-08 )
(2048, 1.04E-05 )
(4096, 4.65E-04 )
(8192, 8.72E-03 )
(16384, 2.98E-02 )
(32768, 6.45E-02 )
(65536, 1.02E-01 )
};
% 60 Grad Micron
\addplot[smooth, very thick, color=green]
coordinates {
(512, 0)
(1024, 3.63E-08)
(2048, 3.03E-06)
(4096, 8.21E-05)
(8192, 6.88E-04)
(16384, 3.47E-03)
(32768, 9.18E-03)
(65536, 1.81E-02)
};
% 60 Grad Hynix
\addplot[smooth, very thick, color=orange]
coordinates {
(512, 2.56E-10)
(1024, 3.02E-07)
(2048, 4.21E-05)
(4096, 9.96E-04)
(8192, 5.67E-03)
(16384, 1.69E-02)
(32768, 3.08E-02)
(65536, 4.71E-02)
};
%%%%%%%%%%%%%%%%%%%%%
% 30 Grad Micron
\addplot[smooth, very thick, color=blue, dotted]
coordinates {
(16384, 5.65E-09)
(32768, 1.10E-06)
(65536, 7.05E-05)
};
% 30 Grad Samsung
\addplot[smooth, very thick, color=green, dotted]
coordinates {
(8192, 1.16E-10)
(16384, 1.23E-08)
(32768, 6.85E-07)
(65536, 1.82E-05)
};
% 30 Grad Hynix
\addplot[smooth, very thick, color=orange, dotted]
coordinates {
(16384, 4.18E-09)
(32768, 1.13E-06)
(65536, 8.12E-05)
};
\legend{
Vendor-X~\qty{45}{\celsius}~\cite{patkim_17},
Vendor-Y~\qty{45}{\celsius}~\cite{patkim_17},
Vendor-Z~\qty{45}{\celsius}~\cite{patkim_17},
Vendor-A~\qty{60}{\celsius}~[this work],
Vendor-B~\qty{60}{\celsius}~[this work],
Vendor-C~\qty{60}{\celsius}~[this work],
Vendor-A~\qty{30}{\celsius}~[this work],
Vendor-B~\qty{30}{\celsius}~[this work],
Vendor-C~\qty{30}{\celsius}~[this work]
}
\end{axis}
\end{tikzpicture}