2024-02-19 15:21:48 +00:00
|
|
|
# SPDX-FileCopyrightText: : 2023-2024 The PyPSA-Eur Authors
|
2023-03-08 16:29:01 +00:00
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
|
2023-04-30 08:54:48 +00:00
|
|
|
|
2024-03-04 18:37:52 +00:00
|
|
|
rule build_electricity_demand:
|
|
|
|
params:
|
|
|
|
snapshots=config_provider("snapshots"),
|
2024-03-14 14:15:56 +00:00
|
|
|
drop_leap_day=config_provider("enable", "drop_leap_day"),
|
2024-03-04 18:37:52 +00:00
|
|
|
countries=config_provider("countries"),
|
|
|
|
load=config_provider("load"),
|
|
|
|
input:
|
|
|
|
reported=ancient("data/electricity_demand_raw.csv"),
|
2024-03-15 13:28:01 +00:00
|
|
|
synthetic=lambda w: (
|
|
|
|
ancient("data/load_synthetic_raw.csv")
|
|
|
|
if config_provider("load", "supplement_synthetic")(w)
|
2024-03-04 18:37:52 +00:00
|
|
|
else []
|
|
|
|
),
|
|
|
|
output:
|
|
|
|
resources("electricity_demand.csv"),
|
|
|
|
log:
|
|
|
|
logs("build_electricity_demand.log"),
|
|
|
|
resources:
|
|
|
|
mem_mb=5000,
|
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
|
|
|
script:
|
|
|
|
"../scripts/build_electricity_demand.py"
|
2023-03-08 16:29:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
rule build_powerplants:
|
2023-05-15 08:33:17 +00:00
|
|
|
params:
|
2023-08-15 13:02:41 +00:00
|
|
|
powerplants_filter=config_provider("electricity", "powerplants_filter"),
|
|
|
|
custom_powerplants=config_provider("electricity", "custom_powerplants"),
|
2024-02-10 16:22:01 +00:00
|
|
|
everywhere_powerplants=config_provider("electricity", "everywhere_powerplants"),
|
2023-08-15 13:02:41 +00:00
|
|
|
countries=config_provider("countries"),
|
2023-03-08 16:29:01 +00:00
|
|
|
input:
|
2024-09-13 13:37:01 +00:00
|
|
|
network=resources("networks/base_s_{clusters}.nc"),
|
2023-03-08 16:29:01 +00:00
|
|
|
custom_powerplants="data/custom_powerplants.csv",
|
|
|
|
output:
|
2024-09-13 13:37:01 +00:00
|
|
|
resources("powerplants_s_{clusters}.csv"),
|
2023-03-08 16:29:01 +00:00
|
|
|
log:
|
2024-09-13 13:37:01 +00:00
|
|
|
logs("build_powerplants_s_{clusters}.log"),
|
|
|
|
benchmark:
|
|
|
|
benchmarks("build_powerplants_s_{clusters}")
|
2023-03-08 16:29:01 +00:00
|
|
|
threads: 1
|
|
|
|
resources:
|
2024-07-01 12:33:29 +00:00
|
|
|
mem_mb=7000,
|
2023-03-08 16:44:25 +00:00
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
2023-03-08 16:29:01 +00:00
|
|
|
script:
|
2023-03-08 16:44:25 +00:00
|
|
|
"../scripts/build_powerplants.py"
|
2023-03-08 16:29:01 +00:00
|
|
|
|
|
|
|
|
Introducing OpenStreetMap high-voltage grid to PyPSA-Eur (#1079)
* Implemented which uses the overpass API to download power features for individual countries.
* Extended rule by input.
* Bug fixes and improvements to clean_osm_data.py. Added in retrieve_osm_data.py.
* Updated clean_osm_data and retrieve_osm_data to create clean substations.
* Finished clean_osm_data function.
* Added check whether line is a circle. If so, drop it.
* Extended build_electricity.smk by build_osm_network.py
* Added build_osm_network
* Working osm-network-fast
* Bug fixes.
* Finalised and cleaned including docstrings.
* Added try catch to retrieve_osm_data. Allows for parallelisation of downloads.
* Updated cleaning process.
* Set maximum number of threads for retrieving to 4, wrt. fair usage policy and potential request errors.
* Intermediate update on clean_osm_data.py. Added docstrings.
* Bug fix.
* Bug fix.
* Bug fixes in data types out of clean_osm_data
* Significant improvements to retrieve_osm_data, clean_osm_data. Cleaned code. Speed improvements
* Cleaned config.
* Fixes.
* Bug fixes.
* Updated default config
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Removed overpass from required packages. Not needed anymore.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Added links_relations (route = power, frequency = 0) to retrieval. This will change how HVDC links are extracted in the near future.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Work-in-progress clean_osm_data
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Added clean links output to clean_osm_data. Script uses OSM relations to retrieve clean HVDC links.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* New code for integrating HVDC links. Using relations. Base network implementation functioning.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* removed manual line dropping.
* Updated clean script
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* reverted Snakefile to default: sync settings
* added prebuilt functionality.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Updated build_electricity.smk to work with scenario management.
* removed commented-out code.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* removed commented-out code.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Fixed bug in pdf export by substituting pdf export with svg.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Bug-fix Snakefile
* dropped not needed columns from build_osm_network.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Updated build_shapes, config.default and clean_osm_data.
* pre-commit changes.
* test
* Added initial prepare_osm_network_release.py script
* Finalised prepare_osm_network_release script to build clean and stable OSM base_network input files.
* Added new rules/development.smk
* Updated clean_osm_data to add substation_centroid to linestrings
* Updated clean_osm_data to add substation_centroid to linestrings
* Updated clean_osm_data to add substation_centroid to linestrings
* Updated clean_osm_data to add substation_centroid to linestrings
* Added osm-prebuilt functionality and zenodo sandbox repository.
* Updated clean_osm_data to geopandas v.1.01
* Made base_network and build_osm_network function more robust for empty links.
* Made base_network and build_osm_network function more robust for empty links.
* Bug fix in base_network. Voltage level null is now kept (relevant e.g. for Corsica)
* Merge with hcanges in upstream PR 1146. Fixing UA and MD.
* Updated Zenodo and fixed prepare_osm_network_release
* Updated osm network release.
* Updated prepare osm network release.
* Updated MD, UA scripts.
* Cleaned determine_availability_matrix_MD_UA.py, removed redundant code
* Bug fixes.
* Bug fixes for UA MD scripts.
* Rename of build script.
* Bug fix: only distribute load to buses with substation.
* Updated zenodo sandbox repository.
* Updated config.default
* Cleaned config.default.yaml: Related settings grouped together and redundant voltage settings aggregated.
* Cleaned config.default.yaml: Related settings grouped together and redundant voltage settings aggregated. Added release notes.
* Updated Zenodo repositories for OSM-prebuilt to offcial publication.
* Updated configtables
* Updated links.csv: Under_construction lines to in commission.
* Updated link 8394 and parameter_corrections: Continuation of North-Sea-Link.
* Major update: fix simplify_network, fix Corsica, updated build_osm_network to include lines overpassing nodes.
* remove config backup
* Bug fix: Carrier type of all supernodes corrected to 'AC'
* Bug fix: Carrier type of all supernodes corrected to 'AC'
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Updated rules and base_network for compatibility with TYNDP projects.
* Updated Zenodo repository and prebuilt network to include 150 kV HVDC connections.
* Removed outdated config backup.
* Implemented all comments from PR #1079. Cleaned up OSM implementation.
* Bug fix: Added all voltages, 200 kV-750 kV, to default config.
* Cleaning and bugfixes.
* Updated Zenodo repository to https://zenodo.org/records/13358976. Added converter voltages, 'underground' property for DC lines/cables, and included Konti-Skan HVDC (DK-SE). Added compatibility with https://github.com/PyPSA/pypsa-eur/pull/1079 and https://github.com/PyPSA/pypsa-eur/pull/1085
* Apply suggestions from code review
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* simplify_network: handle complicated transformer topologies
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* syntax fix
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Fabian Neumann <fabian.neumann@outlook.de>
2024-08-22 13:01:20 +00:00
|
|
|
def input_base_network(w):
|
|
|
|
base_network = config_provider("electricity", "base_network")(w)
|
2024-09-13 12:55:52 +00:00
|
|
|
osm_prebuilt_version = config_provider("electricity", "osm-prebuilt-version")(w)
|
Introducing OpenStreetMap high-voltage grid to PyPSA-Eur (#1079)
* Implemented which uses the overpass API to download power features for individual countries.
* Extended rule by input.
* Bug fixes and improvements to clean_osm_data.py. Added in retrieve_osm_data.py.
* Updated clean_osm_data and retrieve_osm_data to create clean substations.
* Finished clean_osm_data function.
* Added check whether line is a circle. If so, drop it.
* Extended build_electricity.smk by build_osm_network.py
* Added build_osm_network
* Working osm-network-fast
* Bug fixes.
* Finalised and cleaned including docstrings.
* Added try catch to retrieve_osm_data. Allows for parallelisation of downloads.
* Updated cleaning process.
* Set maximum number of threads for retrieving to 4, wrt. fair usage policy and potential request errors.
* Intermediate update on clean_osm_data.py. Added docstrings.
* Bug fix.
* Bug fix.
* Bug fixes in data types out of clean_osm_data
* Significant improvements to retrieve_osm_data, clean_osm_data. Cleaned code. Speed improvements
* Cleaned config.
* Fixes.
* Bug fixes.
* Updated default config
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Removed overpass from required packages. Not needed anymore.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Added links_relations (route = power, frequency = 0) to retrieval. This will change how HVDC links are extracted in the near future.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Work-in-progress clean_osm_data
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Added clean links output to clean_osm_data. Script uses OSM relations to retrieve clean HVDC links.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* New code for integrating HVDC links. Using relations. Base network implementation functioning.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* removed manual line dropping.
* Updated clean script
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* reverted Snakefile to default: sync settings
* added prebuilt functionality.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Updated build_electricity.smk to work with scenario management.
* removed commented-out code.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* removed commented-out code.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Fixed bug in pdf export by substituting pdf export with svg.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Bug-fix Snakefile
* dropped not needed columns from build_osm_network.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Updated build_shapes, config.default and clean_osm_data.
* pre-commit changes.
* test
* Added initial prepare_osm_network_release.py script
* Finalised prepare_osm_network_release script to build clean and stable OSM base_network input files.
* Added new rules/development.smk
* Updated clean_osm_data to add substation_centroid to linestrings
* Updated clean_osm_data to add substation_centroid to linestrings
* Updated clean_osm_data to add substation_centroid to linestrings
* Updated clean_osm_data to add substation_centroid to linestrings
* Added osm-prebuilt functionality and zenodo sandbox repository.
* Updated clean_osm_data to geopandas v.1.01
* Made base_network and build_osm_network function more robust for empty links.
* Made base_network and build_osm_network function more robust for empty links.
* Bug fix in base_network. Voltage level null is now kept (relevant e.g. for Corsica)
* Merge with hcanges in upstream PR 1146. Fixing UA and MD.
* Updated Zenodo and fixed prepare_osm_network_release
* Updated osm network release.
* Updated prepare osm network release.
* Updated MD, UA scripts.
* Cleaned determine_availability_matrix_MD_UA.py, removed redundant code
* Bug fixes.
* Bug fixes for UA MD scripts.
* Rename of build script.
* Bug fix: only distribute load to buses with substation.
* Updated zenodo sandbox repository.
* Updated config.default
* Cleaned config.default.yaml: Related settings grouped together and redundant voltage settings aggregated.
* Cleaned config.default.yaml: Related settings grouped together and redundant voltage settings aggregated. Added release notes.
* Updated Zenodo repositories for OSM-prebuilt to offcial publication.
* Updated configtables
* Updated links.csv: Under_construction lines to in commission.
* Updated link 8394 and parameter_corrections: Continuation of North-Sea-Link.
* Major update: fix simplify_network, fix Corsica, updated build_osm_network to include lines overpassing nodes.
* remove config backup
* Bug fix: Carrier type of all supernodes corrected to 'AC'
* Bug fix: Carrier type of all supernodes corrected to 'AC'
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Updated rules and base_network for compatibility with TYNDP projects.
* Updated Zenodo repository and prebuilt network to include 150 kV HVDC connections.
* Removed outdated config backup.
* Implemented all comments from PR #1079. Cleaned up OSM implementation.
* Bug fix: Added all voltages, 200 kV-750 kV, to default config.
* Cleaning and bugfixes.
* Updated Zenodo repository to https://zenodo.org/records/13358976. Added converter voltages, 'underground' property for DC lines/cables, and included Konti-Skan HVDC (DK-SE). Added compatibility with https://github.com/PyPSA/pypsa-eur/pull/1079 and https://github.com/PyPSA/pypsa-eur/pull/1085
* Apply suggestions from code review
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* simplify_network: handle complicated transformer topologies
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* syntax fix
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Fabian Neumann <fabian.neumann@outlook.de>
2024-08-22 13:01:20 +00:00
|
|
|
components = {"buses", "lines", "links", "converters", "transformers"}
|
|
|
|
if base_network == "osm-raw":
|
|
|
|
inputs = {c: resources(f"osm-raw/build/{c}.csv") for c in components}
|
2024-09-13 12:55:52 +00:00
|
|
|
elif base_network == "osm-prebuilt":
|
|
|
|
inputs = {
|
|
|
|
c: f"data/{base_network}/{osm_prebuilt_version}/{c}.csv" for c in components
|
|
|
|
}
|
|
|
|
elif base_network == "entsoegridkit":
|
Introducing OpenStreetMap high-voltage grid to PyPSA-Eur (#1079)
* Implemented which uses the overpass API to download power features for individual countries.
* Extended rule by input.
* Bug fixes and improvements to clean_osm_data.py. Added in retrieve_osm_data.py.
* Updated clean_osm_data and retrieve_osm_data to create clean substations.
* Finished clean_osm_data function.
* Added check whether line is a circle. If so, drop it.
* Extended build_electricity.smk by build_osm_network.py
* Added build_osm_network
* Working osm-network-fast
* Bug fixes.
* Finalised and cleaned including docstrings.
* Added try catch to retrieve_osm_data. Allows for parallelisation of downloads.
* Updated cleaning process.
* Set maximum number of threads for retrieving to 4, wrt. fair usage policy and potential request errors.
* Intermediate update on clean_osm_data.py. Added docstrings.
* Bug fix.
* Bug fix.
* Bug fixes in data types out of clean_osm_data
* Significant improvements to retrieve_osm_data, clean_osm_data. Cleaned code. Speed improvements
* Cleaned config.
* Fixes.
* Bug fixes.
* Updated default config
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Removed overpass from required packages. Not needed anymore.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Added links_relations (route = power, frequency = 0) to retrieval. This will change how HVDC links are extracted in the near future.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Work-in-progress clean_osm_data
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Added clean links output to clean_osm_data. Script uses OSM relations to retrieve clean HVDC links.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* New code for integrating HVDC links. Using relations. Base network implementation functioning.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* removed manual line dropping.
* Updated clean script
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* reverted Snakefile to default: sync settings
* added prebuilt functionality.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Updated build_electricity.smk to work with scenario management.
* removed commented-out code.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* removed commented-out code.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Fixed bug in pdf export by substituting pdf export with svg.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Bug-fix Snakefile
* dropped not needed columns from build_osm_network.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Updated build_shapes, config.default and clean_osm_data.
* pre-commit changes.
* test
* Added initial prepare_osm_network_release.py script
* Finalised prepare_osm_network_release script to build clean and stable OSM base_network input files.
* Added new rules/development.smk
* Updated clean_osm_data to add substation_centroid to linestrings
* Updated clean_osm_data to add substation_centroid to linestrings
* Updated clean_osm_data to add substation_centroid to linestrings
* Updated clean_osm_data to add substation_centroid to linestrings
* Added osm-prebuilt functionality and zenodo sandbox repository.
* Updated clean_osm_data to geopandas v.1.01
* Made base_network and build_osm_network function more robust for empty links.
* Made base_network and build_osm_network function more robust for empty links.
* Bug fix in base_network. Voltage level null is now kept (relevant e.g. for Corsica)
* Merge with hcanges in upstream PR 1146. Fixing UA and MD.
* Updated Zenodo and fixed prepare_osm_network_release
* Updated osm network release.
* Updated prepare osm network release.
* Updated MD, UA scripts.
* Cleaned determine_availability_matrix_MD_UA.py, removed redundant code
* Bug fixes.
* Bug fixes for UA MD scripts.
* Rename of build script.
* Bug fix: only distribute load to buses with substation.
* Updated zenodo sandbox repository.
* Updated config.default
* Cleaned config.default.yaml: Related settings grouped together and redundant voltage settings aggregated.
* Cleaned config.default.yaml: Related settings grouped together and redundant voltage settings aggregated. Added release notes.
* Updated Zenodo repositories for OSM-prebuilt to offcial publication.
* Updated configtables
* Updated links.csv: Under_construction lines to in commission.
* Updated link 8394 and parameter_corrections: Continuation of North-Sea-Link.
* Major update: fix simplify_network, fix Corsica, updated build_osm_network to include lines overpassing nodes.
* remove config backup
* Bug fix: Carrier type of all supernodes corrected to 'AC'
* Bug fix: Carrier type of all supernodes corrected to 'AC'
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Updated rules and base_network for compatibility with TYNDP projects.
* Updated Zenodo repository and prebuilt network to include 150 kV HVDC connections.
* Removed outdated config backup.
* Implemented all comments from PR #1079. Cleaned up OSM implementation.
* Bug fix: Added all voltages, 200 kV-750 kV, to default config.
* Cleaning and bugfixes.
* Updated Zenodo repository to https://zenodo.org/records/13358976. Added converter voltages, 'underground' property for DC lines/cables, and included Konti-Skan HVDC (DK-SE). Added compatibility with https://github.com/PyPSA/pypsa-eur/pull/1079 and https://github.com/PyPSA/pypsa-eur/pull/1085
* Apply suggestions from code review
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* simplify_network: handle complicated transformer topologies
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* syntax fix
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Fabian Neumann <fabian.neumann@outlook.de>
2024-08-22 13:01:20 +00:00
|
|
|
inputs = {c: f"data/{base_network}/{c}.csv" for c in components}
|
|
|
|
inputs["parameter_corrections"] = "data/parameter_corrections.yaml"
|
|
|
|
inputs["links_p_nom"] = "data/links_p_nom.csv"
|
|
|
|
return inputs
|
|
|
|
|
|
|
|
|
2023-03-08 16:29:01 +00:00
|
|
|
rule base_network:
|
2023-06-30 09:29:46 +00:00
|
|
|
params:
|
2023-08-15 13:02:41 +00:00
|
|
|
countries=config_provider("countries"),
|
2024-02-17 16:16:28 +00:00
|
|
|
snapshots=config_provider("snapshots"),
|
2024-03-14 14:15:56 +00:00
|
|
|
drop_leap_day=config_provider("enable", "drop_leap_day"),
|
2023-08-15 13:02:41 +00:00
|
|
|
lines=config_provider("lines"),
|
|
|
|
transformers=config_provider("transformers"),
|
2023-03-08 16:29:01 +00:00
|
|
|
input:
|
Introducing OpenStreetMap high-voltage grid to PyPSA-Eur (#1079)
* Implemented which uses the overpass API to download power features for individual countries.
* Extended rule by input.
* Bug fixes and improvements to clean_osm_data.py. Added in retrieve_osm_data.py.
* Updated clean_osm_data and retrieve_osm_data to create clean substations.
* Finished clean_osm_data function.
* Added check whether line is a circle. If so, drop it.
* Extended build_electricity.smk by build_osm_network.py
* Added build_osm_network
* Working osm-network-fast
* Bug fixes.
* Finalised and cleaned including docstrings.
* Added try catch to retrieve_osm_data. Allows for parallelisation of downloads.
* Updated cleaning process.
* Set maximum number of threads for retrieving to 4, wrt. fair usage policy and potential request errors.
* Intermediate update on clean_osm_data.py. Added docstrings.
* Bug fix.
* Bug fix.
* Bug fixes in data types out of clean_osm_data
* Significant improvements to retrieve_osm_data, clean_osm_data. Cleaned code. Speed improvements
* Cleaned config.
* Fixes.
* Bug fixes.
* Updated default config
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Removed overpass from required packages. Not needed anymore.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Added links_relations (route = power, frequency = 0) to retrieval. This will change how HVDC links are extracted in the near future.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Work-in-progress clean_osm_data
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Added clean links output to clean_osm_data. Script uses OSM relations to retrieve clean HVDC links.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* New code for integrating HVDC links. Using relations. Base network implementation functioning.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* removed manual line dropping.
* Updated clean script
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* reverted Snakefile to default: sync settings
* added prebuilt functionality.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Updated build_electricity.smk to work with scenario management.
* removed commented-out code.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* removed commented-out code.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Fixed bug in pdf export by substituting pdf export with svg.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Bug-fix Snakefile
* dropped not needed columns from build_osm_network.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Updated build_shapes, config.default and clean_osm_data.
* pre-commit changes.
* test
* Added initial prepare_osm_network_release.py script
* Finalised prepare_osm_network_release script to build clean and stable OSM base_network input files.
* Added new rules/development.smk
* Updated clean_osm_data to add substation_centroid to linestrings
* Updated clean_osm_data to add substation_centroid to linestrings
* Updated clean_osm_data to add substation_centroid to linestrings
* Updated clean_osm_data to add substation_centroid to linestrings
* Added osm-prebuilt functionality and zenodo sandbox repository.
* Updated clean_osm_data to geopandas v.1.01
* Made base_network and build_osm_network function more robust for empty links.
* Made base_network and build_osm_network function more robust for empty links.
* Bug fix in base_network. Voltage level null is now kept (relevant e.g. for Corsica)
* Merge with hcanges in upstream PR 1146. Fixing UA and MD.
* Updated Zenodo and fixed prepare_osm_network_release
* Updated osm network release.
* Updated prepare osm network release.
* Updated MD, UA scripts.
* Cleaned determine_availability_matrix_MD_UA.py, removed redundant code
* Bug fixes.
* Bug fixes for UA MD scripts.
* Rename of build script.
* Bug fix: only distribute load to buses with substation.
* Updated zenodo sandbox repository.
* Updated config.default
* Cleaned config.default.yaml: Related settings grouped together and redundant voltage settings aggregated.
* Cleaned config.default.yaml: Related settings grouped together and redundant voltage settings aggregated. Added release notes.
* Updated Zenodo repositories for OSM-prebuilt to offcial publication.
* Updated configtables
* Updated links.csv: Under_construction lines to in commission.
* Updated link 8394 and parameter_corrections: Continuation of North-Sea-Link.
* Major update: fix simplify_network, fix Corsica, updated build_osm_network to include lines overpassing nodes.
* remove config backup
* Bug fix: Carrier type of all supernodes corrected to 'AC'
* Bug fix: Carrier type of all supernodes corrected to 'AC'
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Updated rules and base_network for compatibility with TYNDP projects.
* Updated Zenodo repository and prebuilt network to include 150 kV HVDC connections.
* Removed outdated config backup.
* Implemented all comments from PR #1079. Cleaned up OSM implementation.
* Bug fix: Added all voltages, 200 kV-750 kV, to default config.
* Cleaning and bugfixes.
* Updated Zenodo repository to https://zenodo.org/records/13358976. Added converter voltages, 'underground' property for DC lines/cables, and included Konti-Skan HVDC (DK-SE). Added compatibility with https://github.com/PyPSA/pypsa-eur/pull/1079 and https://github.com/PyPSA/pypsa-eur/pull/1085
* Apply suggestions from code review
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* simplify_network: handle complicated transformer topologies
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* syntax fix
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Fabian Neumann <fabian.neumann@outlook.de>
2024-08-22 13:01:20 +00:00
|
|
|
unpack(input_base_network),
|
2023-08-23 15:14:57 +00:00
|
|
|
country_shapes=resources("country_shapes.geojson"),
|
|
|
|
offshore_shapes=resources("offshore_shapes.geojson"),
|
|
|
|
europe_shape=resources("europe_shape.geojson"),
|
2023-03-08 16:29:01 +00:00
|
|
|
output:
|
2024-05-03 12:50:14 +00:00
|
|
|
base_network=resources("networks/base.nc"),
|
|
|
|
regions_onshore=resources("regions_onshore.geojson"),
|
|
|
|
regions_offshore=resources("regions_offshore.geojson"),
|
2023-03-08 16:29:01 +00:00
|
|
|
log:
|
2023-08-23 15:14:57 +00:00
|
|
|
logs("base_network.log"),
|
2023-03-08 16:29:01 +00:00
|
|
|
benchmark:
|
2023-08-23 15:14:57 +00:00
|
|
|
benchmarks("base_network")
|
2023-03-08 16:29:01 +00:00
|
|
|
threads: 1
|
|
|
|
resources:
|
|
|
|
mem_mb=1500,
|
2023-03-08 16:44:25 +00:00
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
2023-03-08 16:29:01 +00:00
|
|
|
script:
|
2023-03-08 16:44:25 +00:00
|
|
|
"../scripts/base_network.py"
|
2023-03-08 16:29:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
rule build_shapes:
|
2023-05-15 08:33:17 +00:00
|
|
|
params:
|
2023-08-15 13:02:41 +00:00
|
|
|
countries=config_provider("countries"),
|
2023-03-08 16:29:01 +00:00
|
|
|
input:
|
2024-08-02 07:53:34 +00:00
|
|
|
naturalearth=ancient("data/naturalearth/ne_10m_admin_0_countries_deu.shp"),
|
2024-08-13 19:03:07 +00:00
|
|
|
eez=ancient("data/eez/World_EEZ_v12_20231025_LR/eez_v12_lowres.gpkg"),
|
2024-09-12 17:20:07 +00:00
|
|
|
nuts3=ancient("data/nuts/NUTS_RG_03M_2013_4326_LEVL_3.geojson"),
|
2023-03-08 17:03:49 +00:00
|
|
|
nuts3pop=ancient("data/bundle/nama_10r_3popgdp.tsv.gz"),
|
|
|
|
nuts3gdp=ancient("data/bundle/nama_10r_3gdp.tsv.gz"),
|
2024-04-15 12:48:34 +00:00
|
|
|
ch_cantons=ancient("data/ch_cantons.csv"),
|
2023-03-08 17:03:49 +00:00
|
|
|
ch_popgdp=ancient("data/bundle/je-e-21.03.02.xls"),
|
2023-03-08 16:29:01 +00:00
|
|
|
output:
|
2023-08-23 15:14:57 +00:00
|
|
|
country_shapes=resources("country_shapes.geojson"),
|
|
|
|
offshore_shapes=resources("offshore_shapes.geojson"),
|
|
|
|
europe_shape=resources("europe_shape.geojson"),
|
|
|
|
nuts3_shapes=resources("nuts3_shapes.geojson"),
|
2023-03-08 16:29:01 +00:00
|
|
|
log:
|
2023-08-23 15:14:57 +00:00
|
|
|
logs("build_shapes.log"),
|
2023-03-08 16:29:01 +00:00
|
|
|
threads: 1
|
|
|
|
resources:
|
|
|
|
mem_mb=1500,
|
2023-03-08 16:44:25 +00:00
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
2023-03-08 16:29:01 +00:00
|
|
|
script:
|
2023-03-08 16:44:25 +00:00
|
|
|
"../scripts/build_shapes.py"
|
2023-03-08 16:29:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
if config["enable"].get("build_cutout", False):
|
|
|
|
|
|
|
|
rule build_cutout:
|
2023-05-15 08:33:17 +00:00
|
|
|
params:
|
2024-02-17 16:16:28 +00:00
|
|
|
snapshots=config_provider("snapshots"),
|
2023-08-15 13:02:41 +00:00
|
|
|
cutouts=config_provider("atlite", "cutouts"),
|
2023-03-08 16:29:01 +00:00
|
|
|
input:
|
2023-08-23 15:14:57 +00:00
|
|
|
regions_onshore=resources("regions_onshore.geojson"),
|
|
|
|
regions_offshore=resources("regions_offshore.geojson"),
|
2023-03-08 16:29:01 +00:00
|
|
|
output:
|
2023-03-08 16:56:50 +00:00
|
|
|
protected("cutouts/" + CDIR + "{cutout}.nc"),
|
2023-03-08 16:29:01 +00:00
|
|
|
log:
|
2024-02-16 10:17:00 +00:00
|
|
|
logs(CDIR + "build_cutout/{cutout}.log"),
|
2023-03-08 16:29:01 +00:00
|
|
|
benchmark:
|
|
|
|
"benchmarks/" + CDIR + "build_cutout_{cutout}"
|
2024-02-16 10:17:00 +00:00
|
|
|
threads: config["atlite"].get("nprocesses", 4)
|
2023-03-08 16:29:01 +00:00
|
|
|
resources:
|
2024-02-16 10:17:00 +00:00
|
|
|
mem_mb=config["atlite"].get("nprocesses", 4) * 1000,
|
2023-03-08 16:44:25 +00:00
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
2023-03-08 16:29:01 +00:00
|
|
|
script:
|
2023-03-08 16:44:25 +00:00
|
|
|
"../scripts/build_cutout.py"
|
2023-03-08 16:29:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
rule build_ship_raster:
|
|
|
|
input:
|
|
|
|
ship_density="data/shipdensity_global.zip",
|
2024-03-01 10:45:39 +00:00
|
|
|
cutout=lambda w: "cutouts/"
|
|
|
|
+ CDIR
|
|
|
|
+ config_provider("atlite", "default_cutout")(w)
|
|
|
|
+ ".nc",
|
2023-03-08 16:29:01 +00:00
|
|
|
output:
|
2023-08-23 15:14:57 +00:00
|
|
|
resources("shipdensity_raster.tif"),
|
2023-03-08 16:29:01 +00:00
|
|
|
log:
|
2023-08-23 15:14:57 +00:00
|
|
|
logs("build_ship_raster.log"),
|
2023-03-08 16:29:01 +00:00
|
|
|
resources:
|
|
|
|
mem_mb=5000,
|
|
|
|
benchmark:
|
2023-08-23 15:14:57 +00:00
|
|
|
benchmarks("build_ship_raster")
|
2023-03-08 16:44:25 +00:00
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
2023-03-08 16:29:01 +00:00
|
|
|
script:
|
2023-03-08 16:44:25 +00:00
|
|
|
"../scripts/build_ship_raster.py"
|
2023-03-08 16:29:01 +00:00
|
|
|
|
|
|
|
|
2023-08-01 06:42:47 +00:00
|
|
|
rule determine_availability_matrix_MD_UA:
|
2024-09-13 13:37:01 +00:00
|
|
|
params:
|
|
|
|
renewable=config_provider("renewable"),
|
2023-08-01 06:42:47 +00:00
|
|
|
input:
|
2023-12-29 10:29:01 +00:00
|
|
|
copernicus="data/Copernicus_LC100_global_v3.0.1_2019-nrt_Discrete-Classification-map_EPSG-4326.tif",
|
|
|
|
wdpa="data/WDPA.gpkg",
|
|
|
|
wdpa_marine="data/WDPA_WDOECM_marine.gpkg",
|
2023-08-01 06:42:47 +00:00
|
|
|
gebco=lambda w: (
|
2024-04-15 12:48:34 +00:00
|
|
|
"data/bundle/gebco/GEBCO_2014_2D.nc"
|
2024-02-10 17:09:23 +00:00
|
|
|
if config_provider("renewable", w.technology)(w).get("max_depth")
|
2023-08-01 06:42:47 +00:00
|
|
|
else []
|
|
|
|
),
|
2023-10-09 14:19:31 +00:00
|
|
|
ship_density=lambda w: (
|
2024-02-10 17:09:23 +00:00
|
|
|
resources("shipdensity_raster.tif")
|
|
|
|
if "ship_threshold" in config_provider("renewable", w.technology)(w).keys()
|
2023-10-09 14:19:31 +00:00
|
|
|
else []
|
|
|
|
),
|
2024-02-10 17:09:23 +00:00
|
|
|
country_shapes=resources("country_shapes.geojson"),
|
|
|
|
offshore_shapes=resources("offshore_shapes.geojson"),
|
2023-08-01 06:42:47 +00:00
|
|
|
regions=lambda w: (
|
2024-09-13 13:37:01 +00:00
|
|
|
resources("regions_onshore_base_s_{clusters}.geojson")
|
2024-04-25 09:28:33 +00:00
|
|
|
if w.technology in ("onwind", "solar", "solar-hsat")
|
2024-09-13 13:37:01 +00:00
|
|
|
else resources("regions_offshore_base_s_{clusters}.geojson")
|
2023-08-01 06:42:47 +00:00
|
|
|
),
|
|
|
|
cutout=lambda w: "cutouts/"
|
|
|
|
+ CDIR
|
2024-02-10 17:09:23 +00:00
|
|
|
+ config_provider("renewable", w.technology, "cutout")(w)
|
2023-08-01 06:42:47 +00:00
|
|
|
+ ".nc",
|
|
|
|
output:
|
2024-09-13 13:37:01 +00:00
|
|
|
availability_matrix=resources(
|
|
|
|
"availability_matrix_MD-UA_{clusters}_{technology}.nc"
|
|
|
|
),
|
2023-08-01 06:42:47 +00:00
|
|
|
log:
|
2024-09-13 13:37:01 +00:00
|
|
|
logs("determine_availability_matrix_MD_UA_{clusters}_{technology}.log"),
|
2024-02-16 10:17:00 +00:00
|
|
|
threads: config["atlite"].get("nprocesses", 4)
|
2023-08-01 06:42:47 +00:00
|
|
|
resources:
|
2024-02-16 10:17:00 +00:00
|
|
|
mem_mb=config["atlite"].get("nprocesses", 4) * 5000,
|
2023-08-01 06:42:47 +00:00
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
|
|
|
script:
|
2023-08-01 07:45:14 +00:00
|
|
|
"../scripts/determine_availability_matrix_MD_UA.py"
|
2023-08-01 06:42:47 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Optional input when having Ukraine (UA) or Moldova (MD) in the countries list
|
2024-02-17 16:38:46 +00:00
|
|
|
def input_ua_md_availability_matrix(w):
|
|
|
|
countries = set(config_provider("countries")(w))
|
|
|
|
if {"UA", "MD"}.intersection(countries):
|
|
|
|
return {
|
|
|
|
"availability_matrix_MD_UA": resources(
|
2024-09-13 13:37:01 +00:00
|
|
|
"availability_matrix_MD-UA_{clusters}_{technology}.nc"
|
2024-02-17 16:38:46 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
return {}
|
2023-08-01 06:42:47 +00:00
|
|
|
|
|
|
|
|
2024-09-13 13:37:01 +00:00
|
|
|
rule determine_availability_matrix:
|
2023-05-15 08:33:17 +00:00
|
|
|
params:
|
2023-08-15 13:02:41 +00:00
|
|
|
renewable=config_provider("renewable"),
|
2023-03-08 16:29:01 +00:00
|
|
|
input:
|
2024-02-17 16:38:46 +00:00
|
|
|
unpack(input_ua_md_availability_matrix),
|
2023-03-08 17:03:49 +00:00
|
|
|
corine=ancient("data/bundle/corine/g250_clc06_V18_5.tif"),
|
2023-03-08 16:29:01 +00:00
|
|
|
natura=lambda w: (
|
2024-04-15 12:48:34 +00:00
|
|
|
"data/bundle/natura/natura.tiff"
|
2023-08-17 10:31:07 +00:00
|
|
|
if config_provider("renewable", w.technology, "natura")(w)
|
2023-03-08 16:29:01 +00:00
|
|
|
else []
|
|
|
|
),
|
2024-01-03 14:01:43 +00:00
|
|
|
luisa=lambda w: (
|
|
|
|
"data/LUISA_basemap_020321_50m.tif"
|
2024-02-17 19:43:11 +00:00
|
|
|
if config_provider("renewable", w.technology, "luisa")(w)
|
2023-03-08 16:29:01 +00:00
|
|
|
else []
|
|
|
|
),
|
2023-03-08 17:03:49 +00:00
|
|
|
gebco=ancient(
|
|
|
|
lambda w: (
|
2024-04-15 12:48:34 +00:00
|
|
|
"data/bundle/gebco/GEBCO_2014_2D.nc"
|
2023-11-06 13:08:53 +00:00
|
|
|
if (
|
2024-05-10 11:29:58 +00:00
|
|
|
config_provider("renewable", w.technology)(w).get("max_depth")
|
|
|
|
or config_provider("renewable", w.technology)(w).get("min_depth")
|
2023-11-06 15:38:03 +00:00
|
|
|
)
|
2023-03-08 16:29:01 +00:00
|
|
|
else []
|
2023-03-08 18:26:41 +00:00
|
|
|
)
|
2023-03-08 17:03:49 +00:00
|
|
|
),
|
2023-03-08 16:29:01 +00:00
|
|
|
ship_density=lambda w: (
|
2023-08-23 15:14:57 +00:00
|
|
|
resources("shipdensity_raster.tif")
|
2023-08-17 10:31:07 +00:00
|
|
|
if "ship_threshold" in config_provider("renewable", w.technology)(w).keys()
|
2023-03-08 16:29:01 +00:00
|
|
|
else []
|
|
|
|
),
|
2023-08-23 15:14:57 +00:00
|
|
|
country_shapes=resources("country_shapes.geojson"),
|
|
|
|
offshore_shapes=resources("offshore_shapes.geojson"),
|
2023-03-08 16:29:01 +00:00
|
|
|
regions=lambda w: (
|
2024-09-13 13:37:01 +00:00
|
|
|
resources("regions_onshore_base_s_{clusters}.geojson")
|
2024-04-25 09:30:42 +00:00
|
|
|
if w.technology in ("onwind", "solar", "solar-hsat")
|
2024-09-13 13:37:01 +00:00
|
|
|
else resources("regions_offshore_base_s_{clusters}.geojson")
|
2023-03-08 16:29:01 +00:00
|
|
|
),
|
|
|
|
cutout=lambda w: "cutouts/"
|
|
|
|
+ CDIR
|
2023-08-17 10:31:07 +00:00
|
|
|
+ config_provider("renewable", w.technology, "cutout")(w)
|
2023-03-08 16:29:01 +00:00
|
|
|
+ ".nc",
|
|
|
|
output:
|
2024-09-13 13:37:01 +00:00
|
|
|
resources("availability_matrix_{clusters}_{technology}.nc"),
|
2023-03-08 16:29:01 +00:00
|
|
|
log:
|
2024-09-13 13:37:01 +00:00
|
|
|
logs("determine_availability_matrix_{clusters}_{technology}.log"),
|
2023-03-08 16:29:01 +00:00
|
|
|
benchmark:
|
2024-09-13 13:37:01 +00:00
|
|
|
benchmarks("determine_availability_matrix_{clusters}_{technology}")
|
|
|
|
threads: config["atlite"].get("nprocesses", 4)
|
|
|
|
resources:
|
|
|
|
mem_mb=config["atlite"].get("nprocesses", 4) * 5000,
|
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
|
|
|
script:
|
|
|
|
"../scripts/determine_availability_matrix.py"
|
|
|
|
|
|
|
|
|
|
|
|
rule build_renewable_profiles:
|
|
|
|
params:
|
|
|
|
snapshots=config_provider("snapshots"),
|
|
|
|
drop_leap_day=config_provider("enable", "drop_leap_day"),
|
|
|
|
renewable=config_provider("renewable"),
|
|
|
|
input:
|
|
|
|
availability_matrix=resources("availability_matrix_{clusters}_{technology}.nc"),
|
|
|
|
offshore_shapes=resources("offshore_shapes.geojson"),
|
|
|
|
regions=resources("regions_onshore_base_s_{clusters}.geojson"),
|
|
|
|
cutout=lambda w: "cutouts/"
|
|
|
|
+ CDIR
|
|
|
|
+ config_provider("renewable", w.technology, "cutout")(w)
|
|
|
|
+ ".nc",
|
|
|
|
output:
|
|
|
|
profile=resources("profile_{clusters}_{technology}.nc"),
|
|
|
|
log:
|
|
|
|
logs("build_renewable_profile_{clusters}_{technology}.log"),
|
|
|
|
benchmark:
|
|
|
|
benchmarks("build_renewable_profiles_{clusters}_{technology}")
|
2024-02-16 10:17:00 +00:00
|
|
|
threads: config["atlite"].get("nprocesses", 4)
|
2023-03-08 16:29:01 +00:00
|
|
|
resources:
|
2024-02-16 10:17:00 +00:00
|
|
|
mem_mb=config["atlite"].get("nprocesses", 4) * 5000,
|
2023-03-08 16:29:01 +00:00
|
|
|
wildcard_constraints:
|
|
|
|
technology="(?!hydro).*", # Any technology other than hydro
|
2023-03-08 16:44:25 +00:00
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
2023-03-08 16:29:01 +00:00
|
|
|
script:
|
2023-03-08 16:44:25 +00:00
|
|
|
"../scripts/build_renewable_profiles.py"
|
2023-03-08 16:29:01 +00:00
|
|
|
|
|
|
|
|
2023-05-16 11:49:03 +00:00
|
|
|
rule build_monthly_prices:
|
|
|
|
input:
|
|
|
|
co2_price_raw="data/validation/emission-spot-primary-market-auction-report-2019-data.xls",
|
2023-05-24 08:26:31 +00:00
|
|
|
fuel_price_raw="data/validation/energy-price-trends-xlsx-5619002.xlsx",
|
2023-05-16 11:49:03 +00:00
|
|
|
output:
|
2023-08-23 15:14:57 +00:00
|
|
|
co2_price=resources("co2_price.csv"),
|
|
|
|
fuel_price=resources("monthly_fuel_price.csv"),
|
2023-05-16 11:49:03 +00:00
|
|
|
log:
|
2023-08-23 15:14:57 +00:00
|
|
|
logs("build_monthly_prices.log"),
|
2023-05-16 11:49:03 +00:00
|
|
|
threads: 1
|
|
|
|
resources:
|
|
|
|
mem_mb=5000,
|
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
|
|
|
script:
|
|
|
|
"../scripts/build_monthly_prices.py"
|
2023-03-08 16:29:01 +00:00
|
|
|
|
2023-06-29 06:11:11 +00:00
|
|
|
|
2023-03-08 16:29:01 +00:00
|
|
|
rule build_hydro_profile:
|
2023-05-15 08:33:17 +00:00
|
|
|
params:
|
2023-08-15 13:02:41 +00:00
|
|
|
hydro=config_provider("renewable", "hydro"),
|
|
|
|
countries=config_provider("countries"),
|
2024-03-14 13:08:58 +00:00
|
|
|
snapshots=config_provider("snapshots"),
|
2024-03-14 13:30:50 +00:00
|
|
|
drop_leap_day=config_provider("enable", "drop_leap_day"),
|
2023-03-08 16:29:01 +00:00
|
|
|
input:
|
2023-08-23 15:14:57 +00:00
|
|
|
country_shapes=resources("country_shapes.geojson"),
|
2023-03-08 16:29:01 +00:00
|
|
|
eia_hydro_generation="data/eia_hydro_annual_generation.csv",
|
2023-04-29 10:40:55 +00:00
|
|
|
eia_hydro_capacity="data/eia_hydro_annual_capacity.csv",
|
|
|
|
era5_runoff="data/era5-annual-runoff-per-country.csv",
|
2024-02-12 15:56:00 +00:00
|
|
|
cutout=lambda w: f"cutouts/"
|
2024-02-10 17:09:23 +00:00
|
|
|
+ CDIR
|
2024-02-12 15:56:00 +00:00
|
|
|
+ config_provider("renewable", "hydro", "cutout")(w)
|
2024-02-10 17:09:23 +00:00
|
|
|
+ ".nc",
|
2023-03-08 16:29:01 +00:00
|
|
|
output:
|
2024-03-04 16:48:56 +00:00
|
|
|
profile=resources("profile_hydro.nc"),
|
2023-03-08 16:29:01 +00:00
|
|
|
log:
|
2024-03-04 16:48:56 +00:00
|
|
|
logs("build_hydro_profile.log"),
|
2023-03-08 16:29:01 +00:00
|
|
|
resources:
|
|
|
|
mem_mb=5000,
|
2023-03-08 16:44:25 +00:00
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
2023-03-08 16:29:01 +00:00
|
|
|
script:
|
2023-03-08 16:44:25 +00:00
|
|
|
"../scripts/build_hydro_profile.py"
|
2023-03-08 16:29:01 +00:00
|
|
|
|
|
|
|
|
2024-02-17 16:38:46 +00:00
|
|
|
rule build_line_rating:
|
|
|
|
params:
|
|
|
|
snapshots=config_provider("snapshots"),
|
2024-03-14 13:30:50 +00:00
|
|
|
drop_leap_day=config_provider("enable", "drop_leap_day"),
|
2024-02-17 16:38:46 +00:00
|
|
|
input:
|
|
|
|
base_network=resources("networks/base.nc"),
|
2024-02-17 17:35:26 +00:00
|
|
|
cutout=lambda w: "cutouts/"
|
2024-02-17 16:38:46 +00:00
|
|
|
+ CDIR
|
2024-02-17 17:35:26 +00:00
|
|
|
+ config_provider("lines", "dynamic_line_rating", "cutout")(w)
|
2024-02-17 16:38:46 +00:00
|
|
|
+ ".nc",
|
|
|
|
output:
|
2024-09-13 13:37:01 +00:00
|
|
|
output=resources("dlr.nc"),
|
2024-02-17 16:38:46 +00:00
|
|
|
log:
|
|
|
|
logs("build_line_rating.log"),
|
|
|
|
benchmark:
|
|
|
|
benchmarks("build_line_rating")
|
|
|
|
threads: config["atlite"].get("nprocesses", 4)
|
|
|
|
resources:
|
|
|
|
mem_mb=config["atlite"].get("nprocesses", 4) * 1000,
|
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
|
|
|
script:
|
|
|
|
"../scripts/build_line_rating.py"
|
2023-06-02 14:59:06 +00:00
|
|
|
|
|
|
|
|
2024-08-15 09:42:21 +00:00
|
|
|
rule build_transmission_projects:
|
|
|
|
params:
|
|
|
|
transmission_projects=config_provider("transmission_projects"),
|
|
|
|
line_factor=config_provider("lines", "length_factor"),
|
2024-09-25 14:58:35 +00:00
|
|
|
s_max_pu=config_provider("lines", "s_max_pu"),
|
2024-08-15 09:42:21 +00:00
|
|
|
input:
|
|
|
|
base_network=resources("networks/base.nc"),
|
|
|
|
offshore_shapes=resources("offshore_shapes.geojson"),
|
|
|
|
europe_shape=resources("europe_shape.geojson"),
|
|
|
|
transmission_projects=lambda w: [
|
|
|
|
"data/transmission_projects/" + name
|
|
|
|
for name, include in config_provider("transmission_projects", "include")(
|
|
|
|
w
|
|
|
|
).items()
|
|
|
|
if include
|
|
|
|
],
|
|
|
|
output:
|
|
|
|
new_lines=resources("transmission_projects/new_lines.csv"),
|
|
|
|
new_links=resources("transmission_projects/new_links.csv"),
|
|
|
|
adjust_lines=resources("transmission_projects/adjust_lines.csv"),
|
|
|
|
adjust_links=resources("transmission_projects/adjust_links.csv"),
|
|
|
|
new_buses=resources("transmission_projects/new_buses.csv"),
|
|
|
|
log:
|
|
|
|
logs("build_transmission_projects.log"),
|
|
|
|
benchmark:
|
|
|
|
benchmarks("build_transmission_projects")
|
|
|
|
resources:
|
2024-08-26 14:51:57 +00:00
|
|
|
mem_mb=4000,
|
2024-08-15 09:42:21 +00:00
|
|
|
threads: 1
|
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
|
|
|
script:
|
|
|
|
"../scripts/build_transmission_projects.py"
|
|
|
|
|
|
|
|
|
2024-09-13 13:37:01 +00:00
|
|
|
rule add_transmission_projects_and_dlr:
|
|
|
|
params:
|
|
|
|
transmission_projects=config_provider("transmission_projects"),
|
|
|
|
dlr=config_provider("lines", "dynamic_line_rating"),
|
|
|
|
s_max_pu=config_provider("lines", "s_max_pu"),
|
|
|
|
input:
|
|
|
|
network=resources("networks/base.nc"),
|
|
|
|
dlr=lambda w: (
|
|
|
|
resources("dlr.nc")
|
|
|
|
if config_provider("lines", "dynamic_line_rating", "activate")(w)
|
|
|
|
else []
|
|
|
|
),
|
|
|
|
transmission_projects=lambda w: (
|
|
|
|
[
|
|
|
|
resources("transmission_projects/new_buses.csv"),
|
|
|
|
resources("transmission_projects/new_lines.csv"),
|
|
|
|
resources("transmission_projects/new_links.csv"),
|
|
|
|
resources("transmission_projects/adjust_lines.csv"),
|
|
|
|
resources("transmission_projects/adjust_links.csv"),
|
|
|
|
]
|
|
|
|
if config_provider("transmission_projects", "enable")(w)
|
|
|
|
else []
|
|
|
|
),
|
|
|
|
output:
|
|
|
|
network=resources("networks/base_extended.nc"),
|
|
|
|
log:
|
|
|
|
logs("add_transmission_projects_and_dlr.log"),
|
|
|
|
benchmark:
|
|
|
|
benchmarks("add_transmission_projects_and_dlr")
|
|
|
|
threads: 1
|
|
|
|
resources:
|
|
|
|
mem_mb=4000,
|
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
|
|
|
script:
|
|
|
|
"../scripts/add_transmission_projects_and_dlr.py"
|
|
|
|
|
|
|
|
|
2024-02-12 15:56:00 +00:00
|
|
|
def input_profile_tech(w):
|
|
|
|
return {
|
2024-03-04 18:36:41 +00:00
|
|
|
f"profile_{tech}": resources(f"profile_{tech}.nc")
|
2024-02-12 15:56:00 +00:00
|
|
|
for tech in config_provider("electricity", "renewable_carriers")(w)
|
|
|
|
}
|
2023-06-29 09:42:01 +00:00
|
|
|
|
2024-02-12 15:56:00 +00:00
|
|
|
|
|
|
|
def input_conventional(w):
|
|
|
|
return {
|
|
|
|
f"conventional_{carrier}_{attr}": fn
|
|
|
|
for carrier, d in config_provider("conventional", default={None: {}})(w).items()
|
|
|
|
if carrier in config_provider("electricity", "conventional_carriers")(w)
|
|
|
|
for attr, fn in d.items()
|
|
|
|
if str(fn).startswith("data/")
|
|
|
|
}
|
2023-06-02 14:59:06 +00:00
|
|
|
|
|
|
|
|
2024-07-19 17:23:35 +00:00
|
|
|
# Optional input when having Ukraine (UA) or Moldova (MD) in the countries list
|
|
|
|
def input_gdp_pop_non_nuts3(w):
|
|
|
|
countries = set(config_provider("countries")(w))
|
|
|
|
if {"UA", "MD"}.intersection(countries):
|
|
|
|
return {"gdp_pop_non_nuts3": resources("gdp_pop_non_nuts3.geojson")}
|
|
|
|
return {}
|
|
|
|
|
|
|
|
|
|
|
|
rule build_gdp_pop_non_nuts3:
|
|
|
|
params:
|
|
|
|
countries=config_provider("countries"),
|
|
|
|
input:
|
2024-09-13 13:37:01 +00:00
|
|
|
base_network=resources("networks/base_s.nc"),
|
|
|
|
regions=resources("regions_onshore_base_s.geojson"),
|
2024-07-19 17:23:35 +00:00
|
|
|
gdp_non_nuts3="data/bundle/GDP_per_capita_PPP_1990_2015_v2.nc",
|
|
|
|
pop_non_nuts3="data/bundle/ppp_2013_1km_Aggregated.tif",
|
|
|
|
output:
|
|
|
|
resources("gdp_pop_non_nuts3.geojson"),
|
|
|
|
log:
|
|
|
|
logs("build_gdp_pop_non_nuts3.log"),
|
|
|
|
benchmark:
|
|
|
|
benchmarks("build_gdp_pop_non_nuts3")
|
|
|
|
threads: 1
|
|
|
|
resources:
|
|
|
|
mem_mb=8000,
|
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
|
|
|
script:
|
|
|
|
"../scripts/build_gdp_pop_non_nuts3.py"
|
|
|
|
|
|
|
|
|
2024-09-13 13:37:01 +00:00
|
|
|
rule build_electricity_demand_base:
|
2023-05-15 08:33:17 +00:00
|
|
|
params:
|
2024-09-13 13:37:01 +00:00
|
|
|
distribution_key=config_provider("load", "distribution_key"),
|
2023-03-08 16:29:01 +00:00
|
|
|
input:
|
2024-07-19 17:23:35 +00:00
|
|
|
unpack(input_gdp_pop_non_nuts3),
|
2024-09-13 13:37:01 +00:00
|
|
|
base_network=resources("networks/base_s.nc"),
|
|
|
|
regions=resources("regions_onshore_base_s.geojson"),
|
|
|
|
nuts3=resources("nuts3_shapes.geojson"),
|
2024-03-04 16:48:56 +00:00
|
|
|
load=resources("electricity_demand.csv"),
|
2023-03-08 16:29:01 +00:00
|
|
|
output:
|
2024-09-13 13:37:01 +00:00
|
|
|
resources("electricity_demand_base_s.nc"),
|
2023-03-08 16:29:01 +00:00
|
|
|
log:
|
2024-09-13 13:37:01 +00:00
|
|
|
logs("build_electricity_demand_base_s.log"),
|
2023-03-08 16:29:01 +00:00
|
|
|
benchmark:
|
2024-09-13 13:37:01 +00:00
|
|
|
benchmarks("build_electricity_demand_base_s")
|
|
|
|
resources:
|
|
|
|
mem_mb=5000,
|
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
|
|
|
script:
|
|
|
|
"../scripts/build_electricity_demand_base.py"
|
|
|
|
|
|
|
|
|
|
|
|
rule build_hac_features:
|
|
|
|
params:
|
|
|
|
snapshots=config_provider("snapshots"),
|
|
|
|
drop_leap_day=config_provider("enable", "drop_leap_day"),
|
|
|
|
features=config_provider("clustering", "cluster_network", "hac_features"),
|
|
|
|
input:
|
|
|
|
cutout=lambda w: "cutouts/"
|
|
|
|
+ CDIR
|
|
|
|
+ config_provider("atlite", "default_cutout")(w)
|
|
|
|
+ ".nc",
|
|
|
|
regions=resources("regions_onshore_base_s.geojson"),
|
|
|
|
output:
|
|
|
|
resources("hac_features.nc"),
|
|
|
|
log:
|
|
|
|
logs("build_hac_features.log"),
|
|
|
|
benchmark:
|
|
|
|
benchmarks("build_hac_features")
|
|
|
|
threads: config["atlite"].get("nprocesses", 4)
|
2023-03-08 16:29:01 +00:00
|
|
|
resources:
|
2023-07-05 09:07:36 +00:00
|
|
|
mem_mb=10000,
|
2023-03-08 16:44:25 +00:00
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
2023-03-08 16:29:01 +00:00
|
|
|
script:
|
2024-09-13 13:37:01 +00:00
|
|
|
"../scripts/build_hac_features.py"
|
2023-03-08 16:29:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
rule simplify_network:
|
2023-05-15 08:33:17 +00:00
|
|
|
params:
|
2023-08-15 13:02:41 +00:00
|
|
|
simplify_network=config_provider("clustering", "simplify_network"),
|
2024-09-13 13:37:01 +00:00
|
|
|
cluster_network=config_provider("clustering", "cluster_network"),
|
2023-08-15 13:02:41 +00:00
|
|
|
aggregation_strategies=config_provider(
|
|
|
|
"clustering", "aggregation_strategies", default={}
|
2023-12-06 09:09:17 +00:00
|
|
|
),
|
2023-08-15 13:02:41 +00:00
|
|
|
p_max_pu=config_provider("links", "p_max_pu", default=1.0),
|
2023-03-08 16:29:01 +00:00
|
|
|
input:
|
2024-09-13 13:37:01 +00:00
|
|
|
network=resources("networks/base_extended.nc"),
|
2023-08-23 15:14:57 +00:00
|
|
|
regions_onshore=resources("regions_onshore.geojson"),
|
|
|
|
regions_offshore=resources("regions_offshore.geojson"),
|
2023-03-08 16:29:01 +00:00
|
|
|
output:
|
2024-09-13 13:37:01 +00:00
|
|
|
network=resources("networks/base_s.nc"),
|
|
|
|
regions_onshore=resources("regions_onshore_base_s.geojson"),
|
|
|
|
regions_offshore=resources("regions_offshore_base_s.geojson"),
|
|
|
|
busmap=resources("busmap_base_s.csv"),
|
2023-03-08 16:29:01 +00:00
|
|
|
log:
|
2024-09-13 13:37:01 +00:00
|
|
|
logs("simplify_network.log"),
|
2023-03-08 16:29:01 +00:00
|
|
|
benchmark:
|
2024-09-13 13:37:01 +00:00
|
|
|
benchmarks("simplify_network_b")
|
2023-03-08 16:29:01 +00:00
|
|
|
threads: 1
|
|
|
|
resources:
|
2023-08-03 16:21:36 +00:00
|
|
|
mem_mb=12000,
|
2023-03-08 16:44:25 +00:00
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
2023-03-08 16:29:01 +00:00
|
|
|
script:
|
2023-03-08 16:44:25 +00:00
|
|
|
"../scripts/simplify_network.py"
|
2023-03-08 16:29:01 +00:00
|
|
|
|
|
|
|
|
2024-08-23 15:35:46 +00:00
|
|
|
# Optional input when using custom busmaps - Needs to be tailored to selected base_network
|
|
|
|
def input_cluster_network(w):
|
|
|
|
if config_provider("enable", "custom_busmap", default=False)(w):
|
|
|
|
base_network = config_provider("electricity", "base_network")(w)
|
2024-09-13 13:37:01 +00:00
|
|
|
custom_busmap = f"data/busmaps/base_s_{w.clusters}_{base_network}.csv"
|
2024-08-23 15:35:46 +00:00
|
|
|
return {"custom_busmap": custom_busmap}
|
|
|
|
return {"custom_busmap": []}
|
|
|
|
|
|
|
|
|
2023-03-08 16:29:01 +00:00
|
|
|
rule cluster_network:
|
2023-05-15 08:33:17 +00:00
|
|
|
params:
|
2023-08-15 13:02:41 +00:00
|
|
|
cluster_network=config_provider("clustering", "cluster_network"),
|
|
|
|
aggregation_strategies=config_provider(
|
|
|
|
"clustering", "aggregation_strategies", default={}
|
|
|
|
),
|
|
|
|
custom_busmap=config_provider("enable", "custom_busmap", default=False),
|
2024-02-10 16:22:01 +00:00
|
|
|
focus_weights=config_provider("clustering", "focus_weights", default=None),
|
2023-08-15 13:02:41 +00:00
|
|
|
renewable_carriers=config_provider("electricity", "renewable_carriers"),
|
|
|
|
conventional_carriers=config_provider(
|
|
|
|
"electricity", "conventional_carriers", default=[]
|
2023-12-06 09:09:17 +00:00
|
|
|
),
|
2023-08-15 13:02:41 +00:00
|
|
|
max_hours=config_provider("electricity", "max_hours"),
|
|
|
|
length_factor=config_provider("lines", "length_factor"),
|
2023-03-08 16:29:01 +00:00
|
|
|
input:
|
2024-08-23 15:35:46 +00:00
|
|
|
unpack(input_cluster_network),
|
2024-09-13 13:37:01 +00:00
|
|
|
network=resources("networks/base_s.nc"),
|
|
|
|
regions_onshore=resources("regions_onshore_base_s.geojson"),
|
|
|
|
regions_offshore=resources("regions_offshore_base_s.geojson"),
|
|
|
|
busmap=ancient(resources("busmap_base_s.csv")),
|
|
|
|
hac_features=lambda w: (
|
|
|
|
resources("hac_features.nc")
|
|
|
|
if config_provider("clustering", "cluster_network", "algorithm")(w)
|
|
|
|
== "hac"
|
|
|
|
else []
|
2024-02-17 17:35:26 +00:00
|
|
|
),
|
2024-09-13 13:37:01 +00:00
|
|
|
load=resources("electricity_demand_base_s.nc"),
|
2023-03-08 16:29:01 +00:00
|
|
|
output:
|
2024-09-13 13:37:01 +00:00
|
|
|
network=resources("networks/base_s_{clusters}.nc"),
|
|
|
|
regions_onshore=resources("regions_onshore_base_s_{clusters}.geojson"),
|
|
|
|
regions_offshore=resources("regions_offshore_base_s_{clusters}.geojson"),
|
|
|
|
busmap=resources("busmap_base_s_{clusters}.csv"),
|
|
|
|
linemap=resources("linemap_base_s_{clusters}.csv"),
|
2023-03-08 16:29:01 +00:00
|
|
|
log:
|
2024-09-13 13:37:01 +00:00
|
|
|
logs("cluster_network_base_s_{clusters}.log"),
|
2023-03-08 16:29:01 +00:00
|
|
|
benchmark:
|
2024-09-13 13:37:01 +00:00
|
|
|
benchmarks("cluster_network_base_s_{clusters}")
|
2023-03-08 16:29:01 +00:00
|
|
|
threads: 1
|
|
|
|
resources:
|
2023-07-05 09:07:36 +00:00
|
|
|
mem_mb=10000,
|
2023-03-08 16:44:25 +00:00
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
2023-03-08 16:29:01 +00:00
|
|
|
script:
|
2023-03-08 16:44:25 +00:00
|
|
|
"../scripts/cluster_network.py"
|
2023-03-08 16:29:01 +00:00
|
|
|
|
|
|
|
|
2024-09-13 13:37:01 +00:00
|
|
|
def input_profile_tech(w):
|
|
|
|
return {
|
|
|
|
f"profile_{tech}": resources(
|
|
|
|
"profile_{clusters}_" + tech + ".nc"
|
|
|
|
if tech != "hydro"
|
|
|
|
else f"profile_{tech}.nc"
|
|
|
|
)
|
|
|
|
for tech in config_provider("electricity", "renewable_carriers")(w)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def input_conventional(w):
|
|
|
|
return {
|
|
|
|
f"conventional_{carrier}_{attr}": fn
|
|
|
|
for carrier, d in config_provider("conventional", default={None: {}})(w).items()
|
|
|
|
if carrier in config_provider("electricity", "conventional_carriers")(w)
|
|
|
|
for attr, fn in d.items()
|
|
|
|
if str(fn).startswith("data/")
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
rule add_electricity:
|
2023-05-15 08:33:17 +00:00
|
|
|
params:
|
2024-09-13 13:37:01 +00:00
|
|
|
line_length_factor=config_provider("lines", "length_factor"),
|
|
|
|
link_length_factor=config_provider("links", "length_factor"),
|
|
|
|
scaling_factor=config_provider("load", "scaling_factor"),
|
|
|
|
countries=config_provider("countries"),
|
|
|
|
snapshots=config_provider("snapshots"),
|
|
|
|
renewable=config_provider("renewable"),
|
|
|
|
electricity=config_provider("electricity"),
|
|
|
|
conventional=config_provider("conventional"),
|
2023-08-15 13:02:41 +00:00
|
|
|
costs=config_provider("costs"),
|
2024-09-13 13:37:01 +00:00
|
|
|
foresight=config_provider("foresight"),
|
|
|
|
drop_leap_day=config_provider("enable", "drop_leap_day"),
|
|
|
|
consider_efficiency_classes=config_provider(
|
|
|
|
"clustering", "consider_efficiency_classes"
|
|
|
|
),
|
|
|
|
aggregation_strategies=config_provider("clustering", "aggregation_strategies"),
|
|
|
|
exclude_carriers=config_provider("clustering", "exclude_carriers"),
|
2023-03-08 16:29:01 +00:00
|
|
|
input:
|
2024-09-13 13:37:01 +00:00
|
|
|
unpack(input_profile_tech),
|
|
|
|
unpack(input_conventional),
|
|
|
|
base_network=resources("networks/base_s_{clusters}.nc"),
|
2024-02-17 17:35:26 +00:00
|
|
|
tech_costs=lambda w: resources(
|
2024-03-01 14:54:42 +00:00
|
|
|
f"costs_{config_provider('costs', 'year')(w)}.csv"
|
2024-02-17 17:35:26 +00:00
|
|
|
),
|
2024-09-13 13:37:01 +00:00
|
|
|
regions=resources("regions_onshore_base_s_{clusters}.geojson"),
|
|
|
|
powerplants=resources("powerplants_s_{clusters}.csv"),
|
|
|
|
hydro_capacities=ancient("data/hydro_capacities.csv"),
|
|
|
|
unit_commitment="data/unit_commitment.csv",
|
|
|
|
fuel_price=lambda w: (
|
|
|
|
resources("monthly_fuel_price.csv")
|
|
|
|
if config_provider("conventional", "dynamic_fuel_price")(w)
|
|
|
|
else []
|
|
|
|
),
|
|
|
|
load=resources("electricity_demand_base_s.nc"),
|
|
|
|
busmap=resources("busmap_base_s_{clusters}.csv"),
|
2023-03-08 16:29:01 +00:00
|
|
|
output:
|
2024-09-13 13:37:01 +00:00
|
|
|
resources("networks/base_s_{clusters}_elec.nc"),
|
2023-03-08 16:29:01 +00:00
|
|
|
log:
|
2024-09-13 13:37:01 +00:00
|
|
|
logs("add_electricity_{clusters}.log"),
|
2023-03-08 16:29:01 +00:00
|
|
|
benchmark:
|
2024-09-13 13:37:01 +00:00
|
|
|
benchmarks("add_electricity_{clusters}")
|
2023-03-08 16:29:01 +00:00
|
|
|
threads: 1
|
|
|
|
resources:
|
2024-09-13 13:37:01 +00:00
|
|
|
mem_mb=10000,
|
2023-03-08 16:44:25 +00:00
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
2023-03-08 16:29:01 +00:00
|
|
|
script:
|
2024-09-13 13:37:01 +00:00
|
|
|
"../scripts/add_electricity.py"
|
2023-03-08 16:29:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
rule prepare_network:
|
2023-05-15 08:33:17 +00:00
|
|
|
params:
|
2024-02-17 16:16:28 +00:00
|
|
|
time_resolution=config_provider("clustering", "temporal", "resolution_elec"),
|
2023-08-15 13:02:41 +00:00
|
|
|
links=config_provider("links"),
|
|
|
|
lines=config_provider("lines"),
|
|
|
|
co2base=config_provider("electricity", "co2base"),
|
2024-02-10 16:22:01 +00:00
|
|
|
co2limit_enable=config_provider("electricity", "co2limit_enable", default=False),
|
2023-08-15 13:02:41 +00:00
|
|
|
co2limit=config_provider("electricity", "co2limit"),
|
2024-02-10 16:22:01 +00:00
|
|
|
gaslimit_enable=config_provider("electricity", "gaslimit_enable", default=False),
|
2023-08-15 13:02:41 +00:00
|
|
|
gaslimit=config_provider("electricity", "gaslimit"),
|
|
|
|
max_hours=config_provider("electricity", "max_hours"),
|
|
|
|
costs=config_provider("costs"),
|
2024-02-17 17:35:26 +00:00
|
|
|
adjustments=config_provider("adjustments", "electricity"),
|
2024-02-10 16:22:01 +00:00
|
|
|
autarky=config_provider("electricity", "autarky", default={}),
|
2024-03-14 14:38:36 +00:00
|
|
|
drop_leap_day=config_provider("enable", "drop_leap_day"),
|
2023-03-08 16:29:01 +00:00
|
|
|
input:
|
2024-09-13 13:37:01 +00:00
|
|
|
resources("networks/base_s_{clusters}_elec.nc"),
|
2024-02-17 17:35:26 +00:00
|
|
|
tech_costs=lambda w: resources(
|
2024-03-01 14:54:42 +00:00
|
|
|
f"costs_{config_provider('costs', 'year')(w)}.csv"
|
2024-02-17 17:35:26 +00:00
|
|
|
),
|
2024-02-10 16:22:01 +00:00
|
|
|
co2_price=lambda w: resources("co2_price.csv") if "Ept" in w.opts else [],
|
2023-03-08 16:29:01 +00:00
|
|
|
output:
|
2024-09-13 13:37:01 +00:00
|
|
|
resources("networks/base_s_{clusters}_elec_l{ll}_{opts}.nc"),
|
2023-03-08 16:29:01 +00:00
|
|
|
log:
|
2024-09-13 13:37:01 +00:00
|
|
|
logs("prepare_network_base_s_{clusters}_elec_l{ll}_{opts}.log"),
|
2023-03-08 16:29:01 +00:00
|
|
|
benchmark:
|
2024-09-13 13:37:01 +00:00
|
|
|
benchmarks("prepare_network_base_s_{clusters}_elec_l{ll}_{opts}")
|
2023-03-08 16:29:01 +00:00
|
|
|
threads: 1
|
|
|
|
resources:
|
|
|
|
mem_mb=4000,
|
2023-03-08 16:44:25 +00:00
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
2023-03-08 16:29:01 +00:00
|
|
|
script:
|
2023-03-08 16:44:25 +00:00
|
|
|
"../scripts/prepare_network.py"
|
Introducing OpenStreetMap high-voltage grid to PyPSA-Eur (#1079)
* Implemented which uses the overpass API to download power features for individual countries.
* Extended rule by input.
* Bug fixes and improvements to clean_osm_data.py. Added in retrieve_osm_data.py.
* Updated clean_osm_data and retrieve_osm_data to create clean substations.
* Finished clean_osm_data function.
* Added check whether line is a circle. If so, drop it.
* Extended build_electricity.smk by build_osm_network.py
* Added build_osm_network
* Working osm-network-fast
* Bug fixes.
* Finalised and cleaned including docstrings.
* Added try catch to retrieve_osm_data. Allows for parallelisation of downloads.
* Updated cleaning process.
* Set maximum number of threads for retrieving to 4, wrt. fair usage policy and potential request errors.
* Intermediate update on clean_osm_data.py. Added docstrings.
* Bug fix.
* Bug fix.
* Bug fixes in data types out of clean_osm_data
* Significant improvements to retrieve_osm_data, clean_osm_data. Cleaned code. Speed improvements
* Cleaned config.
* Fixes.
* Bug fixes.
* Updated default config
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Removed overpass from required packages. Not needed anymore.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Added links_relations (route = power, frequency = 0) to retrieval. This will change how HVDC links are extracted in the near future.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Work-in-progress clean_osm_data
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Added clean links output to clean_osm_data. Script uses OSM relations to retrieve clean HVDC links.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* New code for integrating HVDC links. Using relations. Base network implementation functioning.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* removed manual line dropping.
* Updated clean script
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* reverted Snakefile to default: sync settings
* added prebuilt functionality.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Updated build_electricity.smk to work with scenario management.
* removed commented-out code.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* removed commented-out code.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Fixed bug in pdf export by substituting pdf export with svg.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Bug-fix Snakefile
* dropped not needed columns from build_osm_network.
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Updated build_shapes, config.default and clean_osm_data.
* pre-commit changes.
* test
* Added initial prepare_osm_network_release.py script
* Finalised prepare_osm_network_release script to build clean and stable OSM base_network input files.
* Added new rules/development.smk
* Updated clean_osm_data to add substation_centroid to linestrings
* Updated clean_osm_data to add substation_centroid to linestrings
* Updated clean_osm_data to add substation_centroid to linestrings
* Updated clean_osm_data to add substation_centroid to linestrings
* Added osm-prebuilt functionality and zenodo sandbox repository.
* Updated clean_osm_data to geopandas v.1.01
* Made base_network and build_osm_network function more robust for empty links.
* Made base_network and build_osm_network function more robust for empty links.
* Bug fix in base_network. Voltage level null is now kept (relevant e.g. for Corsica)
* Merge with hcanges in upstream PR 1146. Fixing UA and MD.
* Updated Zenodo and fixed prepare_osm_network_release
* Updated osm network release.
* Updated prepare osm network release.
* Updated MD, UA scripts.
* Cleaned determine_availability_matrix_MD_UA.py, removed redundant code
* Bug fixes.
* Bug fixes for UA MD scripts.
* Rename of build script.
* Bug fix: only distribute load to buses with substation.
* Updated zenodo sandbox repository.
* Updated config.default
* Cleaned config.default.yaml: Related settings grouped together and redundant voltage settings aggregated.
* Cleaned config.default.yaml: Related settings grouped together and redundant voltage settings aggregated. Added release notes.
* Updated Zenodo repositories for OSM-prebuilt to offcial publication.
* Updated configtables
* Updated links.csv: Under_construction lines to in commission.
* Updated link 8394 and parameter_corrections: Continuation of North-Sea-Link.
* Major update: fix simplify_network, fix Corsica, updated build_osm_network to include lines overpassing nodes.
* remove config backup
* Bug fix: Carrier type of all supernodes corrected to 'AC'
* Bug fix: Carrier type of all supernodes corrected to 'AC'
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* Updated rules and base_network for compatibility with TYNDP projects.
* Updated Zenodo repository and prebuilt network to include 150 kV HVDC connections.
* Removed outdated config backup.
* Implemented all comments from PR #1079. Cleaned up OSM implementation.
* Bug fix: Added all voltages, 200 kV-750 kV, to default config.
* Cleaning and bugfixes.
* Updated Zenodo repository to https://zenodo.org/records/13358976. Added converter voltages, 'underground' property for DC lines/cables, and included Konti-Skan HVDC (DK-SE). Added compatibility with https://github.com/PyPSA/pypsa-eur/pull/1079 and https://github.com/PyPSA/pypsa-eur/pull/1085
* Apply suggestions from code review
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* simplify_network: handle complicated transformer topologies
* [pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
* syntax fix
---------
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Fabian Neumann <fabian.neumann@outlook.de>
2024-08-22 13:01:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
if config["electricity"]["base_network"] == "osm-raw":
|
|
|
|
|
|
|
|
rule clean_osm_data:
|
|
|
|
input:
|
|
|
|
cables_way=expand(
|
|
|
|
"data/osm-raw/{country}/cables_way.json",
|
|
|
|
country=config_provider("countries"),
|
|
|
|
),
|
|
|
|
lines_way=expand(
|
|
|
|
"data/osm-raw/{country}/lines_way.json",
|
|
|
|
country=config_provider("countries"),
|
|
|
|
),
|
|
|
|
links_relation=expand(
|
|
|
|
"data/osm-raw/{country}/links_relation.json",
|
|
|
|
country=config_provider("countries"),
|
|
|
|
),
|
|
|
|
substations_way=expand(
|
|
|
|
"data/osm-raw/{country}/substations_way.json",
|
|
|
|
country=config_provider("countries"),
|
|
|
|
),
|
|
|
|
substations_relation=expand(
|
|
|
|
"data/osm-raw/{country}/substations_relation.json",
|
|
|
|
country=config_provider("countries"),
|
|
|
|
),
|
|
|
|
offshore_shapes=resources("offshore_shapes.geojson"),
|
|
|
|
country_shapes=resources("country_shapes.geojson"),
|
|
|
|
output:
|
|
|
|
substations=resources("osm-raw/clean/substations.geojson"),
|
|
|
|
substations_polygon=resources("osm-raw/clean/substations_polygon.geojson"),
|
|
|
|
lines=resources("osm-raw/clean/lines.geojson"),
|
|
|
|
links=resources("osm-raw/clean/links.geojson"),
|
|
|
|
log:
|
|
|
|
logs("clean_osm_data.log"),
|
|
|
|
benchmark:
|
|
|
|
benchmarks("clean_osm_data")
|
|
|
|
threads: 1
|
|
|
|
resources:
|
|
|
|
mem_mb=4000,
|
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
|
|
|
script:
|
|
|
|
"../scripts/clean_osm_data.py"
|
|
|
|
|
|
|
|
|
|
|
|
if config["electricity"]["base_network"] == "osm-raw":
|
|
|
|
|
|
|
|
rule build_osm_network:
|
|
|
|
input:
|
|
|
|
substations=resources("osm-raw/clean/substations.geojson"),
|
|
|
|
lines=resources("osm-raw/clean/lines.geojson"),
|
|
|
|
links=resources("osm-raw/clean/links.geojson"),
|
|
|
|
country_shapes=resources("country_shapes.geojson"),
|
|
|
|
output:
|
|
|
|
lines=resources("osm-raw/build/lines.csv"),
|
|
|
|
links=resources("osm-raw/build/links.csv"),
|
|
|
|
converters=resources("osm-raw/build/converters.csv"),
|
|
|
|
transformers=resources("osm-raw/build/transformers.csv"),
|
|
|
|
substations=resources("osm-raw/build/buses.csv"),
|
|
|
|
lines_geojson=resources("osm-raw/build/geojson/lines.geojson"),
|
|
|
|
links_geojson=resources("osm-raw/build/geojson/links.geojson"),
|
|
|
|
converters_geojson=resources("osm-raw/build/geojson/converters.geojson"),
|
|
|
|
transformers_geojson=resources("osm-raw/build/geojson/transformers.geojson"),
|
|
|
|
substations_geojson=resources("osm-raw/build/geojson/buses.geojson"),
|
|
|
|
log:
|
|
|
|
logs("build_osm_network.log"),
|
|
|
|
benchmark:
|
|
|
|
benchmarks("build_osm_network")
|
|
|
|
threads: 1
|
|
|
|
resources:
|
|
|
|
mem_mb=4000,
|
|
|
|
conda:
|
|
|
|
"../envs/environment.yaml"
|
|
|
|
script:
|
|
|
|
"../scripts/build_osm_network.py"
|