I have the following plot:
It represents the production of electricity of a turbine as a function of flow.
I am trying to fit a curve to it. The best I got was:
Production = -1591.5 * Flow + 38141.6 * Flow/sqrt(Flow)
But the fit is not that good when I plot the fitted and the real values on the same plot, especially not for really small or big values of flows.
Can anyone recommend me a better way to fit my production ?
Here is the data:



If the function does indeed level out to a constant, then it looks like you have two decaying functions that are overlapping plus an additive constant. One of the functions decays more quickly, and one decays more slowly. For example:
$$ f(x)= C + \frac{A}{x} + \frac{B}{x^2} $$ Here's a plot of this function with $C = 1, B = -1, A = 3$.
$$ f(x) = C + A e^{-\alpha x} + B e^{-\beta x} $$ Here's a plot of this function with $C = 1, A = 3, B = -4, \alpha = 1, \beta = 2$.
Unfortunately, I was unable to to download your data into my preferred curve-fitting software, but hopefully you can figure out how to apply these functions on your own. Note that the second of these functions is not a "linear" regression, since the free parameters $\alpha$ and $\beta$ do not enter into the function linearly.