Skip to content

Commit

Permalink
Add figure for spatial clustering methods
Browse files Browse the repository at this point in the history
  • Loading branch information
KathiEsterl committed Mar 15, 2024
1 parent b51d61c commit 667be36
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Binary file added doc/images/complexity_spatial.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 7 additions & 1 deletion doc/theoretical_background.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,18 @@ The data model is characterised by a high spatial (about 8,000 electrical and 60
Reduction in Spatial Dimension:
-------------------------------

The **ehv clustering** maps all electrical nodes with a voltage level below the extra-high voltage level to their nearest neighboring node in the extra-high voltage level with the Dijkstra’s algorithm (110 kV —> 220 / 380 kV).
The **ehv clustering** maps all electrical nodes with a voltage level below the extra-high voltage level to their nearest neighboring node in the extra-high voltage level with the Dijkstra’s algorithm (110 kV —> 220 kV / 380 kV).

The **k-means Clustering** reduces the electrical or gas network to an adjustable number of nodes by considering the geographical position of the respective nodes. This method has been implemented within PyPSA by [Hoersch]_.

The **k-medoids Dijkstra Clustering** aggregates nodes considering the network topology. First, a k-medoids Clustering is used dividing the original nodes of the network into groups by their geographical positions while identifiying the geographical medoid nodes per cluster. Afterwards, the original nodes in the original network are assigned to the former identified medoids considering the original network’s topology applying a Dijkstra’s algorithm considering the line lengths. Afterall, the original nodes are represented by one aggregated node per cluster at the position of the former identified medoid node.

The procedures of the two methods are depicted in the following figure [Esterl2024]_:

.. figure:: images/complexity_spatial.png
:align: center
:width: 800

In general, the clustering of the **sector-coupled system** is divided into two steps:
First, the electrical and gas grid are clustered independently using one of the methods described above. Afterwards, nodes of the other sectors (hydrogen, heat, e-mobility and DSM nodes) are mapped according to their connection to electricity or gas buses and aggregated to one node per carrier.

Expand Down

0 comments on commit 667be36

Please sign in to comment.