|
7 | 7 | "# Basic usage\n", |
8 | 8 | "\n", |
9 | 9 | "This example shows you the basic usage of the windpowerlib. \n", |
10 | | - "There are mainly three steps. First you have to import your weather data, then you need to specify your wind turbine, and in the last step call the windpowerlib functions to calculate the feedin timeseries.\n", |
| 10 | + "There are mainly three steps. First you have to import your weather data, then you need to specify your wind turbine, and in the last step call the windpowerlib functions to calculate the feedin time series.\n", |
11 | 11 | "\n", |
12 | 12 | "Before you start you have to import the packages needed for these steps." |
13 | 13 | ] |
|
59 | 59 | "source": [ |
60 | 60 | "### Import weather data\n", |
61 | 61 | "\n", |
62 | | - "In order to use the windpowerlib you need to at least provide wind speed data for the time frame you want to analyse.\n", |
| 62 | + "In order to use the windpowerlib you need to at least provide wind speed data for the time frame you want to analyze.\n", |
63 | 63 | "The function below imports example weather data from the weather.csv file provided along with the windpowerlib. The data include wind speed at two different heights in m/s, air temperature in two different heights in K, surface roughness length in m and air pressure in Pa.\n", |
64 | 64 | "\n", |
65 | 65 | "To find out which weather data in which units need to be provided to use the ModelChain or other functions of the windpowerlib see the individual function documentation." |
|
266 | 266 | "# initialize ModelChain with default parameters and use run_model\n", |
267 | 267 | "# method to calculate power output\n", |
268 | 268 | "mc_my_turbine = ModelChain(my_turbine).run_model(weather)\n", |
269 | | - "# write power output timeseries to WindTurbine object\n", |
| 269 | + "# write power output time series to WindTurbine object\n", |
270 | 270 | "my_turbine.power_output = mc_my_turbine.power_output" |
271 | 271 | ] |
272 | 272 | }, |
|
307 | 307 | "# calculate power output\n", |
308 | 308 | "mc_e126 = ModelChain(e126, **modelchain_data).run_model(\n", |
309 | 309 | " weather)\n", |
310 | | - "# write power output timeseries to WindTurbine object\n", |
| 310 | + "# write power output time series to WindTurbine object\n", |
311 | 311 | "e126.power_output = mc_e126.power_output" |
312 | 312 | ] |
313 | 313 | }, |
|
0 commit comments