I am working on 2nd order systems with overthrow. How to draw the following arrows as I have poorly put in this example using Paint? 
\begin{center}
\begin{tikzpicture}
\begin{axis}
[
axis line style={shorten >=-10pt, shorten <=-10pt},
axis y line=center,
axis x line=middle,
no markers,
ytick={1.6 ,1.85},
yticklabels={$s(\infty)$, Consigne},
xtick={1.631},
xticklabels={$t_m$},
xlabel style={
anchor=west,
at={(ticklabel* cs:1.0)},
xshift=10pt
},
ylabel style={
anchor=south,
at={(ticklabel* cs:1.0)},
yshift=10pt
},
xlabel=$t$,ylabel=$s(t)$,
]
\addplot+[blue, thick, domain=0:20, samples=250] {1.6-1.6*sin(x/0.01745+90)*2.718^(-0.25*x)};
\addplot+[dashed] coordinates{(0,1.6) (20,1.6)};
\addplot+[dashed] coordinates{(0,1.85) (20,1.85)};
\addplot+[dashed] coordinates{(1.631,0) (1.631,1.6)};
\end{axis}
\end{tikzpicture}
\end{center}
