ltbams 0.9.9__py3-none-any.whl → 1.0.2a1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (191) hide show
  1. ams/__init__.py +4 -11
  2. ams/_version.py +3 -3
  3. ams/cases/5bus/pjm5bus_demo.xlsx +0 -0
  4. ams/cases/5bus/pjm5bus_jumper.xlsx +0 -0
  5. ams/cases/5bus/pjm5bus_uced.json +1062 -0
  6. ams/cases/5bus/pjm5bus_uced.xlsx +0 -0
  7. ams/cases/5bus/pjm5bus_uced_esd1.xlsx +0 -0
  8. ams/cases/5bus/pjm5bus_uced_ev.xlsx +0 -0
  9. ams/cases/ieee123/ieee123.xlsx +0 -0
  10. ams/cases/ieee123/ieee123_regcv1.xlsx +0 -0
  11. ams/cases/ieee14/ieee14.json +1166 -0
  12. ams/cases/ieee14/ieee14.raw +92 -0
  13. ams/cases/ieee14/ieee14_conn.xlsx +0 -0
  14. ams/cases/ieee14/ieee14_uced.xlsx +0 -0
  15. ams/cases/ieee39/ieee39.xlsx +0 -0
  16. ams/cases/ieee39/ieee39_uced.xlsx +0 -0
  17. ams/cases/ieee39/ieee39_uced_esd1.xlsx +0 -0
  18. ams/cases/ieee39/ieee39_uced_pvd1.xlsx +0 -0
  19. ams/cases/ieee39/ieee39_uced_vis.xlsx +0 -0
  20. ams/cases/matpower/benchmark.json +1594 -0
  21. ams/cases/matpower/case118.m +787 -0
  22. ams/cases/matpower/case14.m +129 -0
  23. ams/cases/matpower/case300.m +1315 -0
  24. ams/cases/matpower/case39.m +205 -0
  25. ams/cases/matpower/case5.m +62 -0
  26. ams/cases/matpower/case_ACTIVSg2000.m +9460 -0
  27. ams/cases/npcc/npcc.m +644 -0
  28. ams/cases/npcc/npcc_uced.xlsx +0 -0
  29. ams/cases/pglib/pglib_opf_case39_epri__api.m +243 -0
  30. ams/cases/wecc/wecc.m +714 -0
  31. ams/cases/wecc/wecc_uced.xlsx +0 -0
  32. ams/cli.py +6 -0
  33. ams/core/__init__.py +2 -0
  34. ams/core/documenter.py +652 -0
  35. ams/core/matprocessor.py +782 -0
  36. ams/core/model.py +330 -0
  37. ams/core/param.py +322 -0
  38. ams/core/service.py +918 -0
  39. ams/core/symprocessor.py +224 -0
  40. ams/core/var.py +59 -0
  41. ams/extension/__init__.py +5 -0
  42. ams/extension/eva.py +401 -0
  43. ams/interface.py +1085 -0
  44. ams/io/__init__.py +133 -0
  45. ams/io/json.py +82 -0
  46. ams/io/matpower.py +406 -0
  47. ams/io/psse.py +6 -0
  48. ams/io/pypower.py +103 -0
  49. ams/io/xlsx.py +80 -0
  50. ams/main.py +81 -4
  51. ams/models/__init__.py +24 -0
  52. ams/models/area.py +40 -0
  53. ams/models/bus.py +52 -0
  54. ams/models/cost.py +169 -0
  55. ams/models/distributed/__init__.py +3 -0
  56. ams/models/distributed/esd1.py +71 -0
  57. ams/models/distributed/ev.py +60 -0
  58. ams/models/distributed/pvd1.py +67 -0
  59. ams/models/group.py +231 -0
  60. ams/models/info.py +26 -0
  61. ams/models/line.py +238 -0
  62. ams/models/renewable/__init__.py +5 -0
  63. ams/models/renewable/regc.py +119 -0
  64. ams/models/reserve.py +94 -0
  65. ams/models/shunt.py +14 -0
  66. ams/models/static/__init__.py +2 -0
  67. ams/models/static/gen.py +165 -0
  68. ams/models/static/pq.py +61 -0
  69. ams/models/timeslot.py +69 -0
  70. ams/models/zone.py +49 -0
  71. ams/opt/__init__.py +12 -0
  72. ams/opt/constraint.py +175 -0
  73. ams/opt/exprcalc.py +127 -0
  74. ams/opt/expression.py +188 -0
  75. ams/opt/objective.py +174 -0
  76. ams/opt/omodel.py +432 -0
  77. ams/opt/optzbase.py +192 -0
  78. ams/opt/param.py +156 -0
  79. ams/opt/var.py +233 -0
  80. ams/pypower/__init__.py +8 -0
  81. ams/pypower/_compat.py +9 -0
  82. ams/pypower/core/__init__.py +8 -0
  83. ams/pypower/core/pips.py +894 -0
  84. ams/pypower/core/ppoption.py +244 -0
  85. ams/pypower/core/ppver.py +18 -0
  86. ams/pypower/core/solver.py +2451 -0
  87. ams/pypower/eps.py +6 -0
  88. ams/pypower/idx.py +174 -0
  89. ams/pypower/io.py +604 -0
  90. ams/pypower/make/__init__.py +11 -0
  91. ams/pypower/make/matrices.py +665 -0
  92. ams/pypower/make/pdv.py +506 -0
  93. ams/pypower/routines/__init__.py +7 -0
  94. ams/pypower/routines/cpf.py +513 -0
  95. ams/pypower/routines/cpf_callbacks.py +114 -0
  96. ams/pypower/routines/opf.py +1803 -0
  97. ams/pypower/routines/opffcns.py +1946 -0
  98. ams/pypower/routines/pflow.py +852 -0
  99. ams/pypower/toggle.py +1098 -0
  100. ams/pypower/utils.py +293 -0
  101. ams/report.py +212 -50
  102. ams/routines/__init__.py +23 -0
  103. ams/routines/acopf.py +117 -0
  104. ams/routines/cpf.py +65 -0
  105. ams/routines/dcopf.py +241 -0
  106. ams/routines/dcpf.py +209 -0
  107. ams/routines/dcpf0.py +196 -0
  108. ams/routines/dopf.py +150 -0
  109. ams/routines/ed.py +312 -0
  110. ams/routines/pflow.py +255 -0
  111. ams/routines/pflow0.py +113 -0
  112. ams/routines/routine.py +1033 -0
  113. ams/routines/rted.py +519 -0
  114. ams/routines/type.py +160 -0
  115. ams/routines/uc.py +376 -0
  116. ams/shared.py +63 -9
  117. ams/system.py +61 -22
  118. ams/utils/__init__.py +3 -0
  119. ams/utils/misc.py +77 -0
  120. ams/utils/paths.py +257 -0
  121. docs/Makefile +21 -0
  122. docs/make.bat +35 -0
  123. docs/source/_templates/autosummary/base.rst +5 -0
  124. docs/source/_templates/autosummary/class.rst +35 -0
  125. docs/source/_templates/autosummary/module.rst +65 -0
  126. docs/source/_templates/autosummary/module_toctree.rst +66 -0
  127. docs/source/api.rst +102 -0
  128. docs/source/conf.py +203 -0
  129. docs/source/examples/index.rst +34 -0
  130. docs/source/genmodelref.py +61 -0
  131. docs/source/genroutineref.py +47 -0
  132. docs/source/getting_started/copyright.rst +20 -0
  133. docs/source/getting_started/formats/index.rst +20 -0
  134. docs/source/getting_started/formats/matpower.rst +183 -0
  135. docs/source/getting_started/formats/psse.rst +46 -0
  136. docs/source/getting_started/formats/pypower.rst +223 -0
  137. docs/source/getting_started/formats/xlsx.png +0 -0
  138. docs/source/getting_started/formats/xlsx.rst +23 -0
  139. docs/source/getting_started/index.rst +76 -0
  140. docs/source/getting_started/install.rst +234 -0
  141. docs/source/getting_started/overview.rst +26 -0
  142. docs/source/getting_started/testcase.rst +45 -0
  143. docs/source/getting_started/verification.rst +13 -0
  144. docs/source/images/curent.ico +0 -0
  145. docs/source/images/dcopf_time.png +0 -0
  146. docs/source/images/sponsors/CURENT_Logo_NameOnTrans.png +0 -0
  147. docs/source/images/sponsors/CURENT_Logo_Transparent.png +0 -0
  148. docs/source/images/sponsors/CURENT_Logo_Transparent_Name.png +0 -0
  149. docs/source/images/sponsors/doe.png +0 -0
  150. docs/source/index.rst +108 -0
  151. docs/source/modeling/example.rst +159 -0
  152. docs/source/modeling/index.rst +17 -0
  153. docs/source/modeling/model.rst +210 -0
  154. docs/source/modeling/routine.rst +122 -0
  155. docs/source/modeling/system.rst +51 -0
  156. docs/source/release-notes.rst +398 -0
  157. ltbams-1.0.2a1.dist-info/METADATA +210 -0
  158. ltbams-1.0.2a1.dist-info/RECORD +188 -0
  159. {ltbams-0.9.9.dist-info → ltbams-1.0.2a1.dist-info}/WHEEL +1 -1
  160. ltbams-1.0.2a1.dist-info/top_level.txt +3 -0
  161. tests/__init__.py +0 -0
  162. tests/test_1st_system.py +33 -0
  163. tests/test_addressing.py +40 -0
  164. tests/test_andes_mats.py +61 -0
  165. tests/test_case.py +266 -0
  166. tests/test_cli.py +34 -0
  167. tests/test_export_csv.py +89 -0
  168. tests/test_group.py +83 -0
  169. tests/test_interface.py +216 -0
  170. tests/test_io.py +32 -0
  171. tests/test_jumper.py +27 -0
  172. tests/test_known_good.py +267 -0
  173. tests/test_matp.py +437 -0
  174. tests/test_model.py +54 -0
  175. tests/test_omodel.py +119 -0
  176. tests/test_paths.py +22 -0
  177. tests/test_report.py +251 -0
  178. tests/test_repr.py +21 -0
  179. tests/test_routine.py +178 -0
  180. tests/test_rtn_dcopf.py +101 -0
  181. tests/test_rtn_dcpf.py +77 -0
  182. tests/test_rtn_ed.py +279 -0
  183. tests/test_rtn_pflow.py +219 -0
  184. tests/test_rtn_rted.py +273 -0
  185. tests/test_rtn_uc.py +248 -0
  186. tests/test_service.py +73 -0
  187. ltbams-0.9.9.dist-info/LICENSE +0 -692
  188. ltbams-0.9.9.dist-info/METADATA +0 -859
  189. ltbams-0.9.9.dist-info/RECORD +0 -14
  190. ltbams-0.9.9.dist-info/top_level.txt +0 -1
  191. {ltbams-0.9.9.dist-info → ltbams-1.0.2a1.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,1062 @@
1
+ {
2
+ "Summary": [
3
+ {
4
+ "field": "About",
5
+ "comment": "PJM 5-bus test case",
6
+ "comment2": null,
7
+ "comment3": null,
8
+ "comment4": null
9
+ },
10
+ {
11
+ "field": "Load",
12
+ "comment": "Load factor in EDTSlot and UCTSlot sourced from PJM 5-minutes load on August 30, 2023",
13
+ "comment2": null,
14
+ "comment3": null,
15
+ "comment4": null
16
+ },
17
+ {
18
+ "field": "StaticGen",
19
+ "comment": "Minimum on/off time of generators were made up",
20
+ "comment2": null,
21
+ "comment3": null,
22
+ "comment4": null
23
+ }
24
+ ],
25
+ "Bus": [
26
+ {
27
+ "idx": 0,
28
+ "u": 1.0,
29
+ "name": "A",
30
+ "Vn": 230.0,
31
+ "vmax": 1.1,
32
+ "vmin": 0.9,
33
+ "v0": 1.0,
34
+ "a0": 0.0,
35
+ "xcoord": 0,
36
+ "ycoord": 0,
37
+ "area": 1,
38
+ "zone": "ZONE_1",
39
+ "owner": null
40
+ },
41
+ {
42
+ "idx": 1,
43
+ "u": 1.0,
44
+ "name": "B",
45
+ "Vn": 230.0,
46
+ "vmax": 1.1,
47
+ "vmin": 0.9,
48
+ "v0": 1.0,
49
+ "a0": 0.0,
50
+ "xcoord": 0,
51
+ "ycoord": 0,
52
+ "area": 1,
53
+ "zone": "ZONE_1",
54
+ "owner": null
55
+ },
56
+ {
57
+ "idx": 2,
58
+ "u": 1.0,
59
+ "name": "C",
60
+ "Vn": 230.0,
61
+ "vmax": 1.1,
62
+ "vmin": 0.9,
63
+ "v0": 1.0,
64
+ "a0": 0.0,
65
+ "xcoord": 0,
66
+ "ycoord": 0,
67
+ "area": 2,
68
+ "zone": "ZONE_1",
69
+ "owner": null
70
+ },
71
+ {
72
+ "idx": 3,
73
+ "u": 1.0,
74
+ "name": "D",
75
+ "Vn": 230.0,
76
+ "vmax": 1.1,
77
+ "vmin": 0.9,
78
+ "v0": 1.0,
79
+ "a0": 0.0,
80
+ "xcoord": 0,
81
+ "ycoord": 0,
82
+ "area": 2,
83
+ "zone": "ZONE_1",
84
+ "owner": null
85
+ },
86
+ {
87
+ "idx": 4,
88
+ "u": 1.0,
89
+ "name": "E",
90
+ "Vn": 230.0,
91
+ "vmax": 1.1,
92
+ "vmin": 0.9,
93
+ "v0": 1.0,
94
+ "a0": 0.0,
95
+ "xcoord": 0,
96
+ "ycoord": 0,
97
+ "area": 3,
98
+ "zone": "ZONE_1",
99
+ "owner": null
100
+ }
101
+ ],
102
+ "PQ": [
103
+ {
104
+ "idx": "PQ_1",
105
+ "u": 1.0,
106
+ "name": "PQ 1",
107
+ "bus": 1,
108
+ "Vn": 230.0,
109
+ "p0": 3.0,
110
+ "q0": 0.9861,
111
+ "vmax": 1.1,
112
+ "vmin": 0.9,
113
+ "owner": null,
114
+ "ctrl": 1.0
115
+ },
116
+ {
117
+ "idx": "PQ_2",
118
+ "u": 1.0,
119
+ "name": "PQ 2",
120
+ "bus": 2,
121
+ "Vn": 230.0,
122
+ "p0": 3.0,
123
+ "q0": 0.9861,
124
+ "vmax": 1.1,
125
+ "vmin": 0.9,
126
+ "owner": null,
127
+ "ctrl": 1.0
128
+ },
129
+ {
130
+ "idx": "PQ_3",
131
+ "u": 1.0,
132
+ "name": "PQ 3",
133
+ "bus": 3,
134
+ "Vn": 230.0,
135
+ "p0": 4.0,
136
+ "q0": 1.3147,
137
+ "vmax": 1.1,
138
+ "vmin": 0.9,
139
+ "owner": null,
140
+ "ctrl": 1.0
141
+ }
142
+ ],
143
+ "PV": [
144
+ {
145
+ "idx": "PV_1",
146
+ "u": 1.0,
147
+ "name": "Alta",
148
+ "Sn": 100.0,
149
+ "Vn": 230.0,
150
+ "bus": 0,
151
+ "busr": null,
152
+ "p0": 1.0,
153
+ "q0": 0.0,
154
+ "pmax": 2.1,
155
+ "pmin": 0.2,
156
+ "qmax": 0.3,
157
+ "qmin": -0.3,
158
+ "v0": 1.0,
159
+ "vmax": 1.4,
160
+ "vmin": 0.6,
161
+ "ra": 0.01,
162
+ "xs": 0.3,
163
+ "ctrl": 1.0,
164
+ "Pc1": 0.0,
165
+ "Pc2": 0.0,
166
+ "Qc1min": 0.0,
167
+ "Qc1max": 0.0,
168
+ "Qc2min": 0.0,
169
+ "Qc2max": 0.0,
170
+ "Ragc": 999.0,
171
+ "R10": 999.0,
172
+ "R30": 999.0,
173
+ "Rq": 999.0,
174
+ "apf": 0.0,
175
+ "pg0": 0.0,
176
+ "td1": 0.5,
177
+ "td2": 0.0
178
+ },
179
+ {
180
+ "idx": "PV_3",
181
+ "u": 1.0,
182
+ "name": "Solitude",
183
+ "Sn": 100.0,
184
+ "Vn": 230.0,
185
+ "bus": 2,
186
+ "busr": null,
187
+ "p0": 3.2349,
188
+ "q0": 0.0,
189
+ "pmax": 5.2,
190
+ "pmin": 0.5,
191
+ "qmax": 1.275,
192
+ "qmin": -1.275,
193
+ "v0": 1.0,
194
+ "vmax": 1.4,
195
+ "vmin": 0.6,
196
+ "ra": 0.01,
197
+ "xs": 0.3,
198
+ "ctrl": 1.0,
199
+ "Pc1": 0.0,
200
+ "Pc2": 0.0,
201
+ "Qc1min": 0.0,
202
+ "Qc1max": 0.0,
203
+ "Qc2min": 0.0,
204
+ "Qc2max": 0.0,
205
+ "Ragc": 999.0,
206
+ "R10": 999.0,
207
+ "R30": 999.0,
208
+ "Rq": 999.0,
209
+ "apf": 0.0,
210
+ "pg0": 0.0,
211
+ "td1": 0.5,
212
+ "td2": 0.0
213
+ },
214
+ {
215
+ "idx": "PV_5",
216
+ "u": 1.0,
217
+ "name": "Brighton",
218
+ "Sn": 100.0,
219
+ "Vn": 230.0,
220
+ "bus": 4,
221
+ "busr": null,
222
+ "p0": 4.6651,
223
+ "q0": 0.0,
224
+ "pmax": 6.0,
225
+ "pmin": 0.6,
226
+ "qmax": 4.5,
227
+ "qmin": -4.5,
228
+ "v0": 1.0,
229
+ "vmax": 1.4,
230
+ "vmin": 0.6,
231
+ "ra": 0.01,
232
+ "xs": 0.3,
233
+ "ctrl": 1.0,
234
+ "Pc1": 0.0,
235
+ "Pc2": 0.0,
236
+ "Qc1min": 0.0,
237
+ "Qc1max": 0.0,
238
+ "Qc2min": 0.0,
239
+ "Qc2max": 0.0,
240
+ "Ragc": 999.0,
241
+ "R10": 999.0,
242
+ "R30": 999.0,
243
+ "Rq": 999.0,
244
+ "apf": 0.0,
245
+ "pg0": 0.0,
246
+ "td1": 0.5,
247
+ "td2": 0.0
248
+ }
249
+ ],
250
+ "Slack": [
251
+ {
252
+ "idx": "Slack_4",
253
+ "u": 1.0,
254
+ "name": "Sundance",
255
+ "Sn": 100.0,
256
+ "Vn": 230.0,
257
+ "bus": 3,
258
+ "busr": null,
259
+ "p0": 0.0,
260
+ "q0": 0.0,
261
+ "pmax": 2.0,
262
+ "pmin": 0.2,
263
+ "qmax": 1.5,
264
+ "qmin": -1.5,
265
+ "v0": 1.0,
266
+ "vmax": 1.4,
267
+ "vmin": 0.6,
268
+ "ra": 0.01,
269
+ "xs": 0.3,
270
+ "a0": 0.0,
271
+ "ctrl": 1.0,
272
+ "Pc1": 0.0,
273
+ "Pc2": 0.0,
274
+ "Qc1min": 0.0,
275
+ "Qc1max": 0.0,
276
+ "Qc2min": 0.0,
277
+ "Qc2max": 0.0,
278
+ "Ragc": 999.0,
279
+ "R10": 999.0,
280
+ "R30": 999.0,
281
+ "Rq": 999.0,
282
+ "apf": 0.0,
283
+ "pg0": 0.0,
284
+ "td1": 0.5,
285
+ "td2": 0.0
286
+ }
287
+ ],
288
+ "Line": [
289
+ {
290
+ "idx": 0,
291
+ "u": 1.0,
292
+ "name": "Line AB",
293
+ "bus1": 0,
294
+ "bus2": 1,
295
+ "Sn": 100.0,
296
+ "fn": 60.0,
297
+ "Vn1": 230.0,
298
+ "Vn2": 230.0,
299
+ "r": 0.00281,
300
+ "x": 0.0281,
301
+ "b": 0.00712,
302
+ "g": 0.0,
303
+ "b1": 0.0,
304
+ "g1": 0.0,
305
+ "b2": 0.0,
306
+ "g2": 0.0,
307
+ "trans": 0.0,
308
+ "tap": 1.0,
309
+ "phi": 0.0,
310
+ "rate_a": 4.0,
311
+ "rate_b": 0.0,
312
+ "rate_c": 0.0,
313
+ "owner": null,
314
+ "xcoord": null,
315
+ "ycoord": null,
316
+ "amin": -6.283185307179586,
317
+ "amax": 6.283185307179586
318
+ },
319
+ {
320
+ "idx": 1,
321
+ "u": 1.0,
322
+ "name": "Line AD",
323
+ "bus1": 0,
324
+ "bus2": 3,
325
+ "Sn": 100.0,
326
+ "fn": 60.0,
327
+ "Vn1": 230.0,
328
+ "Vn2": 230.0,
329
+ "r": 0.00304,
330
+ "x": 0.0304,
331
+ "b": 0.00658,
332
+ "g": 0.0,
333
+ "b1": 0.0,
334
+ "g1": 0.0,
335
+ "b2": 0.0,
336
+ "g2": 0.0,
337
+ "trans": 0.0,
338
+ "tap": 1.0,
339
+ "phi": 0.0,
340
+ "rate_a": 2.0,
341
+ "rate_b": 0.0,
342
+ "rate_c": 0.0,
343
+ "owner": null,
344
+ "xcoord": null,
345
+ "ycoord": null,
346
+ "amin": -6.283185307179586,
347
+ "amax": 6.283185307179586
348
+ },
349
+ {
350
+ "idx": 2,
351
+ "u": 1.0,
352
+ "name": "Line AE",
353
+ "bus1": 0,
354
+ "bus2": 4,
355
+ "Sn": 100.0,
356
+ "fn": 60.0,
357
+ "Vn1": 230.0,
358
+ "Vn2": 230.0,
359
+ "r": 0.00064,
360
+ "x": 0.0064,
361
+ "b": 0.03126,
362
+ "g": 0.0,
363
+ "b1": 0.0,
364
+ "g1": 0.0,
365
+ "b2": 0.0,
366
+ "g2": 0.0,
367
+ "trans": 0.0,
368
+ "tap": 1.0,
369
+ "phi": 0.0,
370
+ "rate_a": 2.0,
371
+ "rate_b": 0.0,
372
+ "rate_c": 0.0,
373
+ "owner": null,
374
+ "xcoord": null,
375
+ "ycoord": null,
376
+ "amin": -6.283185307179586,
377
+ "amax": 6.283185307179586
378
+ },
379
+ {
380
+ "idx": 3,
381
+ "u": 1.0,
382
+ "name": "Line BC",
383
+ "bus1": 1,
384
+ "bus2": 2,
385
+ "Sn": 100.0,
386
+ "fn": 60.0,
387
+ "Vn1": 230.0,
388
+ "Vn2": 230.0,
389
+ "r": 0.00108,
390
+ "x": 0.0108,
391
+ "b": 0.01852,
392
+ "g": 0.0,
393
+ "b1": 0.0,
394
+ "g1": 0.0,
395
+ "b2": 0.0,
396
+ "g2": 0.0,
397
+ "trans": 0.0,
398
+ "tap": 1.0,
399
+ "phi": 0.0,
400
+ "rate_a": 2.0,
401
+ "rate_b": 0.0,
402
+ "rate_c": 0.0,
403
+ "owner": null,
404
+ "xcoord": null,
405
+ "ycoord": null,
406
+ "amin": -6.283185307179586,
407
+ "amax": 6.283185307179586
408
+ },
409
+ {
410
+ "idx": 4,
411
+ "u": 1.0,
412
+ "name": "Line CD",
413
+ "bus1": 2,
414
+ "bus2": 3,
415
+ "Sn": 100.0,
416
+ "fn": 60.0,
417
+ "Vn1": 230.0,
418
+ "Vn2": 230.0,
419
+ "r": 0.00297,
420
+ "x": 0.0297,
421
+ "b": 0.00674,
422
+ "g": 0.0,
423
+ "b1": 0.0,
424
+ "g1": 0.0,
425
+ "b2": 0.0,
426
+ "g2": 0.0,
427
+ "trans": 0.0,
428
+ "tap": 1.0,
429
+ "phi": 0.0,
430
+ "rate_a": 2.0,
431
+ "rate_b": 0.0,
432
+ "rate_c": 0.0,
433
+ "owner": null,
434
+ "xcoord": null,
435
+ "ycoord": null,
436
+ "amin": -6.283185307179586,
437
+ "amax": 6.283185307179586
438
+ },
439
+ {
440
+ "idx": 5,
441
+ "u": 1.0,
442
+ "name": "Line DE",
443
+ "bus1": 3,
444
+ "bus2": 4,
445
+ "Sn": 100.0,
446
+ "fn": 60.0,
447
+ "Vn1": 230.0,
448
+ "Vn2": 230.0,
449
+ "r": 0.00297,
450
+ "x": 0.0297,
451
+ "b": 0.00674,
452
+ "g": 0.0,
453
+ "b1": 0.0,
454
+ "g1": 0.0,
455
+ "b2": 0.0,
456
+ "g2": 0.0,
457
+ "trans": 0.0,
458
+ "tap": 1.0,
459
+ "phi": 0.0,
460
+ "rate_a": 2.4,
461
+ "rate_b": 0.0,
462
+ "rate_c": 0.0,
463
+ "owner": null,
464
+ "xcoord": null,
465
+ "ycoord": null,
466
+ "amin": -6.283185307179586,
467
+ "amax": 6.283185307179586
468
+ },
469
+ {
470
+ "idx": 6,
471
+ "u": 1.0,
472
+ "name": "Line AB2",
473
+ "bus1": 0,
474
+ "bus2": 1,
475
+ "Sn": 100.0,
476
+ "fn": 60.0,
477
+ "Vn1": 230.0,
478
+ "Vn2": 230.0,
479
+ "r": 0.00281,
480
+ "x": 0.0281,
481
+ "b": 0.00712,
482
+ "g": 0.0,
483
+ "b1": 0.0,
484
+ "g1": 0.0,
485
+ "b2": 0.0,
486
+ "g2": 0.0,
487
+ "trans": 0.0,
488
+ "tap": 1.0,
489
+ "phi": 0.0,
490
+ "rate_a": 4.0,
491
+ "rate_b": 0.0,
492
+ "rate_c": 0.0,
493
+ "owner": null,
494
+ "xcoord": null,
495
+ "ycoord": null,
496
+ "amin": -6.283185307179586,
497
+ "amax": 6.283185307179586
498
+ }
499
+ ],
500
+ "Area": [
501
+ {
502
+ "idx": 1,
503
+ "u": 1.0,
504
+ "name": 1
505
+ },
506
+ {
507
+ "idx": 2,
508
+ "u": 1.0,
509
+ "name": 2
510
+ },
511
+ {
512
+ "idx": 3,
513
+ "u": 1.0,
514
+ "name": 3
515
+ }
516
+ ],
517
+ "Zone": [
518
+ {
519
+ "idx": "ZONE_1",
520
+ "u": 1.0,
521
+ "name": "ZONE1"
522
+ },
523
+ {
524
+ "idx": "ZONE_2",
525
+ "u": 1.0,
526
+ "name": "ZONE2"
527
+ }
528
+ ],
529
+ "SFR": [
530
+ {
531
+ "idx": "SFR1",
532
+ "u": 1.0,
533
+ "name": "SFR1",
534
+ "zone": "ZONE1",
535
+ "du": 0.03,
536
+ "dd": 0.03
537
+ },
538
+ {
539
+ "idx": "SFR2",
540
+ "u": 1.0,
541
+ "name": "SFR2",
542
+ "zone": "ZONE2",
543
+ "du": 0.03,
544
+ "dd": 0.03
545
+ }
546
+ ],
547
+ "SR": [
548
+ {
549
+ "idx": "SR1",
550
+ "u": 1.0,
551
+ "name": "SR1",
552
+ "zone": "ZONE1",
553
+ "demand": 0.03
554
+ },
555
+ {
556
+ "idx": "SR2",
557
+ "u": 1.0,
558
+ "name": "SR2",
559
+ "zone": "ZONE2",
560
+ "demand": 0.03
561
+ }
562
+ ],
563
+ "NSR": [
564
+ {
565
+ "idx": "NSR1",
566
+ "u": 1.0,
567
+ "name": "NSR1",
568
+ "zone": "ZONE1",
569
+ "demand": 0.01
570
+ },
571
+ {
572
+ "idx": "NSR2",
573
+ "u": 1.0,
574
+ "name": "NSR2",
575
+ "zone": "ZONE2",
576
+ "demand": 0.01
577
+ }
578
+ ],
579
+ "GCost": [
580
+ {
581
+ "idx": "GCost_1",
582
+ "u": 1.0,
583
+ "name": "GCost_1",
584
+ "gen": "PV_1",
585
+ "type": 2.0,
586
+ "csu": 0.0,
587
+ "csd": 0.0,
588
+ "c2": 0.0,
589
+ "c1": 0.145,
590
+ "c0": 0.0
591
+ },
592
+ {
593
+ "idx": "GCost_2",
594
+ "u": 1.0,
595
+ "name": "GCost_2",
596
+ "gen": "PV_3",
597
+ "type": 2.0,
598
+ "csu": 0.0,
599
+ "csd": 0.0,
600
+ "c2": 0.0,
601
+ "c1": 0.3,
602
+ "c0": 0.0
603
+ },
604
+ {
605
+ "idx": "GCost_3",
606
+ "u": 1.0,
607
+ "name": "GCost_3",
608
+ "gen": "PV_5",
609
+ "type": 2.0,
610
+ "csu": 0.0,
611
+ "csd": 0.0,
612
+ "c2": 0.0,
613
+ "c1": 0.4,
614
+ "c0": 0.0
615
+ },
616
+ {
617
+ "idx": "GCost_4",
618
+ "u": 1.0,
619
+ "name": "GCost_4",
620
+ "gen": "Slack_4",
621
+ "type": 2.0,
622
+ "csu": 0.0,
623
+ "csd": 0.0,
624
+ "c2": 0.0,
625
+ "c1": 0.1,
626
+ "c0": 0.0
627
+ }
628
+ ],
629
+ "SFRCost": [
630
+ {
631
+ "idx": "SFRC_1",
632
+ "u": 1.0,
633
+ "name": "SFRC_1",
634
+ "gen": "PV_1",
635
+ "cru": 0.0,
636
+ "crd": 0.0
637
+ },
638
+ {
639
+ "idx": "SFRC_2",
640
+ "u": 1.0,
641
+ "name": "SFRC_2",
642
+ "gen": "PV_3",
643
+ "cru": 0.0,
644
+ "crd": 0.0
645
+ },
646
+ {
647
+ "idx": "SFRC_3",
648
+ "u": 1.0,
649
+ "name": "SFRC_3",
650
+ "gen": "PV_5",
651
+ "cru": 0.0,
652
+ "crd": 0.0
653
+ },
654
+ {
655
+ "idx": "SFRC_4",
656
+ "u": 1.0,
657
+ "name": "SFRC_4",
658
+ "gen": "Slack_4",
659
+ "cru": 0.0,
660
+ "crd": 0.0
661
+ }
662
+ ],
663
+ "SRCost": [
664
+ {
665
+ "idx": "SRC_1",
666
+ "u": 1.0,
667
+ "name": "SRC_1",
668
+ "gen": "PV_1",
669
+ "csr": 0.1
670
+ },
671
+ {
672
+ "idx": "SRC_2",
673
+ "u": 1.0,
674
+ "name": "SRC_2",
675
+ "gen": "PV_3",
676
+ "csr": 0.1
677
+ },
678
+ {
679
+ "idx": "SRC_3",
680
+ "u": 1.0,
681
+ "name": "SRC_3",
682
+ "gen": "PV_5",
683
+ "csr": 0.1
684
+ },
685
+ {
686
+ "idx": "SRC_4",
687
+ "u": 1.0,
688
+ "name": "SRC_4",
689
+ "gen": "Slack_4",
690
+ "csr": 0.1
691
+ }
692
+ ],
693
+ "NSRCost": [
694
+ {
695
+ "idx": "NSRC_1",
696
+ "u": 1.0,
697
+ "name": "NSRC_1",
698
+ "gen": "PV_1",
699
+ "cnsr": 0.1
700
+ },
701
+ {
702
+ "idx": "NSRC_2",
703
+ "u": 1.0,
704
+ "name": "NSRC_2",
705
+ "gen": "PV_3",
706
+ "cnsr": 0.1
707
+ },
708
+ {
709
+ "idx": "NSRC_3",
710
+ "u": 1.0,
711
+ "name": "NSRC_3",
712
+ "gen": "PV_5",
713
+ "cnsr": 0.1
714
+ },
715
+ {
716
+ "idx": "NSRC_4",
717
+ "u": 1.0,
718
+ "name": "NSRC_4",
719
+ "gen": "Slack_4",
720
+ "cnsr": 0.1
721
+ }
722
+ ],
723
+ "DCost": [
724
+ {
725
+ "idx": "DCost_1",
726
+ "u": 1.0,
727
+ "name": "Dcost 1",
728
+ "pq": "PQ_1",
729
+ "cdp": 1000.0
730
+ },
731
+ {
732
+ "idx": "DCost_2",
733
+ "u": 1.0,
734
+ "name": "Dcost 2",
735
+ "pq": "PQ_2",
736
+ "cdp": 1000.0
737
+ },
738
+ {
739
+ "idx": "DCost_3",
740
+ "u": 1.0,
741
+ "name": "Dcost 3",
742
+ "pq": "PQ_3",
743
+ "cdp": 1000.0
744
+ }
745
+ ],
746
+ "EDTSlot": [
747
+ {
748
+ "idx": "EDT1",
749
+ "u": 1.0,
750
+ "name": "EDT1",
751
+ "sd": "0.793,0.0",
752
+ "ug": "1,1,1,1"
753
+ },
754
+ {
755
+ "idx": "EDT2",
756
+ "u": 1.0,
757
+ "name": "EDT2",
758
+ "sd": "0.756,0.0",
759
+ "ug": "1,1,1,1"
760
+ },
761
+ {
762
+ "idx": "EDT3",
763
+ "u": 1.0,
764
+ "name": "EDT3",
765
+ "sd": "0.723,0.0",
766
+ "ug": "1,1,1,1"
767
+ },
768
+ {
769
+ "idx": "EDT4",
770
+ "u": 1.0,
771
+ "name": "EDT4",
772
+ "sd": "0.708,0.0",
773
+ "ug": "1,1,1,1"
774
+ },
775
+ {
776
+ "idx": "EDT5",
777
+ "u": 1.0,
778
+ "name": "EDT5",
779
+ "sd": "0.7,0.0",
780
+ "ug": "1,1,1,1"
781
+ },
782
+ {
783
+ "idx": "EDT6",
784
+ "u": 1.0,
785
+ "name": "EDT6",
786
+ "sd": "0.706,0.0",
787
+ "ug": "1,1,1,1"
788
+ },
789
+ {
790
+ "idx": "EDT7",
791
+ "u": 1.0,
792
+ "name": "EDT7",
793
+ "sd": "0.75,0.0",
794
+ "ug": "1,1,1,1"
795
+ },
796
+ {
797
+ "idx": "EDT8",
798
+ "u": 1.0,
799
+ "name": "EDT8",
800
+ "sd": "0.802,0.0",
801
+ "ug": "1,1,1,1"
802
+ },
803
+ {
804
+ "idx": "EDT9",
805
+ "u": 1.0,
806
+ "name": "EDT9",
807
+ "sd": "0.828,0.0",
808
+ "ug": "1,1,1,1"
809
+ },
810
+ {
811
+ "idx": "EDT10",
812
+ "u": 1.0,
813
+ "name": "EDT10",
814
+ "sd": "0.851,0.0",
815
+ "ug": "1,1,1,1"
816
+ },
817
+ {
818
+ "idx": "EDT11",
819
+ "u": 1.0,
820
+ "name": "EDT11",
821
+ "sd": "0.874,0.0",
822
+ "ug": "1,1,1,1"
823
+ },
824
+ {
825
+ "idx": "EDT12",
826
+ "u": 1.0,
827
+ "name": "EDT12",
828
+ "sd": "0.898,0.0",
829
+ "ug": "1,1,1,1"
830
+ },
831
+ {
832
+ "idx": "EDT13",
833
+ "u": 1.0,
834
+ "name": "EDT13",
835
+ "sd": "0.919,0.0",
836
+ "ug": "1,1,1,1"
837
+ },
838
+ {
839
+ "idx": "EDT14",
840
+ "u": 1.0,
841
+ "name": "EDT14",
842
+ "sd": "0.947,0.0",
843
+ "ug": "1,1,1,1"
844
+ },
845
+ {
846
+ "idx": "EDT15",
847
+ "u": 1.0,
848
+ "name": "EDT15",
849
+ "sd": "0.97,0.0",
850
+ "ug": "1,1,1,1"
851
+ },
852
+ {
853
+ "idx": "EDT16",
854
+ "u": 1.0,
855
+ "name": "EDT16",
856
+ "sd": "0.987,0.0",
857
+ "ug": "1,1,1,1"
858
+ },
859
+ {
860
+ "idx": "EDT17",
861
+ "u": 1.0,
862
+ "name": "EDT17",
863
+ "sd": "1.0,0.0",
864
+ "ug": "1,1,1,1"
865
+ },
866
+ {
867
+ "idx": "EDT18",
868
+ "u": 1.0,
869
+ "name": "EDT18",
870
+ "sd": "1.0,0.0",
871
+ "ug": "1,1,1,1"
872
+ },
873
+ {
874
+ "idx": "EDT19",
875
+ "u": 1.0,
876
+ "name": "EDT19",
877
+ "sd": "0.991,0.0",
878
+ "ug": "1,1,1,1"
879
+ },
880
+ {
881
+ "idx": "EDT20",
882
+ "u": 1.0,
883
+ "name": "EDT20",
884
+ "sd": "0.956,0.0",
885
+ "ug": "1,1,1,1"
886
+ },
887
+ {
888
+ "idx": "EDT21",
889
+ "u": 1.0,
890
+ "name": "EDT21",
891
+ "sd": "0.93,0.0",
892
+ "ug": "1,1,1,1"
893
+ },
894
+ {
895
+ "idx": "EDT22",
896
+ "u": 1.0,
897
+ "name": "EDT22",
898
+ "sd": "0.905,0.0",
899
+ "ug": "1,1,1,1"
900
+ },
901
+ {
902
+ "idx": "EDT23",
903
+ "u": 1.0,
904
+ "name": "EDT23",
905
+ "sd": "0.849,0.0",
906
+ "ug": "1,1,1,1"
907
+ },
908
+ {
909
+ "idx": "EDT24",
910
+ "u": 1.0,
911
+ "name": "EDT24",
912
+ "sd": "0.784,0.0",
913
+ "ug": "1,1,1,1"
914
+ }
915
+ ],
916
+ "UCTSlot": [
917
+ {
918
+ "idx": "UCT1",
919
+ "u": 1.0,
920
+ "name": "UCT1",
921
+ "sd": "0.793,0.0"
922
+ },
923
+ {
924
+ "idx": "UCT2",
925
+ "u": 1.0,
926
+ "name": "UCT2",
927
+ "sd": "0.756,0.0"
928
+ },
929
+ {
930
+ "idx": "UCT3",
931
+ "u": 1.0,
932
+ "name": "UCT3",
933
+ "sd": "0.723,0.0"
934
+ },
935
+ {
936
+ "idx": "UCT4",
937
+ "u": 1.0,
938
+ "name": "UCT4",
939
+ "sd": "0.708,0.0"
940
+ },
941
+ {
942
+ "idx": "UCT5",
943
+ "u": 1.0,
944
+ "name": "UCT5",
945
+ "sd": "0.7,0.0"
946
+ },
947
+ {
948
+ "idx": "UCT6",
949
+ "u": 1.0,
950
+ "name": "UCT6",
951
+ "sd": "0.706,0.0"
952
+ },
953
+ {
954
+ "idx": "UCT7",
955
+ "u": 1.0,
956
+ "name": "UCT7",
957
+ "sd": "0.75,0.0"
958
+ },
959
+ {
960
+ "idx": "UCT8",
961
+ "u": 1.0,
962
+ "name": "UCT8",
963
+ "sd": "0.802,0.0"
964
+ },
965
+ {
966
+ "idx": "UCT9",
967
+ "u": 1.0,
968
+ "name": "UCT9",
969
+ "sd": "0.828,0.0"
970
+ },
971
+ {
972
+ "idx": "UCT10",
973
+ "u": 1.0,
974
+ "name": "UCT10",
975
+ "sd": "0.851,0.0"
976
+ },
977
+ {
978
+ "idx": "UCT11",
979
+ "u": 1.0,
980
+ "name": "UCT11",
981
+ "sd": "0.874,0.0"
982
+ },
983
+ {
984
+ "idx": "UCT12",
985
+ "u": 1.0,
986
+ "name": "UCT12",
987
+ "sd": "0.898,0.0"
988
+ },
989
+ {
990
+ "idx": "UCT13",
991
+ "u": 1.0,
992
+ "name": "UCT13",
993
+ "sd": "0.919,0.0"
994
+ },
995
+ {
996
+ "idx": "UCT14",
997
+ "u": 1.0,
998
+ "name": "UCT14",
999
+ "sd": "0.947,0.0"
1000
+ },
1001
+ {
1002
+ "idx": "UCT15",
1003
+ "u": 1.0,
1004
+ "name": "UCT15",
1005
+ "sd": "0.97,0.0"
1006
+ },
1007
+ {
1008
+ "idx": "UCT16",
1009
+ "u": 1.0,
1010
+ "name": "UCT16",
1011
+ "sd": "0.987,0.0"
1012
+ },
1013
+ {
1014
+ "idx": "UCT17",
1015
+ "u": 1.0,
1016
+ "name": "UCT17",
1017
+ "sd": "1.0,0.0"
1018
+ },
1019
+ {
1020
+ "idx": "UCT18",
1021
+ "u": 1.0,
1022
+ "name": "UCT18",
1023
+ "sd": "1.0,0.0"
1024
+ },
1025
+ {
1026
+ "idx": "UCT19",
1027
+ "u": 1.0,
1028
+ "name": "UCT19",
1029
+ "sd": "0.991,0.0"
1030
+ },
1031
+ {
1032
+ "idx": "UCT20",
1033
+ "u": 1.0,
1034
+ "name": "UCT20",
1035
+ "sd": "0.956,0.0"
1036
+ },
1037
+ {
1038
+ "idx": "UCT21",
1039
+ "u": 1.0,
1040
+ "name": "UCT21",
1041
+ "sd": "0.93,0.0"
1042
+ },
1043
+ {
1044
+ "idx": "UCT22",
1045
+ "u": 1.0,
1046
+ "name": "UCT22",
1047
+ "sd": "0.905,0.0"
1048
+ },
1049
+ {
1050
+ "idx": "UCT23",
1051
+ "u": 1.0,
1052
+ "name": "UCT23",
1053
+ "sd": "0.849,0.0"
1054
+ },
1055
+ {
1056
+ "idx": "UCT24",
1057
+ "u": 1.0,
1058
+ "name": "UCT24",
1059
+ "sd": "0.784,0.0"
1060
+ }
1061
+ ]
1062
+ }