013b705ee4
* Cluster first: build renewable profiles and add all assets after clustering * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * correction: pass landfall_lengths through functions * assign landfall_lenghts correctly * remove parameter add_land_use_constraint * fix network_dict * calculate distance to shoreline, remove underwater_fraction * adjust simplification parameter to exclude Crete from offshore wind connections * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * remove unused geth2015 hydro capacities * removing remaining traces of {simpl} wildcard * add release notes and update workflow graphics * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: lisazeyen <lisa.zeyen@web.de>
277 lines
9.3 KiB
Plaintext
277 lines
9.3 KiB
Plaintext
# SPDX-FileCopyrightText: : 2023-2024 The PyPSA-Eur Authors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
|
if config["foresight"] != "perfect":
|
|
|
|
rule plot_power_network_clustered:
|
|
params:
|
|
plotting=config_provider("plotting"),
|
|
input:
|
|
network=resources("networks/base_s_{clusters}.nc"),
|
|
regions_onshore=resources("regions_onshore_base_s_{clusters}.geojson"),
|
|
output:
|
|
map=resources("maps/power-network-s-{clusters}.pdf"),
|
|
threads: 1
|
|
resources:
|
|
mem_mb=4000,
|
|
benchmark:
|
|
benchmarks("plot_power_network_clustered/base_s_{clusters}")
|
|
conda:
|
|
"../envs/environment.yaml"
|
|
script:
|
|
"../scripts/plot_power_network_clustered.py"
|
|
|
|
rule plot_power_network:
|
|
params:
|
|
plotting=config_provider("plotting"),
|
|
input:
|
|
network=RESULTS
|
|
+ "postnetworks/base_s_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc",
|
|
regions=resources("regions_onshore_base_s_{clusters}.geojson"),
|
|
output:
|
|
map=RESULTS
|
|
+ "maps/base_s_{clusters}_l{ll}_{opts}_{sector_opts}-costs-all_{planning_horizons}.pdf",
|
|
threads: 2
|
|
resources:
|
|
mem_mb=10000,
|
|
log:
|
|
RESULTS
|
|
+ "logs/plot_power_network/base_s_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.log",
|
|
benchmark:
|
|
(
|
|
RESULTS
|
|
+ "benchmarks/plot_power_network/base_s_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}"
|
|
)
|
|
conda:
|
|
"../envs/environment.yaml"
|
|
script:
|
|
"../scripts/plot_power_network.py"
|
|
|
|
rule plot_hydrogen_network:
|
|
params:
|
|
plotting=config_provider("plotting"),
|
|
foresight=config_provider("foresight"),
|
|
input:
|
|
network=RESULTS
|
|
+ "postnetworks/base_s_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc",
|
|
regions=resources("regions_onshore_base_s_{clusters}.geojson"),
|
|
output:
|
|
map=RESULTS
|
|
+ "maps/base_s_{clusters}_l{ll}_{opts}_{sector_opts}-h2_network_{planning_horizons}.pdf",
|
|
threads: 2
|
|
resources:
|
|
mem_mb=10000,
|
|
log:
|
|
RESULTS
|
|
+ "logs/plot_hydrogen_network/base_s_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.log",
|
|
benchmark:
|
|
(
|
|
RESULTS
|
|
+ "benchmarks/plot_hydrogen_network/base_s_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}"
|
|
)
|
|
conda:
|
|
"../envs/environment.yaml"
|
|
script:
|
|
"../scripts/plot_hydrogen_network.py"
|
|
|
|
rule plot_gas_network:
|
|
params:
|
|
plotting=config_provider("plotting"),
|
|
input:
|
|
network=RESULTS
|
|
+ "postnetworks/base_s_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc",
|
|
regions=resources("regions_onshore_base_s_{clusters}.geojson"),
|
|
output:
|
|
map=RESULTS
|
|
+ "maps/base_s_{clusters}_l{ll}_{opts}_{sector_opts}-ch4_network_{planning_horizons}.pdf",
|
|
threads: 2
|
|
resources:
|
|
mem_mb=10000,
|
|
log:
|
|
RESULTS
|
|
+ "logs/plot_gas_network/base_s_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.log",
|
|
benchmark:
|
|
(
|
|
RESULTS
|
|
+ "benchmarks/plot_gas_network/base_s_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}"
|
|
)
|
|
conda:
|
|
"../envs/environment.yaml"
|
|
script:
|
|
"../scripts/plot_gas_network.py"
|
|
|
|
|
|
if config["foresight"] == "perfect":
|
|
|
|
def output_map_year(w):
|
|
return {
|
|
f"map_{year}": RESULTS
|
|
+ "maps/base_s_{clusters}_l{ll}_{opts}_{sector_opts}-costs-all_"
|
|
+ f"{year}.pdf"
|
|
for year in config_provider("scenario", "planning_horizons")(w)
|
|
}
|
|
|
|
rule plot_power_network_perfect:
|
|
params:
|
|
plotting=config_provider("plotting"),
|
|
input:
|
|
network=RESULTS
|
|
+ "postnetworks/base_s_{clusters}_l{ll}_{opts}_{sector_opts}_brownfield_all_years.nc",
|
|
regions=resources("regions_onshore_base_s_{clusters}.geojson"),
|
|
output:
|
|
unpack(output_map_year),
|
|
threads: 2
|
|
resources:
|
|
mem_mb=10000,
|
|
conda:
|
|
"../envs/environment.yaml"
|
|
script:
|
|
"../scripts/plot_power_network_perfect.py"
|
|
|
|
|
|
rule make_summary:
|
|
params:
|
|
foresight=config_provider("foresight"),
|
|
costs=config_provider("costs"),
|
|
snapshots=config_provider("snapshots"),
|
|
drop_leap_day=config_provider("enable", "drop_leap_day"),
|
|
scenario=config_provider("scenario"),
|
|
RDIR=RDIR,
|
|
input:
|
|
networks=expand(
|
|
RESULTS
|
|
+ "postnetworks/base_s_{clusters}_l{ll}_{opts}_{sector_opts}_{planning_horizons}.nc",
|
|
**config["scenario"],
|
|
allow_missing=True,
|
|
),
|
|
costs=lambda w: (
|
|
resources("costs_{}.csv".format(config_provider("costs", "year")(w)))
|
|
if config_provider("foresight")(w) == "overnight"
|
|
else resources(
|
|
"costs_{}.csv".format(
|
|
config_provider("scenario", "planning_horizons", 0)(w)
|
|
)
|
|
)
|
|
),
|
|
ac_plot=expand(
|
|
resources("maps/power-network-s-{clusters}.pdf"),
|
|
**config["scenario"],
|
|
allow_missing=True,
|
|
),
|
|
costs_plot=expand(
|
|
RESULTS
|
|
+ "maps/base_s_{clusters}_l{ll}_{opts}_{sector_opts}-costs-all_{planning_horizons}.pdf",
|
|
**config["scenario"],
|
|
allow_missing=True,
|
|
),
|
|
h2_plot=lambda w: expand(
|
|
(
|
|
RESULTS
|
|
+ "maps/base_s_{clusters}_l{ll}_{opts}_{sector_opts}-h2_network_{planning_horizons}.pdf"
|
|
if config_provider("sector", "H2_network")(w)
|
|
else []
|
|
),
|
|
**config["scenario"],
|
|
allow_missing=True,
|
|
),
|
|
ch4_plot=lambda w: expand(
|
|
(
|
|
RESULTS
|
|
+ "maps/base_s_{clusters}_l{ll}_{opts}_{sector_opts}-ch4_network_{planning_horizons}.pdf"
|
|
if config_provider("sector", "gas_network")(w)
|
|
else []
|
|
),
|
|
**config["scenario"],
|
|
allow_missing=True,
|
|
),
|
|
output:
|
|
nodal_costs=RESULTS + "csvs/nodal_costs.csv",
|
|
nodal_capacities=RESULTS + "csvs/nodal_capacities.csv",
|
|
nodal_cfs=RESULTS + "csvs/nodal_cfs.csv",
|
|
cfs=RESULTS + "csvs/cfs.csv",
|
|
costs=RESULTS + "csvs/costs.csv",
|
|
capacities=RESULTS + "csvs/capacities.csv",
|
|
curtailment=RESULTS + "csvs/curtailment.csv",
|
|
energy=RESULTS + "csvs/energy.csv",
|
|
supply=RESULTS + "csvs/supply.csv",
|
|
supply_energy=RESULTS + "csvs/supply_energy.csv",
|
|
nodal_supply_energy=RESULTS + "csvs/nodal_supply_energy.csv",
|
|
prices=RESULTS + "csvs/prices.csv",
|
|
weighted_prices=RESULTS + "csvs/weighted_prices.csv",
|
|
market_values=RESULTS + "csvs/market_values.csv",
|
|
price_statistics=RESULTS + "csvs/price_statistics.csv",
|
|
metrics=RESULTS + "csvs/metrics.csv",
|
|
threads: 2
|
|
resources:
|
|
mem_mb=10000,
|
|
log:
|
|
RESULTS + "logs/make_summary.log",
|
|
conda:
|
|
"../envs/environment.yaml"
|
|
script:
|
|
"../scripts/make_summary.py"
|
|
|
|
|
|
rule plot_summary:
|
|
params:
|
|
countries=config_provider("countries"),
|
|
planning_horizons=config_provider("scenario", "planning_horizons"),
|
|
emissions_scope=config_provider("energy", "emissions"),
|
|
plotting=config_provider("plotting"),
|
|
foresight=config_provider("foresight"),
|
|
co2_budget=config_provider("co2_budget"),
|
|
sector=config_provider("sector"),
|
|
RDIR=RDIR,
|
|
input:
|
|
costs=RESULTS + "csvs/costs.csv",
|
|
energy=RESULTS + "csvs/energy.csv",
|
|
balances=RESULTS + "csvs/supply_energy.csv",
|
|
eurostat="data/eurostat/Balances-April2023",
|
|
co2="data/bundle/eea/UNFCCC_v23.csv",
|
|
output:
|
|
costs=RESULTS + "graphs/costs.svg",
|
|
energy=RESULTS + "graphs/energy.svg",
|
|
balances=RESULTS + "graphs/balances-energy.svg",
|
|
threads: 2
|
|
resources:
|
|
mem_mb=10000,
|
|
log:
|
|
RESULTS + "logs/plot_summary.log",
|
|
conda:
|
|
"../envs/environment.yaml"
|
|
script:
|
|
"../scripts/plot_summary.py"
|
|
|
|
|
|
STATISTICS_BARPLOTS = [
|
|
"capacity_factor",
|
|
"installed_capacity",
|
|
"optimal_capacity",
|
|
"capital_expenditure",
|
|
"operational_expenditure",
|
|
"curtailment",
|
|
"supply",
|
|
"withdrawal",
|
|
"market_value",
|
|
]
|
|
|
|
|
|
rule plot_base_statistics:
|
|
params:
|
|
plotting=config_provider("plotting"),
|
|
barplots=STATISTICS_BARPLOTS,
|
|
input:
|
|
network=RESULTS + "networks/base_s_{clusters}_elec_l{ll}_{opts}.nc",
|
|
output:
|
|
**{
|
|
f"{plot}_bar": RESULTS
|
|
+ f"figures/statistics_{plot}_bar_base_s_{{clusters}}_elec_l{{ll}}_{{opts}}.pdf"
|
|
for plot in STATISTICS_BARPLOTS
|
|
},
|
|
barplots_touch=RESULTS
|
|
+ "figures/.statistics_plots_base_s_{clusters}_elec_l{ll}_{opts}",
|
|
script:
|
|
"../scripts/plot_statistics.py"
|