I have a curve that looks like this.

Acceleration v Velocity
I am trying to figure out a function I can use to fit to this curve. I have tried using a curve of the form $Ax^2 + Bx + C$ and while that does a good job of fitting the points it does not go through the origin. I am trying to construct a function of some sort that fits the points in the image and also goes through or is as close to the origin as possible.
I'd really appreciate some guidance!

We observe that the function is on the power kind for small $x$ :
This draw us to look for a function of this kind : $$y(x)=x^p f(x)$$ With $p\simeq 0.4$ :
The curve $f(x)$ appears like a piecewise linear function :
$$f(x)\simeq c+(ax+b)\text{H}(x-r)$$ H is the Heaviside step function.
In order to have a smooth transition between the two linear functions one can replace the Heaviside function by an approximate function of the logistic kind. $$H(X)\simeq \frac{1}{1+e^{-q\,X}}$$ So, the function considered is : $$y(x)=x^p\left(\frac{ax+b}{1+e^{-q\,(x-r)}}+c \right)$$
Then the parameters are computed thanks to non-linear regression :