windpowerlib.wind_turbine.get_turbine_types

windpowerlib.wind_turbine.get_turbine_types(print_out=True, **kwargs)[source]

Get the names of all possible wind turbine types for which the power coefficient curve or power curve is provided in the data files in the directory windpowerlib/data.

Parameters:print_out (boolean) – Directly prints the list of types if set to True. Default: True.

Examples

>>> from windpowerlib import wind_turbine
>>> turbines = wind_turbine.get_turbine_types(print_out=False)
>>> print(turbines[turbines["turbine_id"].str.contains("ENERCON")].iloc[0])
turbine_id    ENERCON E 101 3000
p_nom                    3000000
Name: 25, dtype: object