I'm looking for the simplest function that can model this graph:

The source is predicted speed figure by age. I've tried wolfram alpha for polynomial interpolation:
InterpolatingPolynomial[{{2, 45}, {3, 60}, {4, 70}, {5, 70}, {6, 69}, {7, 67}}, x]
And excel trend charts, both being unsatisfactory. Specifically the 'kinks' that come from polynomials. It feels like a composition of log/exponential functions however I'm not familiar with using non-linear regression (attempting to use R).
Log gamma is the closest I've found so far - is there a simpler function that could match?



According to the paper you've cited, the graph displays the fit for a four-parameter model consisting of two parabolas joined at their peak. The parameters are the height $H$ of the peak, the leading coefficients $a$, $b$, of the parabolas, and the $x$-value $\delta$ where the parabolas are glued together: $$ f(x)=\begin{cases} H - a(x-\delta)^2&\text{if $x\le\delta$}\\ H - b(x-\delta)^2&\text{if $x>\delta$} \end{cases} $$ Here's an implementation in R. The starting parameter values were obtained by eyeballing the graph.
with result: