This project is for exploring application of Deep Learning (DL) to power system analysis. Google's TensorFlow is used as ML engine, while InterPSS is used to provide power system analysis/simulation model service: 1) to generate training data to train the neural network (NN) model; 2) provide service for checking model prediction accuracy.
The project software system architecture is shown in the above figure. It includes the following three main components:
- Google TensorFlow DL Engine
TensorFlow is an open source software library by Google for numerical computation using data flow graphs. Nodes in the graph represent mathematical operations, while the graph edges represent the multidimensional data arrays (tensors) communicated between them. The flexible architecture allows you to deploy computation to one or more CPUs or GPUs. See the Installation and Configuration page for instructions to install and configure TensorFlow on a Windows environment to run this project.
- Power System Analysis Model Service
The Power System Model Service module provides service to the TensorFlow DL engine. The analysis model is based on InterPSS written in Java. The default TensorFlow programming language is Python. Hazelcast Python Cient lib or Py4J could be used to bridge the communication between TensorFlow Python runtime environment and InterPSS Java runtime environment.
- Training Case Generator
The NN model is first trained and then used for power system analysis, for example, predicting network bus voltage for Loadflow analysis. An NN model is in general trained for certain purpose using a set of training data relevant to the problem to solve. The system architecture allows different traning case generators to be plugged-in for different model training purposes. A Training Case Generator Interface is defined for the traning case generator implementation.
Neural networks typically consist of multiple layers, and the signal path traverses from the input to the output layer of neural units. Back propagation is the use of forward stimulation to reset weights on the "front" neural units and this is sometimes done in combination with training or optimization where the correct result (training data) is known.
A typical NN model is shown in the above figure. The output of previous layer [x] is weighted-summarized to produce [y] for the next layer.
[y] = [W][x] + [b]
where, [W] - weight matrix
[b] - bias vector
- Project Wiki
- "Application of Machine Learning to Power Grid Analysis" IEEE PES Webinar 2017-11-21
Apache License, Version 2.0 Copyright (C) Apache Software Foundation