We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b628fcc commit af46f83Copy full SHA for af46f83
example/modelchain_example.ipynb
@@ -284,12 +284,13 @@
284
"source": [
285
"# specification of wind turbine where power coefficient curve is provided\n",
286
"# by a csv file\n",
287
+ "csv_file = '../example/data/example_power_coefficient_curves.csv'\n",
288
"dummy_turbine = {\n",
289
" 'name': 'DUMMY 1', # turbine type as in file #\n",
290
" 'hub_height': 100, # in m\n",
291
" 'rotor_diameter': 70, # in m\n",
292
" 'fetch_curve': 'power_coefficient_curve', # fetch cp curve #\n",
- " 'data_source': 'example_power_coefficient_curves.csv' # data source\n",
293
+ " 'data_source': csv_file # data source\n",
294
"}\n",
295
"# initialize WindTurbine object\n",
296
"dummy_turbine = WindTurbine(**dummy_turbine)"
0 commit comments