windpowerlib.wind_turbine.get_turbine_data_from_oedb

windpowerlib.wind_turbine.get_turbine_data_from_oedb(turbine_type, fetch_curve)[source]

Gets turbine data from the OpenEnergy Database (oedb).

Parameters:
  • turbine_type (string) – Specifies the turbine type data is fetched for. Use get_turbine_types() to see a table of all wind turbines for which power (coefficient) curve data is provided.
  • fetch_curve (string) – Parameter to specify whether a power or power coefficient curve should be retrieved from the provided turbine data. Valid options are ‘power_curve’ and ‘power_coefficient_curve’. Default: None.
Returns:

Power curve or power coefficient curve (pandas.DataFrame) and nominal power (float). Power (coefficient) curve DataFrame contains power coefficient curve values (dimensionless) or power curve values in W with the corresponding wind speeds in m/s.

Return type:

Tuple (pandas.DataFrame, float)