I have a fully rectified sinusoidal wave that I am trying to place a sawtooth wave form on top of as the image bellow,

I originally had a messy solution but it was not very good, I have a tex sine wave im trying to place it on bellow.
\documentclass[border=5mm]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
domain=0:1.5*360,
samples=4*360,
xtick=\empty,
width=10cm, height=4cm,
ymin=0,
enlarge x limits=false
]
\addplot [densely dashed] {abs(sin(x))};
\end{axis}
\end{tikzpicture}
\end{document}

