Skip to content

JonasBergHansen/Power-Flow-Balancing-with-Decentralized-Graph-Neural-Networks

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation


This repository provides code for solving PF with Graph Neural Networks. In particular, the code can be used to reproduce the experimental results presented in the paper Power Flow Balancing with Decentralized Graph Neural Networks.


Setup

The code is based on Python 3.9.7, TensorFlow 2.5.0, and Spektral 1.0.6.

The code can be executed by installing an Anaconda environment from the environment_{os}.yml:

conda env create -f environment_{os}.yml

The YAML file can be found here for Windows 10 and here for Linux (made with Ubuntu 20.04). An equivalent file with Tensorflow 2.6.0 for Intel Macs can be found here (not tested).

If the environment created from the YAML file for some reason does not work, a compatible environment can be made from scratch by installing the above versions of Python, Tensorflow and Spektral, along with their dependencies and a compatible version of Matplotlib.


Files

The datasets used in the experiments can be found here. The data is stored as .npy files and must therefore be collected using numpy.load. Moreover, some of these files contain arrays of different sizes or scipy.sparse matrices and are thus stored as numpy objects. To load these, set allow_pickle = True when loading. Examples for how this is done can be seen in the experiment scripts in the code folder.

Note that folders named graph_structured contain the branch/line graph representations of the power grids. Here, files starting with X contain graph vertex features (meaning bus and branch features), files starting with A contain the binary adjacency matrices for the line graphs and files starting with y contain the branch PF solutions.

Folders named flattened contain the data representations used by the Global MLP, which come in form of flattened one-dimensional arrays. Here, files starting with X contain bus features, those starting with E contain bus features and those starting with y contain branch PF solutions.

A more in-depth explanation of the strucure of the data is given here.

An example of how to reproduce the data generation and construction is given here. Do note that the code implementations in this folder are not the most efficient and only really suitable for offline dataset construction. Also, the Matlab script for the grid generation requires MATPOWER.


Execution

To execute the experiments, the data found in the above link must be placed inside the data folder. The experiments can then be executed by running the script files in the code folder. So, for instance, to perform the training and testing for the first experiment from the terminal, navigate to the code folder and execute the following

python experiment1.py

Parameters such as batch size, learning rate and number of training epochs can be adjusted within the scripts.


Citation

Please, cite the original paper if you are using our PF solver in your research

@article{hansen2022power,
  title={Power flow balancing with decentralized graph neural networks},
  author={Hansen, Jonas Berg and Anfinsen, Stian Normann and Bianchi, Filippo Maria},
  journal={IEEE Transactions on Power Systems},
  year={2022},
  publisher={IEEE}
}

About

Repository code for Power Flow Balancing with Decentralized Graph Neural Networks

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published