Skip to content

Commit 25dce1a

Browse files
committed
no limits on electricity imports for now
1 parent f2bed55 commit 25dce1a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

scripts/pypsa-de/additional_functionality.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -900,9 +900,11 @@ def additional_functionality(n, snapshots, snakemake):
900900
if snakemake.wildcards.clusters != "1":
901901
h2_import_limits(n, investment_year, constraints["limits_volume_max"])
902902

903-
electricity_import_limits(
904-
n, investment_year, constraints["limits_volume_max"]
905-
)
903+
# deactivate elec import limit since it may lead to strange flows
904+
# TODO evaluate if this is necessary
905+
# electricity_import_limits(
906+
# n, investment_year, constraints["limits_volume_max"]
907+
# )
906908

907909
if investment_year >= 2025:
908910
h2_production_limits(

0 commit comments

Comments
 (0)