Skip to content

Commit

Permalink
Factor of 4 based on 4MW turbine size added
Browse files Browse the repository at this point in the history
  • Loading branch information
alycialeonard committed Sep 2, 2024
1 parent 2f82784 commit bc06bcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions optimize_ammonia_plant.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def optimize_ammonia_plant(wind_potential, pv_potential, demand_profile,
optimize_ammonia_plant(wind_profile.sel(hexagon=hexagon, time=ammonia_demand_trucking.index),
pv_profile.sel(hexagon=hexagon, time=ammonia_demand_trucking.index),
ammonia_demand_trucking,
hexagons.loc[hexagon, 'theo_turbines'],
hexagons.loc[hexagon, 'theo_turbines']*4, # using 4MW turbines
hexagons.loc[hexagon, 'theo_pv'],
country_series,
# water_limit = hexagons.loc[hexagon,'delta_water_m3']
Expand Down Expand Up @@ -333,7 +333,7 @@ def optimize_ammonia_plant(wind_potential, pv_potential, demand_profile,
optimize_ammonia_plant(wind_profile.sel(hexagon=hexagon, time=ammonia_demand_pipeline.index),
pv_profile.sel(hexagon=hexagon, time=ammonia_demand_pipeline.index),
ammonia_demand_pipeline,
hexagons.loc[hexagon, 'theo_turbines'],
hexagons.loc[hexagon, 'theo_turbines']*4, # using 4 MW turbines
hexagons.loc[hexagon, 'theo_pv'],
country_series,
# water_limit = hexagons.loc[hexagon,'delta_water_m3'],
Expand Down

0 comments on commit bc06bcb

Please sign in to comment.