Skip to content

Commit

Permalink
double solar rooftop PV potentials (closes #935)
Browse files Browse the repository at this point in the history
  • Loading branch information
fneum committed May 15, 2024
1 parent e4d70fd commit 27009f5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions doc/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ Release Notes
Upcoming Release
================

* Doubled solar rooftop potentials to roughly 1 TW for Europe based on `recent
European Commission reports
<https://www.epj-pv.org/articles/epjpv/full_html/2024/01/pv230071/pv230071.html>`_.

* Remove exogenously set share of rooftop PV (``costs: rooftop_share:``).
Rooftop and utility-scale PV are now largely handled as separate technologies
with endogenous shares.
Expand Down
6 changes: 3 additions & 3 deletions scripts/prepare_sector_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -1024,9 +1024,9 @@ def insert_electricity_distribution_grid(n, costs):
else:
pop_solar = pop_layout.total.rename(index=lambda x: x + " solar")

# add max solar rooftop potential assuming 0.1 kW/m2 and 10 m2/person,
# i.e. 1 kW/person (population data is in thousands of people) so we get MW
potential = 0.1 * 10 * pop_solar
# add max solar rooftop potential assuming 0.1 kW/m2 and 20 m2/person,
# i.e. 2 kW/person (population data is in thousands of people) so we get MW
potential = 0.1 * 20 * pop_solar

n.madd(
"Generator",
Expand Down

0 comments on commit 27009f5

Please sign in to comment.