|
1 |
| -## Data Files (in /data) |
| 1 | +[**Paper**](https://dl.acm.org/doi/10.1145/3538637.3538853) | |
| 2 | +[**Video**](https://youtu.be/iDhDfDrXqoA) |
| 3 | + |
| 4 | +# Robust Online Voltage Control with an Unknown Grid Topology |
| 5 | + |
| 6 | +[Christopher Yeh](https://chrisyeh96.github.io/), [Jing Yu](https://scholar.google.com/citations?user=akiDVE8AAAAJ&hl=en), [Yuanyuan Shi](https://yyshi.eng.ucsd.edu/), [Adam Wierman](https://adamwierman.com/) |
| 7 | + |
| 8 | +**California Institute of Technology and UC San Diego** |
| 9 | + |
| 10 | + |
| 11 | +## Data Files (in `/data`) |
2 | 12 |
|
3 | 13 | **PV.mat**
|
4 | 14 | - contains single key `'actual_PV_profile'`
|
5 | 15 | - float64 array, shape [14421]
|
6 | 16 | - min: 0.0, max: ~13.4
|
7 |
| -- units: TODO |
8 |
| -- TODO: sign |
| 17 | +- units: MW |
9 | 18 | - description: solar generation, measured every 6 seconds
|
10 | 19 |
|
11 | 20 | **aggr_p.mat**
|
12 | 21 | - contains single key `'p'`
|
13 | 22 | - float64 array, shape [14421]
|
14 | 23 | - min: ~2.4, max: ~7.1
|
15 | 24 | - units: MW
|
16 |
| -- description: active power injection, measured every 6 seconds for 24h, TODO |
| 25 | +- description: active power injection, measured every 6 seconds for 24h |
17 | 26 |
|
18 | 27 | **aggr_q.mat**
|
19 | 28 | - contains single key `'q'`
|
20 | 29 | - float64 array, shape [14421]
|
21 | 30 | - min: ~1.1, max: ~3.1
|
22 | 31 | - units: MVar
|
23 |
| -- description: reactive power injection, measured every 6 seconds for 24h, TODO |
| 32 | +- description: reactive power injection, measured every 6 seconds for 24h |
24 | 33 |
|
25 | 34 | **pq_fluc.mat**
|
26 | 35 | - contains single key `'pq_fluc'`
|
|
33 | 42 |
|
34 | 43 | **SCE_56bus.mat**
|
35 | 44 | - contains single key `'case_mpc'`
|
36 |
| -- units: TODO |
37 | 45 | - description: a "MATPOWER" file. See the convert2matpower.m file for description.
|
38 | 46 | - mat['case_mpc'][0,0] has 4 "keys"
|
39 | 47 | - 'version': shape [1], type uint8
|
40 | 48 | - 'baseMVA': shape [1, 1], type uint8, reference voltage at root bus
|
41 | 49 | - 'bus': shape [56, 13], type float64
|
42 | 50 | - 'branch': shape [55, 13], type float64
|
43 | 51 | - 'gen': shape [1, 21], type int16
|
| 52 | + |
| 53 | +See the attachment attached to [releases](https://github.com/chrisyeh96/voltctrl/releases) for Python `.pkl` files containing the results of running the various algorithms. These Pickle files are read by the various Jupyter notebooks for plotting and analysis. |
| 54 | + |
| 55 | + |
| 56 | +## Citation |
| 57 | + |
| 58 | +Please cite this article as follows, or use the BibTeX entry below. |
| 59 | + |
| 60 | +> C. Yeh, J. Yu, Y. Shi, and A. Wierman, "Robust online voltage control with an unknown grid topology," in _e-Energy '22: Proceedings of the Thirteenth ACM International Conference on Future Energy Systems_, Association for Computing Machinery, Jun. 2022, pp. 240–250, ISBN: 9781450393973. DOI: 10.1145/3538637.3538853. [Online]. Available: [https://dl.acm.org/doi/10.1145/3538637.3538853](https://dl.acm.org/doi/10.1145/3538637.3538853). |
| 61 | +
|
| 62 | +```tex |
| 63 | +@inproceedings{ |
| 64 | + yeh2022robust, |
| 65 | + author = {Christopher Yeh and Jing Yu and Yuanyuan Shi and Adam Wierman}, |
| 66 | + booktitle = {{e-Energy 22': Proceedings of the Thirteenth ACM International Conference on Future Energy Systems}}, |
| 67 | + doi = {10.1145/3538637.3538853}, |
| 68 | + isbn = {9781450393973}, |
| 69 | + month = {6}, |
| 70 | + pages = {240-250}, |
| 71 | + publisher = {Association for Computing Machinery}, |
| 72 | + title = {Robust online voltage control with an unknown grid topology}, |
| 73 | + url = {https://dl.acm.org/doi/10.1145/3538637.3538853}, |
| 74 | + year = {2022} |
| 75 | +} |
| 76 | +``` |
0 commit comments