rename build_load_data to build_electricity_demand

Signed-off-by: Ahmad <ahmedwahid16101@gmail.com>
This commit is contained in:
Ahmad 2023-04-11 23:39:35 +02:00
parent 6e7d0c5440
commit 9f641b4b24
No known key found for this signature in database
GPG Key ID: 9C0DE32D8A416EBF
2 changed files with 3 additions and 3 deletions

View File

@ -18,19 +18,19 @@ if config["enable"].get("prepare_links_p_nom", False):
"../scripts/prepare_links_p_nom.py"
rule build_load_data:
rule build_electricity_demand:
input:
ancient("data/load_raw.csv"),
output:
RESOURCES + "load.csv",
log:
LOGS + "build_load_data.log",
LOGS + "build_electricity_demand.log",
resources:
mem_mb=5000,
conda:
"../envs/environment.yaml"
script:
"../scripts/build_load_data.py"
"../scripts/build_electricity_demand.py"
rule build_powerplants: