This repository provides a series of OPF test cases that were used in the following paper. These test cases are made available here to allow other authors to compare their solutions to ours.
V. Roberge and M. Tarbouchi, “Hybrid Method Based on Metaheuristics and Interior Point for Optimal Power Flow,” Submitted to Fifth International Conference on Intelligent Computing in Data Sciences (ICDS 2021), Fez, Morocco, 2021.
Notes:
1. The naming of the different test cases is based on the number of buses.
2. The file format is compatible with the MATPOWER Case Format v2 but includes additional structures for transformers and SVARs.
3. The solutions with the lowest cost are highlighted in bold.
4. To test a solution, run a power flow analysis in MATPOWER and compute the generation cost as follows:
mpc = runpf(‘case30_ga’);
cost = sum(totcost(mpc.gencost, mpc.gen(:,2)));
Test case | Source | Network Description | Initial state ($/hour) |
Optimized Solutions Calculated by the Proposed Algorithms from the Paper (generation costs in $/hour) |
||||||||
Number of gen. |
Number of transfo. |
Number of SVARs |
Number of control variables |
Genetic Algorithm |
Particle Swarm Optimization |
Shuffled Frog Leaping Algorithm |
Gravitational Search Algorithm |
Grey Wolf Algorithm |
||||
1 | case30 | [1] | 6 | 4 | 9 | 25 | 900.73 | 799.04 | 799.03 | 799.03 | 799.03 | 799.03 |
2 | case57 | [2] | 7 | 17 | 1 | 32 | 51,348.22 | 41,687.41 | 41,687.34 | 41,687.34 | 41,687.78 | 41,691.10 |
3 | case89 | [2] | 12 | 32 | 1 | 57 | 5,865.90 | 5,809.95 | 5,809.94 | 5,809.96 | 5,809.97 | 5,810.15 |
4 | case118 | [2] | 54 | 9 | 12 | 129 | 131,220.63 | 129,611.33 | 129,611.33 | 129,611.33 | 129,611.36 | 129,611.33 |
5 | case300 | [2] | 69 | 62 | 14 | 214 | 724,699.63 | 719,393.06 | 719,387.53 | 719,746.84 | 719,381.39 | 719,425.01 |
6 | case2383 | [2] | 327 | 170 | 0 | 824 | 1,875,936.33 | 1,857,453.57 | 1,857,819.01 | 1,858,144.22 | 1,857,480.07 | 1,859,334.35 |
References:
[1] K. Y. Lee, Y. M. Park, and J. L. Ortiz, “A United Approach to Optimal Real and Reactive Power Dispatch,” IEEE Transactions on Power Apparatus and Systems, vol. PAS-104, no. 5, pp. 1147–1153, May 1985.
[2] R. D. Zimmerman, C. E. Murillo-Sánchez, and D. Gan, “MATPOWER – A MATLAB Power System Simulation Package.” [Online]. Available: https://matpower.org/. [Accessed: 23-Jun-2021].