2023-03-06 08:27:45 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2024-02-19 15:21:48 +00:00
|
|
|
# SPDX-FileCopyrightText: : 2020-2024 The PyPSA-Eur Authors
|
2023-03-06 17:49:23 +00:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: MIT
|
2022-04-03 16:49:35 +00:00
|
|
|
"""
|
2023-03-09 11:45:43 +00:00
|
|
|
Distribute country-level energy demands by population.
|
2022-04-03 16:49:35 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
import pandas as pd
|
2024-02-12 10:53:20 +00:00
|
|
|
from _helpers import set_scenario_config
|
2022-04-03 16:49:35 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
if "snakemake" not in globals():
|
2023-03-06 18:09:45 +00:00
|
|
|
from _helpers import mock_snakemake
|
2023-03-06 08:27:45 +00:00
|
|
|
|
2022-04-03 16:49:35 +00:00
|
|
|
snakemake = mock_snakemake(
|
2022-05-02 16:19:59 +00:00
|
|
|
"build_population_weighted_energy_totals",
|
2024-03-14 15:48:32 +00:00
|
|
|
kind="heat",
|
2024-03-14 13:31:18 +00:00
|
|
|
clusters=60,
|
2022-04-03 16:49:35 +00:00
|
|
|
)
|
2024-02-12 10:53:20 +00:00
|
|
|
set_scenario_config(snakemake)
|
2022-04-03 16:49:35 +00:00
|
|
|
|
2022-07-25 12:35:54 +00:00
|
|
|
config = snakemake.config["energy"]
|
2024-03-04 17:24:01 +00:00
|
|
|
|
|
|
|
if snakemake.wildcards.kind == "heat":
|
2024-03-14 17:52:59 +00:00
|
|
|
years = pd.date_range(freq="h", **snakemake.params.snapshots).year.unique()
|
2024-03-04 17:24:01 +00:00
|
|
|
assert len(years) == 1, "Currently only works for single year."
|
|
|
|
data_year = years[0]
|
|
|
|
else:
|
|
|
|
data_year = int(config["energy_totals_year"])
|
2022-07-25 12:35:54 +00:00
|
|
|
|
2022-04-03 16:49:35 +00:00
|
|
|
pop_layout = pd.read_csv(snakemake.input.clustered_pop_layout, index_col=0)
|
|
|
|
|
2024-02-29 10:38:21 +00:00
|
|
|
totals = pd.read_csv(snakemake.input.energy_totals, index_col=[0, 1])
|
2022-07-25 12:35:54 +00:00
|
|
|
totals = totals.xs(data_year, level="year")
|
2022-04-03 16:49:35 +00:00
|
|
|
|
2022-07-25 12:35:54 +00:00
|
|
|
nodal_totals = totals.loc[pop_layout.ct].fillna(0.0)
|
|
|
|
nodal_totals.index = pop_layout.index
|
|
|
|
nodal_totals = nodal_totals.multiply(pop_layout.fraction, axis=0)
|
2022-04-03 16:49:35 +00:00
|
|
|
|
2022-07-25 12:35:54 +00:00
|
|
|
nodal_totals.to_csv(snakemake.output[0])
|