Skip to content

Commit

Permalink
Fixe example
Browse files Browse the repository at this point in the history
  • Loading branch information
uvchik committed Feb 13, 2020
1 parent e19d52b commit d5614d5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example/modelchain_example.py
Original file line number Diff line number Diff line change
Expand Up @@ -291,9 +291,9 @@ def run_example():
logging.getLogger().setLevel(logging.DEBUG)

weather = get_weather_data("weather.csv")
my_turbine, e126 = initialize_wind_turbines()
calculate_power_output(weather, my_turbine, e126)
plot_or_print(my_turbine, e126)
my_turbine, e126, dummy_turbine = initialize_wind_turbines()
calculate_power_output(weather, my_turbine, e126, dummy_turbine)
plot_or_print(my_turbine, e126, dummy_turbine)


if __name__ == "__main__":
Expand Down

0 comments on commit d5614d5

Please sign in to comment.