A fairly general sigmoid curve can be expressed with four parameters: ymin, ymax, x0, and slope (dy/dx) at x0. The wikipedia article Sigmoid Function has equations for various sigmoid functions. It has a nice plot comparing different functions. The functions in the wikipedia image all have ymin=-1, ymax=+1, x0=0, and slope=1 at x=0. The image shows that different sigmoid funcitons with the same central slope, and the same upper and lower limits (ymin and ymax) differ in how rapidly they approach the asymptotes. Therefore you can try the different functions and select the one whose results you like. I do not really understand what you mean by a "nicer curve". You said it "needs to increase a bit faster", etc. When you say "it needs to...", do you means based on the eye-test of what looks good, or some quantifiable goodness of fit criterion? I do not know what you mean by the "parabolic" and "exponential" parts of the curve. Perhaps you mean the left side and the ridght side? Or the middle versus the outpr parts? Typical sigmoid curves are symmetrical about the center.
The equations given for sigmoid functions in the wikipedia article all are centered at x=0. Replace "x" with "(x-x0)" in the wikipedia equations, and set x0 as you wish, to get sigmoid curves that are centered at x=x0.
The hyperbolic tangent funciton is just a shifted and scaled version of the logistic function, so it has the exact same shape as the logistic function, when the parameters are adjusted appropriately. The hyperbolic tangent function is
Replace x with x-x0 to shift the curve horizontally, and add a vertical shift and scale, as you wish. I notice that your logistic function has ymin=0, which is a sensible choice for the number of EVs in a coutry at early times. To shift the hyperbolic tangent function so that it has ymin=0, do this:
In the equation above, k determines the slope at the center. The center is at x=x0. The max value is ymax. You can show with a bit of algebra that the equation above is eqivalent to a logistic function. Notice that the immediately preceding equation has 3 adjustable parameters: ymax, k, and x0. I said earlier that a general sigmoid function has 4 adjustable parameters. The equation above has only three, because we fixed ymin at 0, thus eliminating one adjustable parameter.
Good luck with your work.