pypsa-eur/rules/collect.smk
Fabian Neumann e16fa286ec merge master
2023-04-29 12:41:37 +02:00

82 lines
1.8 KiB
Plaintext

# SPDX-FileCopyrightText: : 2023 The PyPSA-Eur Authors
#
# SPDX-License-Identifier: MIT
localrules:
all,
cluster_networks,
extra_components_networks,
prepare_elec_networks,
prepare_sector_networks,
solve_elec_networks,
solve_sector_networks,
plot_networks,
rule all:
input:
RESULTS + "graphs/costs.pdf",
default_target: True
rule cluster_networks:
input:
expand(
RESOURCES + "networks/elec{weather_year}_s{simpl}_{clusters}.nc",
**config["scenario"]
),
rule extra_components_networks:
input:
expand(
RESOURCES + "networks/elec{weather_year}_s{simpl}_{clusters}_ec.nc",
**config["scenario"]
),
rule prepare_elec_networks:
input:
expand(
RESOURCES
+ "networks/elec{weather_year}_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc",
**config["scenario"]
),
rule prepare_sector_networks:
input:
expand(
RESULTS
+ "prenetworks/elec{weather_year}_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc",
**config["scenario"]
),
rule solve_elec_networks:
input:
expand(
RESULTS
+ "networks/elec{weather_year}_s{simpl}_{clusters}_ec_l{ll}_{opts}.nc",
**config["scenario"]
),
rule solve_sector_networks:
input:
expand(
RESULTS
+ "postnetworks/elec{weather_year}_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc",
**config["scenario"]
),
rule plot_networks:
input:
expand(
RESULTS
+ "maps/elec{weather_year}_s{simpl}_{clusters}_l{ll}_{opts}_{sector_opts}-costs-all_{planning_horizons}.pdf",
**config["scenario"]
),