Model

Model

The idea behind the SyntheticGrids module is to provide a standalone and easily expandable framework for generating synthetic grids. The goal is to be able to use different levels of approximation when building grids. Interfacing with other packages should be possible through export functions.

A synthetic grid is constituted basically by buses connected via transmission lines. There are several relevant points when automatically building a network with this package. We discuss these on a per type basis below.

Bus

Bus is an abstract type that acts as parent to the LoadBus, GenBus and Substation types. Pragmatically, the one common feature to all of these is their geographical location being specified by latitude and longitude values. This is a better choice than adopting cartesian coordinates, as that would require some kind of projection scheme, such as the Mercator or the UTM one. The issue with adopting a projection scheme is that none of the available ones are adequate for being applied over very large areas, such as the territory span of the USA. Therefore, coordinates are kept in a latitude-longitude format and, whenever we need to compute real distances, we adopt the haversine formula [1] with a radius of 6369.783km, which corresponds to Earth's radius at latitude 38.8 (the center of the region we model).

Bus siting and sizing is done according to the approach presented in reference [2].

LoadBus

The main properties of a LoadBus are geographical location, load and operating voltage values. Since none of this information is public, we have to adopt an approach based on some kind of public data. Overbye et al. [2] have devised the approach which we adopt in the module.

GenBus

GenBus is the type that represents power plants. The reason for creating a bus for each power plant, instead of a bus for each Generator, is the fact that the data we use for placing generation buses is organized in this way. There is an official public yearly survey on all generators that operate in the USA [4] that provides us with most of the important information on power plants.

Generators

All data on generators is directly extracted from the power plant survey [4], which provides us with:

Substations

A substation groups several other buses into an aggregate structure. We are directly implementing the clustering algorithm presented by Birchfield et al. in reference [5]. Substations are divided in three kinds: pure load, pure generation and both load and generation. Transmission substations are ignored since we are not using connection buses.

TransLines

Transmission lines are placed at every connection between two buses as determined by our connection topology builder (explained ahead). Currently we only attribute two features to the lines:

Building connection topologies:

The connections between buses are built by leveraging the method developed and explained in detail by Soltan and Zussman [8]. This method is highly stochastic and aims to reproduce the natural expansion of a power grid. There are two steps in this approach: first, a tunable weight spanning tree is generated, producing a connected network; second, a reinforcement procedure is executed, in order to increase the robustness of the resulting network, in accordance with real cases. Results obtained via this algorithm have been shown to be very realistic [8].

References:

[1]

Haversine formula: https://en.wikipedia.org/wiki/Haversine_formula

[2]

Gegner, Kathleen M., et al. "A methodology for the creation of geographically realistic synthetic power flow models." Power and Energy Conference at Illinois (PECI), 2016 IEEE. IEEE, 2016.

[3]

Census data: https://www.census.gov/geo/maps-data/data/gazetteer2010.html

[4]

Generator survey: https://www.eia.gov/electricity/data/eia860/index.html

[5]

Birchfield, Adam B., et al. "Grid Structural Characteristics as Validation Criteria for Synthetic Networks." IEEE Transactions on Power Systems (2016).

[6]

LaForest, J. J. Transmission-line reference book. 345 kV and above. No. EPRI-EL-2500. General Electric Co., Pittsfield, MA (USA). Large Transformer Div.; General Electric Co., Schenectady, NY (USA). Electric Utility Systems Engineering Dept., 1981.

[7]

Glover, J. Duncan, Mulukutla S. Sarma, and Thomas Overbye. Power System Analysis & Design, SI Version. Cengage Learning, 2012.

[8]

Soltan, Saleh, and Gil Zussman. "Generation of synthetic spatially embedded power grid networks." arXiv:1508.04447 [cs.SY], Aug. 2015.