windpowerlib.tools.gauss_distribution¶
-
windpowerlib.tools.gauss_distribution(function_variable, standard_deviation, mean=0)[source]¶ Gauss distribution.
The Gauss distribution is used in the function
smooth_power_curve()for power curve smoothing.Parameters: Returns: Wind speed at hub height. Data type depends on the type of wind_speed.
Return type: pandas.Series or numpy.array
Notes
The following equation is used [1]:
![f(x)=\frac{1}{\sigma \sqrt{2 \pi}} \exp
\left[-\frac{(x-\mu)^2}{2 \sigma^2}\right]](../_images/math/1879fe4e629562f13a4b022e3d52d656fdc117db.png)
- with:
: standard deviation,
: mean
References
[1] Berendsen, H.: “A Student’s Guide to Data and Error Analysis”. New York, Cambridge University Press, 2011, p. 37