The intention of this repositiory is to provide power curves and key data for commonly used turbine models in industry the R&D community.
Tabular power (and thrust when available) curve data is stored in the following folders:
- Distributed Wind Turbines
- Offshore Wind Turbines
- Onshore Wind Turbines
Here you can find .csv files with the following turbine data:
- Power curve
- Thrust curve (when available)
- Cp curve (when available)
- Ct curve (when available)
Each turbine included in the repository is documented in detail: https://nrel.github.io/turbine-models/
The name of the turbine on the .csv file with tabular data should match up with a corresponding documentation page.
-
Using Git, navigate to a local target directory and clone repository:
git clone https://github.com/NREL/turbine-models.git
-
Navigate to
turbine-models
cd turbine-models
-
Create a new virtual environment and change to it. Using Conda and naming it
turb_lib
:conda create --name turb_lib python=3.11 -y conda activate turb_lib
-
Install turbine-models and its dependencies:
-
for general use:
pip install .
-
for general use and running examples:
pip install ".[examples]"
-
for development dependencies and running tests. Note the
-e
flag which installs turbine-models in-place so you can edit the turbine-models package files:pip install -e ".[develop]"
-
The Examples contain Python scripts for common usage scenarios.