Skip to content

Commit f936844

Browse files
committed
Update README with publication info
1 parent 512c264 commit f936844

File tree

1 file changed

+39
-6
lines changed

1 file changed

+39
-6
lines changed

README.md

+39-6
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,35 @@
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`)
212

313
**PV.mat**
414
- contains single key `'actual_PV_profile'`
515
- float64 array, shape [14421]
616
- min: 0.0, max: ~13.4
7-
- units: TODO
8-
- TODO: sign
17+
- units: MW
918
- description: solar generation, measured every 6 seconds
1019

1120
**aggr_p.mat**
1221
- contains single key `'p'`
1322
- float64 array, shape [14421]
1423
- min: ~2.4, max: ~7.1
1524
- 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
1726

1827
**aggr_q.mat**
1928
- contains single key `'q'`
2029
- float64 array, shape [14421]
2130
- min: ~1.1, max: ~3.1
2231
- 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
2433

2534
**pq_fluc.mat**
2635
- contains single key `'pq_fluc'`
@@ -33,11 +42,35 @@
3342

3443
**SCE_56bus.mat**
3544
- contains single key `'case_mpc'`
36-
- units: TODO
3745
- description: a "MATPOWER" file. See the convert2matpower.m file for description.
3846
- mat['case_mpc'][0,0] has 4 "keys"
3947
- 'version': shape [1], type uint8
4048
- 'baseMVA': shape [1, 1], type uint8, reference voltage at root bus
4149
- 'bus': shape [56, 13], type float64
4250
- 'branch': shape [55, 13], type float64
4351
- '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

Comments
 (0)