Datasets:
Upload folder using huggingface_hub
Browse files- 14_ieee/case.json.gz +3 -0
- 14_ieee/config.toml +41 -0
- 14_ieee/infeasible/ACOPF/dual.h5.gz +3 -0
- 14_ieee/infeasible/ACOPF/meta.h5.gz +3 -0
- 14_ieee/infeasible/ACOPF/primal.h5.gz +3 -0
- 14_ieee/infeasible/DCOPF/dual.h5.gz +3 -0
- 14_ieee/infeasible/DCOPF/meta.h5.gz +3 -0
- 14_ieee/infeasible/DCOPF/primal.h5.gz +3 -0
- 14_ieee/infeasible/SOCOPF/dual.h5.gz +3 -0
- 14_ieee/infeasible/SOCOPF/meta.h5.gz +3 -0
- 14_ieee/infeasible/SOCOPF/primal.h5.gz +3 -0
- 14_ieee/infeasible/input.h5.gz +3 -0
- 14_ieee/test/ACOPF/dual.h5.gz +3 -0
- 14_ieee/test/ACOPF/meta.h5.gz +3 -0
- 14_ieee/test/ACOPF/primal.h5.gz +3 -0
- 14_ieee/test/DCOPF/dual.h5.gz +3 -0
- 14_ieee/test/DCOPF/meta.h5.gz +3 -0
- 14_ieee/test/DCOPF/primal.h5.gz +3 -0
- 14_ieee/test/SOCOPF/dual.h5.gz +3 -0
- 14_ieee/test/SOCOPF/meta.h5.gz +3 -0
- 14_ieee/test/SOCOPF/primal.h5.gz +3 -0
- 14_ieee/test/input.h5.gz +3 -0
- 14_ieee/train/ACOPF/dual.h5.gz +3 -0
- 14_ieee/train/ACOPF/meta.h5.gz +3 -0
- 14_ieee/train/ACOPF/primal.h5.gz +3 -0
- 14_ieee/train/DCOPF/dual.h5.gz +3 -0
- 14_ieee/train/DCOPF/meta.h5.gz +3 -0
- 14_ieee/train/DCOPF/primal.h5.gz +3 -0
- 14_ieee/train/SOCOPF/dual.h5.gz +3 -0
- 14_ieee/train/SOCOPF/meta.h5.gz +3 -0
- 14_ieee/train/SOCOPF/primal.h5.gz +3 -0
- 14_ieee/train/input.h5.gz +3 -0
14_ieee/case.json.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f3c60cd684e3521bff45dba64587e9e89b97c2779fdac62434da608f631a8597
|
3 |
+
size 12792
|
14_ieee/config.toml
ADDED
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Name of the reference PGLib case. Must be a valid PGLib case name.
|
2 |
+
pglib_case = "pglib_opf_case14_ieee"
|
3 |
+
floating_point_type = "Float32"
|
4 |
+
|
5 |
+
[sampler]
|
6 |
+
# data sampler options
|
7 |
+
[sampler.load]
|
8 |
+
noise_type = "ScaledUniform" # Only "ScaledLogNormal" is supported at the moment
|
9 |
+
l = 0.80 # Lower bound of base load factor
|
10 |
+
u = 1.20 # Upper bound of base load factor
|
11 |
+
sigma = 0.20 # Relative (multiplicative) noise level.
|
12 |
+
|
13 |
+
[OPF]
|
14 |
+
|
15 |
+
[OPF.ACOPF]
|
16 |
+
type = "ACOPF"
|
17 |
+
solver.name = "Ipopt"
|
18 |
+
solver.attributes.tol = 1e-6
|
19 |
+
solver.attributes.linear_solver = "ma27"
|
20 |
+
|
21 |
+
[OPF.DCOPF]
|
22 |
+
# Formulation/solver options
|
23 |
+
type = "DCOPF"
|
24 |
+
solver.name = "HiGHS"
|
25 |
+
|
26 |
+
[OPF.SOCOPF]
|
27 |
+
type = "SOCOPF"
|
28 |
+
solver.name = "Clarabel"
|
29 |
+
# Tight tolerances
|
30 |
+
solver.attributes.tol_gap_abs = 1e-6
|
31 |
+
solver.attributes.tol_gap_rel = 1e-6
|
32 |
+
solver.attributes.tol_feas = 1e-6
|
33 |
+
solver.attributes.tol_infeas_rel = 1e-6
|
34 |
+
solver.attributes.tol_ktratio = 1e-6
|
35 |
+
# Reduced accuracy settings
|
36 |
+
solver.attributes.reduced_tol_gap_abs = 1e-6
|
37 |
+
solver.attributes.reduced_tol_gap_rel = 1e-6
|
38 |
+
solver.attributes.reduced_tol_feas = 1e-6
|
39 |
+
solver.attributes.reduced_tol_infeas_abs = 1e-6
|
40 |
+
solver.attributes.reduced_tol_infeas_rel = 1e-6
|
41 |
+
solver.attributes.reduced_tol_ktratio = 1e-6
|
14_ieee/infeasible/ACOPF/dual.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2b5c2f46bfbc29d25f2462d52df83d80955653e35e06b006f96757db418a9007
|
3 |
+
size 48849372
|
14_ieee/infeasible/ACOPF/meta.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d46708ca4d5d7a176ee8cf22e8a73fcc58fc95fe511a67956ccebaca78a350d2
|
3 |
+
size 1888429
|
14_ieee/infeasible/ACOPF/primal.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e1756a8ab8c73333700ae423dd783e366801e8c71984f0eada454847d1fb34d8
|
3 |
+
size 20668244
|
14_ieee/infeasible/DCOPF/dual.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:80186ae85bbfca914f8aa1906908e3f66c0a41252d8eec131dd3939d13c837f7
|
3 |
+
size 43124
|
14_ieee/infeasible/DCOPF/meta.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:7c5c3eff274b7adeb555071e42c335f86f4fc9ae8da92e3096012d283c6da7f9
|
3 |
+
size 1759464
|
14_ieee/infeasible/DCOPF/primal.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f3f5e39910d39c21497c8b0b2405a6a1b1aa857c6d22dc237fdfa66773087a62
|
3 |
+
size 6356094
|
14_ieee/infeasible/SOCOPF/dual.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ffb38ab654ce1f3a74b10637b4cc69c5458a7c7eee788cbd3f60e8647037d4cb
|
3 |
+
size 94897831
|
14_ieee/infeasible/SOCOPF/meta.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:639f0b9bba9c7baaeffa3f2e83f9a51455498411fb65dceb5adc0661d6026b65
|
3 |
+
size 1690920
|
14_ieee/infeasible/SOCOPF/primal.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b78e77cf11cc515b737e8e2e6bc03dbc2540faf3af6b9462970bf165bf84782a
|
3 |
+
size 1682169
|
14_ieee/infeasible/input.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:bffb732d88b6b4cfb1b980abf6250e8b4c5306ec74e57e04dcfa23b742f00352
|
3 |
+
size 4434384
|
14_ieee/test/ACOPF/dual.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:eee5119f13a0ecb71300b0d2d7d2fba6bb5ae6bded84e3b1829fc7935504bb0e
|
3 |
+
size 169057861
|
14_ieee/test/ACOPF/meta.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:12699ec7f34af498887bf9a85f791dbb1ba5624466395d58821e074702b7aed3
|
3 |
+
size 6214431
|
14_ieee/test/ACOPF/primal.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:62e2832529556c22bc987e5a8865a722083f0f5fa1e28f7226d60d2b0b2bd399
|
3 |
+
size 74195344
|
14_ieee/test/DCOPF/dual.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b5be17b70707b4b23afc9e35dc0a746bfad80a3c6b8253077254b219ae39fa8a
|
3 |
+
size 110194
|
14_ieee/test/DCOPF/meta.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9d157c22f38a338f5e2ea274b33831f85641d0dec53b2fe11186d065ee1bee16
|
3 |
+
size 6117378
|
14_ieee/test/DCOPF/primal.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4f079cca93f2e22d412c1635d5377ac3be9a07b3a662a53eb058b09f22e0c282
|
3 |
+
size 22150193
|
14_ieee/test/SOCOPF/dual.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:fd5a9fef63e024509c6d1693139fdc2833651f15a450c8f523381d89a3804da4
|
3 |
+
size 316037971
|
14_ieee/test/SOCOPF/meta.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:65842a0ddbb0f6bf119d12cd823b0997c8fe1d9f85c38a6a9d8dea2fe1133761
|
3 |
+
size 6439581
|
14_ieee/test/SOCOPF/primal.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:38cb2688033a1a7134702832ca387d9733e3c7751b77c72da77ed51975060b97
|
3 |
+
size 95194349
|
14_ieee/test/input.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b6b65450ac426987fc8b176a0b6e3bc0314b69ac35132a212d13c75d3b4d2544
|
3 |
+
size 15330876
|
14_ieee/train/ACOPF/dual.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0cd7b64394a984fbe62d42f0f5b610c97d8ce2f5c822c17ce1ed4c6832de6b2c
|
3 |
+
size 676175625
|
14_ieee/train/ACOPF/meta.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:20994a64043a23e1c4672d50a871d5c2381b951341119aac76ac21b90271989b
|
3 |
+
size 24765226
|
14_ieee/train/ACOPF/primal.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:748bba9a3853b2029824f0d8b943554456afb3a7248837d3c45f3647a93f932e
|
3 |
+
size 296751502
|
14_ieee/train/DCOPF/dual.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:45264c43db0441de1bc7416f13e604b75fcd8f27f86eb3d1865aa3e741fce0a5
|
3 |
+
size 439120
|
14_ieee/train/DCOPF/meta.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:078b7621d58e2f86410985f9979dc89a9f7c117f951fcbc75a1564dcb61bc0b0
|
3 |
+
size 24336858
|
14_ieee/train/DCOPF/primal.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4db5e70c8acca4d45c7e253268c5c5dd5bb4fb666c9691ee0508b2b394faf89d
|
3 |
+
size 88593303
|
14_ieee/train/SOCOPF/dual.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b873a900d7b25f33bae6285d52a54b52020b5651a6f67be459907b8c7bec26e1
|
3 |
+
size 1264147963
|
14_ieee/train/SOCOPF/meta.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:be0622fc58aa19aabf9405609e953d48c442476371951c8409b229c4d250e255
|
3 |
+
size 25663292
|
14_ieee/train/SOCOPF/primal.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ee6617e6c796afd17fcd3e0021e8a70c7fb1124eadc6d28cc029fbb7497c67b6
|
3 |
+
size 380760691
|
14_ieee/train/input.h5.gz
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9a6e52174b27afab0e2266969156a07a67a382713a9f2f724c6f91f05c6ef23e
|
3 |
+
size 61295696
|