fix add_electricity mistake

This commit is contained in:
virio-andreyana 2023-05-11 20:59:37 +02:00 committed by GitHub
parent 1758076815
commit aa50ea44cc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -274,13 +274,13 @@ rule add_electricity:
output: output:
RESOURCES + "networks/elec.nc", RESOURCES + "networks/elec.nc",
params: params:
costs=snakemake.config["costs"] costs=snakemake.config["costs"],
electricity=snakemake.config["electricity"] electricity=snakemake.config["electricity"],
renewable=snakemake.config["renewable"] renewable=snakemake.config["renewable"],
conventional=snakemake.config.get("conventional", {}) conventional=snakemake.config.get("conventional", {}),
countries=snakemake.config["countries"] countries=snakemake.config["countries"],
scaling_factor=snakemake.config["load"]["scaling_factor"] scaling_factor=snakemake.config["load"]["scaling_factor"],
length_factor=snakemake.config["lines"]["length_factor"] length_factor=snakemake.config["lines"]["length_factor"],
log: log:
LOGS + "add_electricity.log", LOGS + "add_electricity.log",
benchmark: benchmark: