Update on Overleaf.

This commit is contained in:
2024-04-26 08:40:44 +00:00
committed by node
commit b0c1af96ea
23 changed files with 163444 additions and 0 deletions

96
result2.tex Normal file
View File

@@ -0,0 +1,96 @@
\begin{tikzpicture}
\begin{axis}[
xmode=log,
xmin=1, xmax=2500,
ymin=50, ymax=110,
ylabel={SPFM and LFM [\%]},
xlabel={$\lambda_\mathrm{DRAM}$ [FIT]},
width=\linewidth,
height=8.25cm,
]
% LPDDR5 SPFM
\addplot[smooth,color=red, very thick]
coordinates {
(1, 81.1966)
(2, 81.1966)
(5, 81.1966)
(10, 81.1966)
(25, 81.1966)
(50, 81.1966)
(100, 81.1966)
(500, 81.1966)
(1000, 81.1966)
(2000, 81.1966)
(2500, 81.1966)
};
% LPDDR5 LFM
\addplot[smooth,color=blue, very thick]
coordinates {
(1, 63.9901)
(2, 76.3059)
(5, 83.6954)
(10, 86.1586)
(25, 87.6365)
(50, 88.1291)
(100, 88.3754)
(500, 88.5725)
(1000, 88.5971)
(2000, 88.6094)
(2500, 88.6119)
};
\legend{
SPFM,
LFM
}
\addplot[smooth,color=red!30]
coordinates {
(1, 90)
(2500, 90)
};
\addplot[smooth,color=red!30, style=dashed]
coordinates {
(1, 97)
(2500, 97)
};
\addplot[smooth,color=red!30, style=dashed]
coordinates {
(1, 99)
(2500, 99)
};
\addplot[smooth,color=blue!30, style=dashed]
coordinates {
(1, 90)
(2500, 90)
};
\addplot[smooth,color=blue!30, style=dashed]
coordinates {
(1, 80)
(2500, 80)
};
\addplot[smooth,color=blue!30, style=dashed]
coordinates {
(1, 60)
(2500, 60)
};
\node[color=blue!30] at (axis cs: 600,92) {\scriptsize ASIL\,D (LFM $> 90\%$)};
\node[color=blue!30] at (axis cs: 600,82) {\scriptsize ASIL\,C (LFM $> 80\%$)};
\node[color=blue!30] at (axis cs: 600,62) {\scriptsize ASIL\,B (LFM $> 60\%$)};
\node[color=red!30] at (axis cs: 4,92) {\scriptsize ASIL\,B (SPFM $>90\%$)};
\node[color=red!30] at (axis cs: 15.8,102) {\scriptsize ASIL\,C (SPFM $>97\%$), ASIL-D (SPFM $>99\%$)};
\addplot[thick, samples=50, smooth, blue!30, dashed] coordinates {(3,50)(3,80)};
\end{axis}
\end{tikzpicture}