add air-sourced heat pumps to rural areas
This commit is contained in:
parent
9f0555863b
commit
2d12f7ddd0
@ -28,6 +28,8 @@ Upcoming Release
|
|||||||
|
|
||||||
* Cluster residential and services heat buses by default. Can be disabled with ``cluster_heat_buses: false``.
|
* Cluster residential and services heat buses by default. Can be disabled with ``cluster_heat_buses: false``.
|
||||||
|
|
||||||
|
* Air-sourced heat pumps can now also be built in rural areas. Previously, only
|
||||||
|
ground-sourced heat pumps were considered for this category.
|
||||||
|
|
||||||
PyPSA-Eur 0.9.0 (5th January 2024)
|
PyPSA-Eur 0.9.0 (5th January 2024)
|
||||||
==================================
|
==================================
|
||||||
|
@ -1803,7 +1803,9 @@ def add_heat(n, costs):
|
|||||||
|
|
||||||
## Add heat pumps
|
## Add heat pumps
|
||||||
|
|
||||||
heat_pump_type = "air" if "urban" in name else "ground"
|
heat_pump_types = ["air"] if "urban" in name else ["ground", "air"]
|
||||||
|
|
||||||
|
for heat_pump_type in heat_pump_types:
|
||||||
|
|
||||||
costs_name = f"{name_type} {heat_pump_type}-sourced heat pump"
|
costs_name = f"{name_type} {heat_pump_type}-sourced heat pump"
|
||||||
efficiency = (
|
efficiency = (
|
||||||
|
Loading…
Reference in New Issue
Block a user