Wondering how I could draw the deflection curve underneath a simply supported beam in dashed lines with the y = ? label as shown:

I am using the structuralanalysis package. Below is the code I've created so far:
\documentclass[11 pt]{article}
\usepackage[english]{babel}
\usepackage[latin1]{inputenc}
\usepackage{ae,aecompl}
\usepackage[automark]{scrpage2}
\usepackage[pdftex]{graphicx}
\usepackage[margin=0.99in]{geometry}
\usepackage{xcolor}
\usepackage{listings}
\usepackage{structuralanalysis}
\usepackage{siunitx}
\begin{document}
\begin{center}
\begin{tikzpicture}
\draw[help lines, step =.45]
(0,-3.95) grid(9.115,3.325);
\scaling{.45};
\point{a}{0}{0};
\support{2}{a};
\point{b}{20}{0};
\support{2}{b};
\beam{2}{a}{b}[0][20];
\notation{5}{a}{b}[$\text{w}_{\text{f}} = 19.2 \ \text{kN/m}$][.5][above =
15.5 mm];
\lineload{2}{a}{b}[1.20][1.20][0.0625];
\dimensioning{1}{a}{b}{ -1.125}[\textbf{$\ell = $}];
\notation{1}{a}{Gridline 4}[left = 2.5 mm];
\notation{1}{b}{Gridline 6}[right = 2.5 mm];
\end{tikzpicture}
\end{center}
\end{document}
Any help or hint is appreciated.


\documentclassand end with\end{document}In it is important preamble. It should contain only necessary stuff for your image. – Zarko Oct 04 '19 at 18:56