-
Notifications
You must be signed in to change notification settings - Fork 85
/
pglib_opf_case179_goc.m
1155 lines (1150 loc) · 91.6 KB
/
pglib_opf_case179_goc.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%% %%%%%
%%%% IEEE PES Power Grid Library - Optimal Power Flow - v23.07 %%%%%
%%%% (https://github.com/power-grid-lib/pglib-opf) %%%%%
%%%% Benchmark Group - Typical Operations %%%%%
%%%% 23 - July - 2023 %%%%%
%%%% %%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% A 179 bus model created for the APRA-e Grid Optimization Competition.
% The model is loosely based on the Western Systems Coordinating Council
% (WECC/WSCC) network and is discussed in the following report,
%
% Electric Power Research Institute
% "DC multi-infeed study. Final report"
% EPRI-TR-104586, December 1994.
%
% The original model is available at,
% https://gocompetition.energy.gov/competition/beta?page=data
% Accessed, July 2018
%
% Provided in the public domain. January, 2018
%
function mpc = pglib_opf_case179_goc
mpc.version = '2';
mpc.baseMVA = 100.0;
%% bus data
% bus_i type Pd Qd Gs Bs area Vm Va baseKV zone Vmax Vmin
mpc.bus = [
2 1 926.77 -54.77 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
3 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
4 2 46.71 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
5 1 1271.04 -122.37 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
6 2 48.57 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
7 1 0.0 0.0 0.0 -113.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
8 1 113.45 -54.21 0.0 -155.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
9 2 50.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
10 1 67.39 22.91 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
11 2 47.87 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
12 1 41.43 65.76 0.0 -190.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
13 2 48.55 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
14 1 0.0 0.0 0.0 -391.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
15 2 46.55 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
16 1 434.68 215.2 0.0 -146.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
17 1 459.25 4.79 0.0 390.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
18 2 51.79 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
19 1 327.45 -64.08 0.0 -427.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
20 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
21 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
22 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
23 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
24 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
25 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
26 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
27 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
28 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
29 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
30 2 49.3 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
31 1 2376.39 1052.35 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
32 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
33 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
34 1 1692.19 703.18 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
35 2 45.09 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
36 2 51.16 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
37 1 -843.68 1045.02 0.0 912.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
38 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
39 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
40 2 51.45 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
41 1 69.79 28.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
42 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
43 2 49.01 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
44 1 1098.25 902.5 0.0 430.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
45 2 52.83 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
46 1 -35.89 -17.32 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
47 2 53.25 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
48 1 55.04 24.01 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
49 1 0.0 0.0 0.0 -80.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
50 1 172.41 62.09 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
51 1 115.98 -58.77 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
52 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
53 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
54 1 74.1 29.03 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
55 1 427.39 126.16 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
56 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
57 1 62.17 24.03 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
58 1 59.47 25.47 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
59 1 480.82 -6.57 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
60 1 -1459.73 1687.42 0.0 2146.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
61 1 185.63 75.27 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
62 1 96.01 18.56 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
63 1 -69.23 30.32 0.0 -108.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
64 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
65 2 46.97 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
66 1 774.37 298.97 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
67 1 78.5 31.52 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
68 1 -35.37 174.17 0.0 576.85 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
69 1 -23.29 20.73 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
70 2 51.91 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
71 1 1486.08 1816.85 0.0 792.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
72 1 0.0 0.0 0.0 462.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
73 1 -781.91 -53.83 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
74 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
75 1 1223.08 413.7 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
76 1 1617.77 1164.73 0.0 1019.35 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
77 3 54.24 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
78 1 1780.83 538.1 0.0 550.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
79 2 53.91 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
80 1 2289.75 396.38 0.0 1200.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
81 1 0.0 0.0 0.0 -220.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
82 1 -30.36 -92.62 0.0 -674.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
83 1 -185.65 -127.12 0.0 -110.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
84 1 0.0 0.0 0.0 -220.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
85 1 307.42 -452.74 0.0 -870.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
86 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
87 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
88 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
89 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
90 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
91 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
92 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
93 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
94 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
95 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
96 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
97 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
98 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
99 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
100 1 -19.81 21.24 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
101 1 107.66 -82.5 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
102 1 23.75 26.25 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
103 2 54.62 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
104 1 167.6 -8.03 0.0 -91.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
105 1 14.28 -0.11 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
106 1 3.78 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
107 1 131.26 13.82 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
108 1 28.61 -310.03 0.0 -327.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
109 1 427.13 35.78 0.0 -130.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
110 1 19.35 21.06 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
111 1 -99.3 63.54 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
112 2 54.11 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
113 1 75.99 0.0 0.0 -128.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
114 1 0.0 0.0 0.0 -91.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
115 1 -0.38 115.26 0.0 -91.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
116 2 51.07 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
117 1 438.16 54.83 0.0 -32.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
118 2 54.76 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
119 1 2650.16 3818.43 0.0 1500.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
120 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
121 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
122 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
123 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
124 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
125 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
126 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
127 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
128 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
129 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
130 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
131 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
132 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
133 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
134 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
135 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
136 1 414.72 17.91 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
137 1 95.26 17.51 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
138 2 46.32 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
139 1 471.17 -10.81 0.0 -319.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
140 2 48.52 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
141 1 1730.28 609.69 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
142 1 107.93 -26.18 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
143 1 174.36 60.86 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
144 2 45.88 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
145 1 1540.95 1238.88 0.0 400.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
146 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
147 1 0.0 0.0 0.0 -196.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
148 2 53.68 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
149 2 49.94 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
150 1 1578.86 75.65 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
151 1 559.23 78.48 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
152 1 191.17 45.01 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
153 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
154 1 511.38 -10.66 0.0 -190.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
155 1 210.22 74.94 0.0 -60.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
156 1 16.91 12.04 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
157 1 79.39 -8.29 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
158 1 53.01 41.07 0.0 -220.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
159 2 53.7 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
160 1 -29.29 11.72 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
161 1 137.66 104.12 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
162 2 47.79 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
163 1 0.0 0.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
164 1 15.05 12.06 0.0 -18.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
165 1 73.31 70.0 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
166 1 171.78 -39.78 0.0 -50.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
167 1 95.68 75.76 0.0 0.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
168 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
169 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
170 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
171 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
172 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
173 1 0.0 0.0 0.0 0.0 3 1.00300 0.00000 1.0 1 1.10800 0.89800;
174 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
175 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
176 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
177 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
178 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
179 1 0.0 0.0 0.0 0.0 2 1.00300 0.00000 1.0 1 1.10800 0.89800;
180 1 0.0 0.0 0.0 -220.0 1 1.00300 0.00000 1.0 1 1.10800 0.89800;
];
%% generator data
% bus Pg Qg Qmax Qmin Vg mBase status Pmax Pmin Pc1 Pc2 Qc1min Qc1max Qc2min Qc2max ramp_agc ramp_10 ramp_30 ramp_q apf
mpc.gen = [
4 994.085 -7.94 320.28 -336.16 1.003 1600.0 1 1683.12 305.05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1683.1216; % COW
6 1084.63 -30.87 378.83 -440.57 1.003 2100.0 1 1938.18 231.08 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1938.1774; % COW
9 2652.8 141.81 701.97 -418.35 1.003 4300.0 1 4498.26 807.34 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4498.2554; % COW
11 2402.61 -17.94 899.03 -934.91 1.003 4100.0 1 3956.96 848.26 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3956.9636; % NUC
13 1929.025 207.49 697.21 -282.23 1.003 3400.0 1 3299.94 558.11 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3299.9353; % COW
15 3479.425 361.045 1405.28 -683.19 1.003 5300.0 1 5393.53 1565.32 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 5393.5254; % COW
18 1305.43 23.19 319.0 -272.62 1.003 2000.0 1 2074.45 536.41 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2074.4534; % COW
30 6392.915 11.185 4070.83 -4048.46 1.003 8900.0 1 9757.06 3028.77 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 9757.0576; % COW
35 5083.72 1136.34 5544.98 -3272.3 1.003 9000.0 1 8718.16 1449.28 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 8718.1563; % COW
36 2254.335 129.4 652.92 -394.12 1.003 3300.0 1 3493.62 1015.05 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3493.625; % COW
40 191.725 48.255 247.19 -150.68 1.003 400.0 1 362.6 20.85 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 362.5961; % NG
43 400.445 71.525 311.04 -167.99 1.003 650.0 1 673.96 126.93 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 673.957; % COW
45 2010.625 89.785 765.95 -586.38 1.003 3600.0 1 3528.4 492.85 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3528.4009; % COW
47 152.35 0.69 100.88 -99.5 1.003 220.0 1 233.68 71.02 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 233.6808; % NG
65 2932.815 353.385 1553.56 -846.79 1.003 5800.0 1 5459.92 405.71 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 5459.918; % COW
70 1239.795 -79.99 642.85 -802.83 1.003 2600.0 1 2377.38 102.21 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2377.3799; % COW
77 7403.065 135.05 2448.15 -2178.05 1.003 10400.0 1 11165.05 3641.08 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 11165.0508; % COW
79 10354.215 2358.21 6030.37 -1313.95 1.003 20000.0 1 18208.22 2500.21 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 18208.2246; % NUC
103 737.535 -14.145 327.94 -356.23 1.003 1500.0 1 1359.89 115.18 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1359.8911; % NUC
112 1328.115 -16.82 421.05 -454.69 1.003 2100.0 1 2247.11 409.12 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2247.1069; % COW
116 805.425 -7.445 275.09 -289.98 1.003 1200.0 1 1298.69 312.16 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1298.6926; % COW
118 4482.46 1027.675 2735.8 -680.45 1.003 6900.0 1 7386.77 1578.15 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 7386.77; % PEL
138 1178.09 -18.965 307.09 -345.02 1.003 2000.0 1 2043.61 312.57 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 2043.6079; % COW
140 3469.755 594.35 2149.72 -961.02 1.003 6400.0 1 6145.22 794.29 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 6145.2231; % COW
144 1866.725 262.135 856.6 -332.33 1.003 3400.0 1 3135.12 598.33 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3135.1221; % COW
148 2041.235 252.83 746.55 -240.89 1.003 3400.0 1 3402.54 679.93 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3402.5374; % NUC
149 2590.31 -21.69 582.17 -625.55 1.003 4400.0 1 4251.85 928.77 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4251.854; % COW
159 2214.085 697.35 10604.58 -9209.88 1.003 3300.0 1 3483.05 945.12 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3483.0479; % NUC
162 501.625 -587.665 9359.49 -10534.82 1.003 900.0 1 839.66 163.59 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 839.6633; % NG
];
%% generator cost data
% 2 startup shutdown n c(n-1) ... c0
mpc.gencost = [
2 0.0 0.0 3 0.000000 27.125018 0.000000; % COW
2 0.0 0.0 3 0.000000 25.767823 0.000000; % COW
2 0.0 0.0 3 0.000000 33.458506 0.000000; % COW
2 0.0 0.0 3 0.000000 6.580729 0.000000; % NUC
2 0.0 0.0 3 0.000000 31.784817 0.000000; % COW
2 0.0 0.0 3 0.000000 27.844304 0.000000; % COW
2 0.0 0.0 3 0.000000 41.899242 0.000000; % COW
2 0.0 0.0 3 0.000000 26.887510 0.000000; % COW
2 0.0 0.0 3 0.000000 26.647901 0.000000; % COW
2 0.0 0.0 3 0.000000 23.718395 0.000000; % COW
2 0.0 0.0 3 0.000000 49.354886 0.000000; % NG
2 0.0 0.0 3 0.000000 35.232014 0.000000; % COW
2 0.0 0.0 3 0.000000 21.891639 0.000000; % COW
2 0.0 0.0 3 0.000000 25.383461 0.000000; % NG
2 0.0 0.0 3 0.000000 8.035714 0.000000; % COW
2 0.0 0.0 3 0.000000 33.912130 0.000000; % COW
2 0.0 0.0 3 0.000000 25.457586 0.000000; % COW
2 0.0 0.0 3 0.000000 7.168126 0.000000; % NUC
2 0.0 0.0 3 0.000000 8.487093 0.000000; % NUC
2 0.0 0.0 3 0.000000 19.203903 0.000000; % COW
2 0.0 0.0 3 0.000000 30.820178 0.000000; % COW
2 0.0 0.0 3 0.000000 124.672540 0.000000; % PEL
2 0.0 0.0 3 0.000000 28.267849 0.000000; % COW
2 0.0 0.0 3 0.000000 31.546462 0.000000; % COW
2 0.0 0.0 3 0.000000 22.349251 0.000000; % COW
2 0.0 0.0 3 0.000000 7.230771 0.000000; % NUC
2 0.0 0.0 3 0.000000 14.174214 0.000000; % COW
2 0.0 0.0 3 0.000000 8.614738 0.000000; % NUC
2 0.0 0.0 3 0.000000 49.876052 0.000000; % NG
];
%% branch data
% fbus tbus r x b rateA rateB rateC ratio angle status angmin angmax
mpc.branch = [
2 3 0.0 0.0146 0.0 2196 2196 2196 0.0 0.0 1 -30.0 30.0;
2 4 0.0 0.0173 0.0 1853 1853 1853 0.9545 0.0 1 -30.0 30.0;
3 8 0.00179 0.01988 2.576 1606 1606 1606 0.0 0.0 1 -30.0 30.0;
5 6 0.0 0.01238 0.0 2589 2589 2589 0.0 0.0 1 -30.0 30.0;
5 11 0.0 0.015 0.0 2137 2137 2137 0.0 0.0 1 -30.0 30.0;
17 5 0.00977 0.11 2.0 291 291 291 0.0 0.0 1 -30.0 30.0;
5 160 0.00811 0.1369 2.4348 234 234 234 0.0 0.0 1 -30.0 30.0;
7 8 0.0 0.011 0.0 2914 2914 2914 1.063 0.0 1 -30.0 30.0;
7 8 0.0 0.011 0.0 2914 2914 2914 1.063 0.0 1 -30.0 30.0;
7 28 0.0 0.00408 0.0 5501.81 7856 7856 0.0 0.0 1 -30.0 30.0;
8 9 0.0 0.0059 0.0 5432 5432 5432 0.0 0.0 1 -30.0 30.0;
8 10 0.00028 0.0138 0.0 2322 2322 2322 0.0 0.0 1 -30.0 30.0;
8 10 0.00029 0.0139 0.0 2306 2306 2306 0.0 0.0 1 -30.0 30.0;
8 17 0.0005 0.0053 0.0882 2202.27 6021 6021 0.0 0.0 1 -30.0 30.0;
163 8 0.0048 0.0436 0.7078 731 731 731 0.0 0.0 1 -30.0 30.0;
12 13 0.0 0.00666 0.0 4813 4813 4813 1.08 0.0 1 -30.0 30.0;
12 20 0.0 0.00634 0.0 5055 5055 5055 0.0 0.0 1 -30.0 30.0;
12 22 0.0 0.01188 0.0 2698 2698 2698 0.0 0.0 1 -30.0 30.0;
12 139 0.0028 0.0211 1.0194 1506 1506 1506 0.0 0.0 1 -30.0 30.0;
21 14 0.0 0.00634 0.0 5055 5055 5055 0.0 0.0 1 -30.0 30.0;
14 24 0.0 0.00826 0.0 3880 3880 3880 0.0 0.0 1 -30.0 30.0;
14 26 0.0 0.01795 0.0 1786 1786 1786 0.0 0.0 1 -30.0 30.0;
29 14 0.0 0.00612 0.0 5237 5237 5237 0.0 0.0 1 -30.0 30.0;
16 15 6e-05 0.00495 0.0 6474 6474 6474 1.1061 0.0 1 -30.0 30.0;
16 19 0.0004 0.0096 0.9038 3336 3336 3336 0.0 0.0 1 -30.0 30.0;
16 19 0.0004 0.0096 0.9038 3336 3336 3336 0.0 0.0 1 -30.0 30.0;
16 136 0.00259 0.02967 2.153 1077 1077 1077 0.0 0.0 1 -30.0 30.0;
16 136 0.00259 0.02967 2.153 1077 1077 1077 0.0 0.0 1 -30.0 30.0;
17 18 0.0 0.006 0.0 5342 5342 5342 1.0435 0.0 1 -30.0 30.0;
23 19 0.0 0.01188 0.0 2698 2698 2698 0.0 0.0 1 -30.0 30.0;
25 19 0.0 0.00826 0.0 3880 3880 3880 0.0 0.0 1 -30.0 30.0;
20 21 0.00077 0.01804 1.39842 1775 1775 1775 0.0 0.0 1 -30.0 30.0;
22 23 0.00241 0.05865 4.8656 546 546 546 0.0 0.0 1 -30.0 30.0;
24 25 0.00179 0.04244 3.3922 755 755 755 0.0 0.0 1 -30.0 30.0;
26 27 0.00207 0.04959 3.9516 646 646 646 0.0 0.0 1 -30.0 30.0;
27 139 0.0 0.01795 0.0 1786 1786 1786 0.0 0.0 1 -30.0 30.0;
28 29 0.00177 0.04189 3.3446 765 765 765 0.0 0.0 1 -30.0 30.0;
31 30 0.0 0.0015 0.0 21366 21366 21366 1.05 0.0 1 -30.0 30.0;
31 32 0.0035 0.07 4.606 458 458 458 0.0 0.0 1 -30.0 30.0;
31 80 0.00083 0.0239 3.3 1341 1341 1341 0.0 0.0 1 -30.0 30.0;
32 33 0.0 0.01 0.0 3205 3205 3205 1.1 0.0 1 -30.0 30.0;
33 34 0.002 0.02 0.8 855.66 1595 1595 0.0 0.0 1 -30.0 30.0;
34 35 0.0 0.002 0.0 16025 16025 16025 0.0 0.0 1 -30.0 30.0;
85 36 0.0 0.0046 0.0 6968 6968 6968 0.0 0.0 1 -30.0 30.0;
37 38 0.00074 0.01861 1.40264 1721 1721 1721 0.0 0.0 1 -30.0 30.0;
37 56 0.00082 0.01668 1.18802 1920 1920 1920 0.0 0.0 1 -30.0 30.0;
37 64 0.0 0.00159 0.12002 5755.18 20157 20157 0.0 0.0 1 -30.0 30.0;
37 64 0.0 0.00159 0.12002 5757.14 20157 20157 0.0 0.0 1 -30.0 30.0;
38 48 0.00013 0.00693 0.0 4624 4624 4624 1.05 0.0 1 -30.0 30.0;
39 40 0.0005 0.0238 0.0 1347 1347 1347 0.0 0.0 1 -30.0 30.0;
39 46 0.00221 0.03346 0.07338 892.46 956 956 0.0 0.0 1 -30.0 30.0;
39 48 0.0029 0.038 0.0824 841 841 841 0.0 0.0 1 -30.0 30.0;
39 59 0.00309 0.04677 0.1008 684 684 684 0.0 0.0 1 -30.0 30.0;
39 60 0.00226 0.03422 0.07506 832.1 935 935 0.0 0.0 1 -30.0 30.0;
55 41 0.00047 0.00723 0.01624 754.41 4424 4424 0.0 0.0 1 -30.0 30.0;
41 58 0.00035 0.00536 0.01204 822.58 5967 5967 0.0 0.0 1 -30.0 30.0;
42 43 0.00058 0.02535 0.0 1264 1264 1264 1.0491 0.0 1 -30.0 30.0;
50 42 0.0022 0.03422 0.07716 761.15 935 935 0.0 0.0 1 -30.0 30.0;
50 42 0.00238 0.03669 0.08284 872 872 872 0.0 0.0 1 -30.0 30.0;
57 42 0.00201 0.03074 0.06886 768.89 1041 1041 0.0 0.0 1 -30.0 30.0;
42 58 0.00281 0.04296 0.09648 745 745 745 0.0 0.0 1 -30.0 30.0;
44 45 0.0 0.0052 0.0 6164 6164 6164 1.025 0.0 1 -30.0 30.0;
44 160 0.0018 0.0245 0.4392 1305 1305 1305 0.0 0.0 1 -30.0 30.0;
44 160 0.0018 0.0245 0.4392 1305 1305 1305 0.0 0.0 1 -30.0 30.0;
48 46 0.00029 0.00434 0.0095 841.15 7369 7369 0.0 0.0 1 -30.0 30.0;
48 47 0.00499 0.11473 0.0 280 280 280 1.0478 0.0 1 -30.0 30.0;
49 48 0.00026 0.01386 0.0 2312 2312 2312 1.05 0.0 1 -30.0 30.0;
48 55 0.00229 0.01583 0.0306 855.66 2004 2004 0.0 0.0 1 -30.0 30.0;
48 55 0.00229 0.01583 0.0306 905.33 2004 2004 0.0 0.0 1 -30.0 30.0;
48 59 0.00141 0.00967 0.0194 772.89 3280 3280 0.0 0.0 1 -30.0 30.0;
48 59 0.00141 0.00967 0.0194 912.29 3280 3280 0.0 0.0 1 -30.0 30.0;
48 59 0.00161 0.00971 0.01928 763.48 3257 3257 0.0 0.0 1 -30.0 30.0;
48 59 0.00161 0.00971 0.01928 911.69 3257 3257 0.0 0.0 1 -30.0 30.0;
48 60 0.00027 0.00393 0.00918 837.06 8136 8136 0.0 0.0 1 -30.0 30.0;
48 60 0.00027 0.00393 0.00918 783.45 8136 8136 0.0 0.0 1 -30.0 30.0;
48 60 0.00027 0.00393 0.00918 804.85 8136 8136 0.0 0.0 1 -30.0 30.0;
48 62 0.00138 0.01116 0.0247 758.56 2851 2851 0.0 0.0 1 -30.0 30.0;
48 62 0.00138 0.01116 0.0247 759.88 2851 2851 0.0 0.0 1 -30.0 30.0;
64 49 0.00083 0.01884 1.66668 1700 1700 1700 0.0 0.0 1 -30.0 30.0;
50 57 0.00037 0.00366 0.0083 880.09 8713 8713 0.0 0.0 1 -30.0 30.0;
50 58 0.00055 0.00586 0.01246 835.5 5446 5446 0.0 0.0 1 -30.0 30.0;
52 51 0.00059 0.01491 0.0 2148 2148 2148 1.0017 0.0 1 -30.0 30.0;
53 51 0.00059 0.01491 0.0 2148 2148 2148 1.0017 0.0 1 -30.0 30.0;
54 51 0.0003 0.0133 0.0 2410 2410 2410 0.0 0.0 1 -30.0 30.0;
54 51 0.0003 0.0134 0.0 2392 2392 2392 0.0 0.0 1 -30.0 30.0;
52 63 0.0107 0.07905 0.3667 402 402 402 0.0 0.0 1 -30.0 30.0;
53 63 0.0107 0.07905 0.3667 402 402 402 0.0 0.0 1 -30.0 30.0;
57 54 0.00073 0.01025 0.02558 765.61 3119 3119 0.0 0.0 1 -30.0 30.0;
57 54 0.00073 0.01025 0.02558 898.03 3119 3119 0.0 0.0 1 -30.0 30.0;
56 55 0.00013 0.01386 0.0 2313 2313 2313 1.0106 0.0 1 -30.0 30.0;
56 55 0.00013 0.01386 0.0 2313 2313 2313 1.0106 0.0 1 -30.0 30.0;
55 58 0.00119 0.01244 0.02798 856.67 2565 2565 0.0 0.0 1 -30.0 30.0;
55 58 0.00119 0.01244 0.02798 852.17 2565 2565 0.0 0.0 1 -30.0 30.0;
62 55 0.00128 0.00979 0.0212 868.54 3246 3246 0.0 0.0 1 -30.0 30.0;
57 58 0.0011 0.01189 0.02514 908.69 2684 2684 0.0 0.0 1 -30.0 30.0;
60 61 0.0 0.00115 0.0 27869 27869 27869 1.0133 0.0 1 -30.0 30.0;
137 61 0.0014 0.0264 0.102 848.66 1213 1213 0.0 0.0 1 -30.0 30.0;
150 61 0.00065 0.01187 0.04672 913.99 2696 2696 0.0 0.0 1 -30.0 30.0;
150 61 0.00065 0.01187 0.04672 773.57 2696 2696 0.0 0.0 1 -30.0 30.0;
64 63 0.0002 0.02338 0.0 1371 1371 1371 0.9789 0.0 1 -30.0 30.0;
139 64 0.00179 0.02524 0.53546 1267 1267 1267 0.0 0.0 1 -30.0 30.0;
139 64 0.00179 0.02524 0.53546 1267 1267 1267 0.0 0.0 1 -30.0 30.0;
142 64 0.0002 0.0041 0.2962 5830.69 7808 7808 0.0 0.0 1 -30.0 30.0;
66 65 0.0 0.005 0.0 6410 6410 6410 1.09 0.0 1 -30.0 30.0;
78 66 0.0007 0.074 4.87 434 434 434 0.0 0.0 1 -30.0 30.0;
68 67 0.00089 0.0299 0.0 1072 1072 1072 0.9873 0.0 1 -30.0 30.0;
69 68 0.0002 0.01181 0.0 2714 2714 2714 1.0238 0.0 1 -30.0 30.0;
69 68 9e-05 0.00735 0.0 4361 4361 4361 1.0238 0.0 1 -30.0 30.0;
68 70 0.0 0.01034 0.0 3100 3100 3100 1.0455 0.0 1 -30.0 30.0;
68 71 6e-05 0.00131 0.00378 828.29 24439 24439 0.0 0.0 1 -30.0 30.0;
68 71 6e-05 0.00116 0.00332 776.56 27592 27592 0.0 0.0 1 -30.0 30.0;
69 72 1e-05 0.0003 0.01434 5711.04 106769 106769 0.0 0.0 1 -30.0 30.0;
69 72 1e-05 0.0003 0.01844 5829.8 106769 106769 0.0 0.0 1 -30.0 30.0;
69 76 0.00023 0.00451 0.3332 5923.31 7097 7097 0.0 0.0 1 -30.0 30.0;
69 76 0.0002 0.00446 0.305 6169.99 7179 7179 0.0 0.0 1 -30.0 30.0;
72 71 0.0 0.00221 0.0 14502 14502 14502 1.0234 0.0 1 -30.0 30.0;
75 73 0.00179 0.01405 3.68 2263 2263 2263 0.0 0.0 1 -30.0 30.0;
78 74 0.00113 0.02069 1.85526 1547 1547 1547 0.0 0.0 1 -30.0 30.0;
75 76 0.00196 0.03304 1.88 969 969 969 0.0 0.0 1 -30.0 30.0;
75 78 0.00142 0.02258 1.88 1417 1417 1417 0.0 0.0 1 -30.0 30.0;
76 77 0.0 0.00375 0.0 8547 8547 8547 1.0977 0.0 1 -30.0 30.0;
78 76 0.0012 0.02316 1.7152 1382 1382 1382 0.0 0.0 1 -30.0 30.0;
78 76 0.0003 0.02 3.6 1603 1603 1603 0.0 0.0 1 -30.0 30.0;
82 76 0.00063 0.01412 1.09756 2268 2268 2268 0.0 0.0 1 -30.0 30.0;
82 76 0.00109 0.02408 1.55542 1330 1330 1330 0.0 0.0 1 -30.0 30.0;
82 76 0.00108 0.02409 1.55348 1330 1330 1330 0.0 0.0 1 -30.0 30.0;
80 78 0.0002 0.0082 1.3 3908 3908 3908 0.0 0.0 1 -30.0 30.0;
80 78 0.0002 0.0082 1.3 3908 3908 3908 0.0 0.0 1 -30.0 30.0;
80 79 0.0 0.0025 0.0 12820 12820 12820 1.066 0.0 1 -30.0 30.0;
81 99 0.00264 0.05356 5.29066 598 598 598 0.0 0.0 1 -30.0 30.0;
81 180 0.0 0.02667 0.0 1202 1202 1202 0.0 0.0 1 -30.0 30.0;
82 87 0.00041 0.00737 0.72694 4342 4342 4342 0.0 0.0 1 -30.0 30.0;
82 91 0.00066 0.01266 0.95976 2529 2529 2529 0.0 0.0 1 -30.0 30.0;
82 95 0.00066 0.01266 0.95976 2529 2529 2529 0.0 0.0 1 -30.0 30.0;
83 89 0.00072 0.01382 1.27572 2316 2316 2316 0.0 0.0 1 -30.0 30.0;
94 83 0.00078 0.01502 1.1381 2131 2131 2131 0.0 0.0 1 -30.0 30.0;
98 83 0.00074 0.01413 1.06634 2266 2266 2266 0.0 0.0 1 -30.0 30.0;
83 168 0.0 0.0072 0.0 4452 4452 4452 0.0 0.0 1 -30.0 30.0;
83 170 0.0 0.00864 0.0 3710 3710 3710 0.0 0.0 1 -30.0 30.0;
83 172 0.0 0.01 0.0 3205 3205 3205 0.0 0.0 1 -30.0 30.0;
84 85 0.0 0.0072 0.0 4452 4452 4452 1.05 0.0 1 -30.0 30.0;
99 84 0.0 0.02667 0.0 1202 1202 1202 0.0 0.0 1 -30.0 30.0;
156 85 0.0062 0.0673 1.1156 475 475 475 0.0 0.0 1 -30.0 30.0;
88 86 0.0006 0.01036 1.01456 3089 3089 3089 0.0 0.0 1 -30.0 30.0;
90 86 0.00012 0.00238 0.21926 5500.98 13449 13449 0.0 0.0 1 -30.0 30.0;
180 86 0.00122 0.02373 2.2071 1349 1349 1349 0.0 0.0 1 -30.0 30.0;
87 88 0.0 0.01263 0.0 2538 2538 2538 0.0 0.0 1 -30.0 30.0;
89 90 0.0 0.00858 0.0 3736 3736 3736 0.0 0.0 1 -30.0 30.0;
91 92 0.0 0.01263 0.0 2538 2538 2538 0.0 0.0 1 -30.0 30.0;
92 93 0.00074 0.01428 1.0822 2242 2242 2242 0.0 0.0 1 -30.0 30.0;
93 94 0.0 0.01263 0.0 2538 2538 2538 0.0 0.0 1 -30.0 30.0;
95 96 0.0 0.01263 0.0 2538 2538 2538 0.0 0.0 1 -30.0 30.0;
96 97 0.00074 0.01428 1.0822 2242 2242 2242 0.0 0.0 1 -30.0 30.0;
97 98 0.0 0.01263 0.0 2538 2538 2538 0.0 0.0 1 -30.0 30.0;
101 100 0.02482 0.16938 0.20232 188 188 188 0.0 0.0 1 -30.0 30.0;
100 117 0.0148 0.10101 0.12066 314 314 314 0.0 0.0 1 -30.0 30.0;
101 105 0.01382 0.09268 0.1106 343 343 343 0.0 0.0 1 -30.0 30.0;
101 106 0.01668 0.11381 0.13608 279 279 279 0.0 0.0 1 -30.0 30.0;
101 113 0.01113 0.06678 0.07286 474 474 474 0.0 0.0 1 -30.0 30.0;
101 113 0.0105 0.0654 0.0686 484 484 484 0.0 0.0 1 -30.0 30.0;
101 113 0.01105 0.06642 0.0716 476 476 476 0.0 0.0 1 -30.0 30.0;
101 117 0.03903 0.27403 0.31072 116 116 116 0.0 0.0 1 -30.0 30.0;
102 103 0.0 0.0098 0.0 3271 3271 3271 1.05 0.0 1 -30.0 30.0;
104 102 0.00079 0.01937 1.3285 1654 1654 1654 0.0 0.0 1 -30.0 30.0;
102 108 0.00087 0.02087 1.4571 1535 1535 1535 0.0 0.0 1 -30.0 30.0;
102 108 0.00087 0.02087 1.4571 1535 1535 1535 0.0 0.0 1 -30.0 30.0;
107 104 0.00083 0.01985 0.0 1614 1614 1614 0.0 0.0 1 -30.0 30.0;
134 104 0.00093 0.03644 1.3895 880 880 880 0.0 0.0 1 -30.0 30.0;
104 135 0.00072 0.016 1.0879 2002 2002 2002 0.0 0.0 1 -30.0 30.0;
105 117 0.03058 0.2046 0.24472 155 155 155 0.0 0.0 1 -30.0 30.0;
106 117 0.02235 0.16106 0.18342 198 198 198 0.0 0.0 1 -30.0 30.0;
107 108 0.00153 0.0147 0.0 2169 2169 2169 0.0 0.0 1 -30.0 30.0;
110 107 0.00053 0.01297 0.0 2469 2469 2469 0.0 0.0 1 -30.0 30.0;
109 108 0.0 0.0174 0.0 1842 1842 1842 1.119 0.0 1 -30.0 30.0;
109 108 0.0 0.0119 0.0 2694 2694 2694 1.119 0.0 1 -30.0 30.0;
133 108 2e-05 0.01331 0.0 2408 2408 2408 0.0 0.0 1 -30.0 30.0;
135 108 2e-05 0.00998 0.0 3212 3212 3212 0.0 0.0 1 -30.0 30.0;
108 174 0.0 0.00935 0.0 3428 3428 3428 0.0 0.0 1 -30.0 30.0;
108 176 0.0 0.00944 0.0 3395 3395 3395 0.0 0.0 1 -30.0 30.0;
108 178 0.0 0.00935 0.0 3428 3428 3428 0.0 0.0 1 -30.0 30.0;
111 120 0.0 0.01 0.0 3205 3205 3205 0.0 0.0 1 -30.0 30.0;
173 111 0.0 0.01 0.0 3205 3205 3205 0.0 0.0 1 -30.0 30.0;
112 113 0.0 0.02281 0.0 1406 1406 1406 0.9174 0.0 1 -30.0 30.0;
113 114 0.0001 0.0174 0.0 1842 1842 1842 1.119 0.0 1 -30.0 30.0;
114 124 2e-05 0.00998 0.0 3212 3212 3212 0.0 0.0 1 -30.0 30.0;
114 126 2e-05 0.00998 0.0 3212 3212 3212 0.0 0.0 1 -30.0 30.0;
169 114 0.0 0.0072 0.0 4452 4452 4452 0.0 0.0 1 -30.0 30.0;
171 114 0.0 0.0072 0.0 4452 4452 4452 0.0 0.0 1 -30.0 30.0;
125 115 1e-05 0.00666 0.0 4813 4813 4813 0.0 0.0 1 -30.0 30.0;
127 115 1e-05 0.00666 0.0 4813 4813 4813 0.0 0.0 1 -30.0 30.0;
115 128 1e-05 0.0112 0.0 2862 2862 2862 0.0 0.0 1 -30.0 30.0;
115 130 1e-05 0.0072 0.0 4452 4452 4452 0.0 0.0 1 -30.0 30.0;
116 117 0.0 0.01815 0.0 1766 1766 1766 0.9091 0.0 1 -30.0 30.0;
117 119 0.0002 0.0125 0.0 2564 2564 2564 1.119 0.0 1 -30.0 30.0;
118 119 0.0 0.00448 0.0 7154 7154 7154 0.9452 0.0 1 -30.0 30.0;
123 119 0.0 0.01 0.0 3205 3205 3205 0.0 0.0 1 -30.0 30.0;
129 119 1e-05 0.0112 0.0 2862 2862 2862 0.0 0.0 1 -30.0 30.0;
131 119 1e-05 0.0036 0.0 5209.14 8903 8903 0.0 0.0 1 -30.0 30.0;
119 132 1e-05 0.00755 0.0 4245 4245 4245 0.0 0.0 1 -30.0 30.0;
119 134 1e-05 0.01098 0.0 2919 2919 2919 0.0 0.0 1 -30.0 30.0;
120 121 0.00076 0.01952 1.8245 1641 1641 1641 0.0 0.0 1 -30.0 30.0;
121 122 0.0 0.01 0.0 3205 3205 3205 0.0 0.0 1 -30.0 30.0;
122 123 0.00082 0.02119 1.9842 1512 1512 1512 0.0 0.0 1 -30.0 30.0;
124 125 0.0014 0.02338 1.475 1369 1369 1369 0.0 0.0 1 -30.0 30.0;
126 127 0.0014 0.02338 1.475 1369 1369 1369 0.0 0.0 1 -30.0 30.0;
128 129 0.00154 0.03409 2.3114 940 940 940 0.0 0.0 1 -30.0 30.0;
130 131 0.00095 0.02102 1.4252 1524 1524 1524 0.0 0.0 1 -30.0 30.0;
132 133 0.00165 0.05719 2.4774 561 561 561 0.0 0.0 1 -30.0 30.0;
136 152 0.00042 0.00905 0.66794 3538 3538 3538 0.0 0.0 1 -30.0 30.0;
137 143 0.0019 0.0258 0.0984 911.65 1239 1239 0.0 0.0 1 -30.0 30.0;
137 150 0.00845 0.07034 0.15954 453 453 453 0.0 0.0 1 -30.0 30.0;
138 139 0.0 0.01512 0.0 2120 2120 2120 0.996 0.0 1 -30.0 30.0;
139 142 0.00193 0.02779 4.6712 1151 1151 1151 0.0 0.0 1 -30.0 30.0;
147 139 0.00056 0.01415 1.0429 2264 2264 2264 0.0 0.0 1 -30.0 30.0;
140 141 0.0 0.00365 0.0 8781 8781 8781 0.9787 0.0 1 -30.0 30.0;
141 143 0.0011 0.0127 0.048 859.21 2515 2515 0.0 0.0 1 -30.0 30.0;
142 145 0.00028 0.00753 0.51736 4254 4254 4254 0.0 0.0 1 -30.0 30.0;
142 145 0.00035 0.0075 0.5536 4269 4269 4269 0.0 0.0 1 -30.0 30.0;
142 147 0.0019 0.031 4.1402 1032 1032 1032 0.0 0.0 1 -30.0 30.0;
142 151 0.0006 0.0128 0.9462 2502 2502 2502 0.0 0.0 1 -30.0 30.0;
142 153 0.00044 0.01125 0.8292 2847 2847 2847 0.0 0.0 1 -30.0 30.0;
142 153 0.00044 0.01125 0.8292 2847 2847 2847 0.0 0.0 1 -30.0 30.0;
146 143 0.00138 0.05399 0.15252 594 594 594 0.0 0.0 1 -30.0 30.0;
154 143 0.0032 0.0395 0.144 754.67 809 809 0.0 0.0 1 -30.0 30.0;
144 145 0.0 0.00516 0.0 6211 6211 6211 0.9843 0.0 1 -30.0 30.0;
145 146 0.0 0.005 0.0 6410 6410 6410 0.0 0.0 1 -30.0 30.0;
145 151 0.00021 0.00457 0.32336 5370.29 7006 7006 0.0 0.0 1 -30.0 30.0;
147 148 0.0 0.0098 0.0 3271 3271 3271 1.05 0.0 1 -30.0 30.0;
149 150 0.0 0.01026 0.0 3124 3124 3124 0.9871 0.0 1 -30.0 30.0;
150 154 0.00285 0.03649 0.12656 876 876 876 0.0 0.0 1 -30.0 30.0;
150 154 0.00138 0.03399 0.11252 873.01 943 943 0.0 0.0 1 -30.0 30.0;
151 152 0.0004 0.0093 0.6856 3443 3443 3443 0.0 0.0 1 -30.0 30.0;
153 154 0.0 0.01149 0.0 2790 2790 2790 1.0631 0.0 1 -30.0 30.0;
153 154 0.0 0.01149 0.0 2790 2790 2790 1.0631 0.0 1 -30.0 30.0;
153 154 0.0 0.01149 0.0 2790 2790 2790 1.0631 0.0 1 -30.0 30.0;
175 153 0.0 0.00935 0.0 3428 3428 3428 0.0 0.0 1 -30.0 30.0;
177 153 0.0 0.00935 0.0 3428 3428 3428 0.0 0.0 1 -30.0 30.0;
179 153 0.0 0.0084 0.0 3816 3816 3816 0.0 0.0 1 -30.0 30.0;
156 155 0.0024 0.0332 0.5849 963 963 963 0.0 0.0 1 -30.0 30.0;
155 158 0.0052 0.0602 1.01 531 531 531 0.0 0.0 1 -30.0 30.0;
155 158 0.0049 0.0537 0.8843 595 595 595 0.0 0.0 1 -30.0 30.0;
155 160 0.0017 0.0225 0.3992 1421 1421 1421 0.0 0.0 1 -30.0 30.0;
155 160 0.0021 0.0238 0.3845 1342 1342 1342 0.0 0.0 1 -30.0 30.0;
155 165 0.0012 0.0172 0.2987 1859 1859 1859 0.0 0.0 1 -30.0 30.0;
155 167 0.0008 0.0106 0.2039 2253.37 3015 3015 0.0 0.0 1 -30.0 30.0;
156 157 0.0003 0.0181 0.0 1771 1771 1771 0.0 0.0 1 -30.0 30.0;
156 167 0.0016 0.0226 0.381 1415 1415 1415 0.0 0.0 1 -30.0 30.0;
157 161 0.0108 0.0965 0.3296 331 331 331 0.0 0.0 1 -30.0 30.0;
158 159 0.0002 0.0058 0.0 5523 5523 5523 0.9855 0.0 1 -30.0 30.0;
158 164 0.0096 0.0878 1.4265 363 363 363 0.0 0.0 1 -30.0 30.0;
158 165 0.0034 0.0392 0.6524 815 815 815 0.0 0.0 1 -30.0 30.0;
158 166 0.0034 0.0374 0.6208 854 854 854 0.0 0.0 1 -30.0 30.0;
158 166 0.0034 0.0372 0.6182 858 858 858 0.0 0.0 1 -30.0 30.0;
160 166 0.0038 0.034 0.5824 937 937 937 0.0 0.0 1 -30.0 30.0;
160 166 0.0032 0.0349 0.5722 915 915 915 0.0 0.0 1 -30.0 30.0;
161 162 0.0005 0.0141 0.0 2272 2272 2272 1.0588 0.0 1 -30.0 30.0;
164 163 0.0 0.0195 0.0 1644 1644 1644 0.0 0.0 1 -30.0 30.0;
168 169 0.00103 0.02338 1.5804 1370 1370 1370 0.0 0.0 1 -30.0 30.0;
170 171 0.00107 0.0247 1.527 1297 1297 1297 0.0 0.0 1 -30.0 30.0;
172 173 0.00103 0.0323 2.796 992 992 992 0.0 0.0 1 -30.0 30.0;
174 175 0.00123 0.02659 1.98702 1204 1204 1204 0.0 0.0 1 -30.0 30.0;
176 177 0.00123 0.02662 1.9888 1203 1203 1203 0.0 0.0 1 -30.0 30.0;
178 179 0.00112 0.02517 1.83586 1273 1273 1273 0.0 0.0 1 -30.0 30.0;
];
% INFO : === Translation Options ===
% INFO : Phase Angle Bound: 30.0 (deg.)
% INFO : Setting Flat Start
% INFO : Gen Active Cost Model: stat
% INFO : Line Capacity Model: ub
% INFO : Line Capacity PAB: 15.0 (deg.)
% INFO :
% INFO : === Generator Classification Notes ===
% INFO : PEL 1 - 5.65
% INFO : NUC 5 - 26.23
% INFO : COW 20 - 66.89
% INFO : NG 3 - 1.23
% INFO :
% INFO : === Generator Active Cost Stat Model Notes ===
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 27.1250179296 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 25.7678227951 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 33.4585062737 0
% INFO : Updated Generator Cost: NUC - 0.0 1.0 0.0 -> 0 6.58072934106 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 31.784817287 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 27.8443043445 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 41.8992416145 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 26.8875096404 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 26.6479006434 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 23.7183950677 0
% INFO : Updated Generator Cost: NG - 0.0 1.0 0.0 -> 0 49.3548855041 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 35.2320142891 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 21.8916389009 0
% INFO : Updated Generator Cost: NG - 0.0 1.0 0.0 -> 0 25.3834605391 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 8.035713941 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 33.9121299287 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 25.4575858944 0
% INFO : Updated Generator Cost: NUC - 0.0 1.0 0.0 -> 0 7.16812647348 0
% INFO : Updated Generator Cost: NUC - 0.0 1.0 0.0 -> 0 8.48709256678 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 19.2039030191 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 30.8201776517 0
% INFO : Updated Generator Cost: PEL - 0.0 1.0 0.0 -> 0 124.672540443 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 28.2678488299 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 31.5464618834 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 22.3492512674 0
% INFO : Updated Generator Cost: NUC - 0.0 1.0 0.0 -> 0 7.23077124798 0
% INFO : Updated Generator Cost: COW - 0.0 1.0 0.0 -> 0 14.1742136755 0
% INFO : Updated Generator Cost: NUC - 0.0 1.0 0.0 -> 0 8.614737925 0
% INFO : Updated Generator Cost: NG - 0.0 1.0 0.0 -> 0 49.8760518349 0
% INFO :
% INFO : === Generator Bounds Update Notes ===
% INFO :
% INFO : === Base KV Replacement Notes ===
% INFO :
% INFO : === Transformer Setting Replacement Notes ===
% INFO :
% INFO : === Line Capacity UB Model Notes ===
% INFO : Updated Thermal Rating: on line 2-3 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2196
% INFO : Updated Thermal Rating: on transformer 2-4 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 1853
% INFO : Updated Thermal Rating: on line 3-8 : Rate A, Rate B, Rate C , 2228.92, 0.0, 0.0 -> 1606
% INFO : Updated Thermal Rating: on line 5-6 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2589
% INFO : Updated Thermal Rating: on line 5-11 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2137
% INFO : Updated Thermal Rating: on line 17-5 : Rate A, Rate B, Rate C , 2345.79, 0.0, 0.0 -> 291
% INFO : Updated Thermal Rating: on line 5-160 : Rate A, Rate B, Rate C , 2239.56, 0.0, 0.0 -> 234
% INFO : Updated Thermal Rating: on transformer 7-8 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2914
% INFO : Updated Thermal Rating: on transformer 7-8 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2914
% INFO : Updated Thermal Rating: on line 7-28 : Rate B, Rate C , 0.0, 0.0 -> 7856
% INFO : Updated Thermal Rating: on line 8-9 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 5432
% INFO : Updated Thermal Rating: on line 8-10 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2322
% INFO : Updated Thermal Rating: on line 8-10 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2306
% INFO : Updated Thermal Rating: on line 8-17 : Rate B, Rate C , 0.0, 0.0 -> 6021
% INFO : Updated Thermal Rating: on line 163-8 : Rate A, Rate B, Rate C , 2384.64, 0.0, 0.0 -> 731
% INFO : Updated Thermal Rating: on transformer 12-13 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 4813
% INFO : Updated Thermal Rating: on line 12-20 : Rate A, Rate B, Rate C , 6105.06, 0.0, 0.0 -> 5055
% INFO : Updated Thermal Rating: on line 12-22 : Rate A, Rate B, Rate C , 5728.08, 0.0, 0.0 -> 2698
% INFO : Updated Thermal Rating: on line 12-139 : Rate A, Rate B, Rate C , 5383.46, 0.0, 1630.0 -> 1506
% INFO : Updated Thermal Rating: on line 21-14 : Rate A, Rate B, Rate C , 6161.59, 0.0, 0.0 -> 5055
% INFO : Updated Thermal Rating: on line 14-24 : Rate A, Rate B, Rate C , 5418.44, 0.0, 0.0 -> 3880
% INFO : Updated Thermal Rating: on line 14-26 : Rate A, Rate B, Rate C , 6310.11, 0.0, 0.0 -> 1786
% INFO : Updated Thermal Rating: on line 29-14 : Rate A, Rate B, Rate C , 5435.24, 0.0, 0.0 -> 5237
% INFO : Updated Thermal Rating: on transformer 16-15 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 6474
% INFO : Updated Thermal Rating: on line 16-19 : Rate A, Rate B, Rate C , 5226.72, 0.0, 0.0 -> 3336
% INFO : Updated Thermal Rating: on line 16-19 : Rate A, Rate B, Rate C , 5285.72, 0.0, 0.0 -> 3336
% INFO : Updated Thermal Rating: on line 16-136 : Rate A, Rate B, Rate C , 6089.13, 0.0, 1800.0 -> 1077
% INFO : Updated Thermal Rating: on line 16-136 : Rate A, Rate B, Rate C , 5579.2, 0.0, 1800.0 -> 1077
% INFO : Updated Thermal Rating: on transformer 17-18 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 5342
% INFO : Updated Thermal Rating: on line 23-19 : Rate A, Rate B, Rate C , 5239.8, 0.0, 0.0 -> 2698
% INFO : Updated Thermal Rating: on line 25-19 : Rate A, Rate B, Rate C , 5833.18, 0.0, 0.0 -> 3880
% INFO : Updated Thermal Rating: on line 20-21 : Rate A, Rate B, Rate C , 5429.88, 0.0, 0.0 -> 1775
% INFO : Updated Thermal Rating: on line 22-23 : Rate A, Rate B, Rate C , 6011.73, 0.0, 0.0 -> 546
% INFO : Updated Thermal Rating: on line 24-25 : Rate A, Rate B, Rate C , 6231.65, 0.0, 0.0 -> 755
% INFO : Updated Thermal Rating: on line 26-27 : Rate A, Rate B, Rate C , 5528.94, 0.0, 0.0 -> 646
% INFO : Updated Thermal Rating: on line 27-139 : Rate A, Rate B, Rate C , 6343.97, 0.0, 0.0 -> 1786
% INFO : Updated Thermal Rating: on line 28-29 : Rate A, Rate B, Rate C , 5936.59, 0.0, 0.0 -> 765
% INFO : Updated Thermal Rating: on transformer 31-30 : Rate A , 29700.0 -> 21366
% INFO : Updated Thermal Rating: on line 31-32 : Rate A, Rate B, Rate C , 5748.21, 0.0, 0.0 -> 458
% INFO : Updated Thermal Rating: on line 31-80 : Rate A, Rate B, Rate C , 5328.93, 0.0, 0.0 -> 1341
% INFO : Updated Thermal Rating: on transformer 32-33 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 3205
% INFO : Updated Thermal Rating: on line 33-34 : Rate B, Rate C , 0.0, 0.0 -> 1595
% INFO : Updated Thermal Rating: on line 34-35 : Rate A , 29700.0 -> 16025
% INFO : Updated Thermal Rating: on line 85-36 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 6968
% INFO : Updated Thermal Rating: on line 37-38 : Rate A, Rate B, Rate C , 5232.01, 0.0, 0.0 -> 1721
% INFO : Updated Thermal Rating: on line 37-56 : Rate A, Rate B, Rate C , 6104.52, 0.0, 0.0 -> 1920
% INFO : Updated Thermal Rating: on line 37-64 : Rate B, Rate C , 0.0, 0.0 -> 20157
% INFO : Updated Thermal Rating: on line 37-64 : Rate B, Rate C , 0.0, 0.0 -> 20157
% INFO : Updated Thermal Rating: on transformer 38-48 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 4624
% INFO : Updated Thermal Rating: on line 39-40 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 1347
% INFO : Updated Thermal Rating: on line 39-46 : Rate B, Rate C , 0.0, 0.0 -> 956
% INFO : Updated Thermal Rating: on line 39-48 : Rate A, Rate B, Rate C , 893.64, 0.0, 0.0 -> 841
% INFO : Updated Thermal Rating: on line 39-59 : Rate A, Rate B, Rate C , 756.46, 0.0, 0.0 -> 684
% INFO : Updated Thermal Rating: on line 39-60 : Rate B, Rate C , 0.0, 0.0 -> 935
% INFO : Updated Thermal Rating: on line 55-41 : Rate B, Rate C , 0.0, 0.0 -> 4424
% INFO : Updated Thermal Rating: on line 41-58 : Rate B, Rate C , 0.0, 0.0 -> 5967
% INFO : Updated Thermal Rating: on transformer 42-43 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 1264
% INFO : Updated Thermal Rating: on line 50-42 : Rate B, Rate C , 0.0, 0.0 -> 935
% INFO : Updated Thermal Rating: on line 50-42 : Rate A, Rate B, Rate C , 887.5, 0.0, 0.0 -> 872
% INFO : Updated Thermal Rating: on line 57-42 : Rate B, Rate C , 0.0, 0.0 -> 1041
% INFO : Updated Thermal Rating: on line 42-58 : Rate A, Rate B, Rate C , 867.19, 0.0, 0.0 -> 745
% INFO : Updated Thermal Rating: on transformer 44-45 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 6164
% INFO : Updated Thermal Rating: on line 44-160 : Rate A, Rate B, Rate C , 2080.63, 0.0, 0.0 -> 1305
% INFO : Updated Thermal Rating: on line 44-160 : Rate A, Rate B, Rate C , 2218.06, 0.0, 0.0 -> 1305
% INFO : Updated Thermal Rating: on line 48-46 : Rate B, Rate C , 0.0, 0.0 -> 7369
% INFO : Updated Thermal Rating: on transformer 48-47 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 280
% INFO : Updated Thermal Rating: on transformer 49-48 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2312
% INFO : Updated Thermal Rating: on line 48-55 : Rate B, Rate C , 0.0, 0.0 -> 2004
% INFO : Updated Thermal Rating: on line 48-55 : Rate B, Rate C , 0.0, 0.0 -> 2004
% INFO : Updated Thermal Rating: on line 48-59 : Rate B, Rate C , 0.0, 0.0 -> 3280
% INFO : Updated Thermal Rating: on line 48-59 : Rate B, Rate C , 0.0, 0.0 -> 3280
% INFO : Updated Thermal Rating: on line 48-59 : Rate B, Rate C , 0.0, 0.0 -> 3257
% INFO : Updated Thermal Rating: on line 48-59 : Rate B, Rate C , 0.0, 0.0 -> 3257
% INFO : Updated Thermal Rating: on line 48-60 : Rate B, Rate C , 0.0, 0.0 -> 8136
% INFO : Updated Thermal Rating: on line 48-60 : Rate B, Rate C , 0.0, 0.0 -> 8136
% INFO : Updated Thermal Rating: on line 48-60 : Rate B, Rate C , 0.0, 0.0 -> 8136
% INFO : Updated Thermal Rating: on line 48-62 : Rate B, Rate C , 0.0, 0.0 -> 2851
% INFO : Updated Thermal Rating: on line 48-62 : Rate B, Rate C , 0.0, 0.0 -> 2851
% INFO : Updated Thermal Rating: on line 64-49 : Rate A, Rate B, Rate C , 5916.89, 0.0, 0.0 -> 1700
% INFO : Updated Thermal Rating: on line 50-57 : Rate B, Rate C , 0.0, 0.0 -> 8713
% INFO : Updated Thermal Rating: on line 50-58 : Rate B, Rate C , 0.0, 0.0 -> 5446
% INFO : Updated Thermal Rating: on transformer 52-51 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2148
% INFO : Updated Thermal Rating: on transformer 53-51 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2148
% INFO : Updated Thermal Rating: on line 54-51 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2410
% INFO : Updated Thermal Rating: on line 54-51 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2392
% INFO : Updated Thermal Rating: on line 52-63 : Rate A, Rate B, Rate C , 1301.27, 0.0, 0.0 -> 402
% INFO : Updated Thermal Rating: on line 53-63 : Rate A, Rate B, Rate C , 1287.54, 0.0, 0.0 -> 402
% INFO : Updated Thermal Rating: on line 57-54 : Rate B, Rate C , 0.0, 0.0 -> 3119
% INFO : Updated Thermal Rating: on line 57-54 : Rate B, Rate C , 0.0, 0.0 -> 3119
% INFO : Updated Thermal Rating: on transformer 56-55 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2313
% INFO : Updated Thermal Rating: on transformer 56-55 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2313
% INFO : Updated Thermal Rating: on line 55-58 : Rate B, Rate C , 0.0, 0.0 -> 2565
% INFO : Updated Thermal Rating: on line 55-58 : Rate B, Rate C , 0.0, 0.0 -> 2565
% INFO : Updated Thermal Rating: on line 62-55 : Rate B, Rate C , 0.0, 0.0 -> 3246
% INFO : Updated Thermal Rating: on line 57-58 : Rate B, Rate C , 0.0, 0.0 -> 2684
% INFO : Updated Thermal Rating: on transformer 60-61 : Rate A , 29700.0 -> 27869
% INFO : Updated Thermal Rating: on line 137-61 : Rate B, Rate C , 0.0, 3070.0 -> 1213
% INFO : Updated Thermal Rating: on line 150-61 : Rate B, Rate C , 0.0, 3070.0 -> 2696
% INFO : Updated Thermal Rating: on line 150-61 : Rate B, Rate C , 0.0, 3070.0 -> 2696
% INFO : Updated Thermal Rating: on transformer 64-63 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 1371
% INFO : Updated Thermal Rating: on line 139-64 : Rate A, Rate B, Rate C , 5690.15, 0.0, 0.0 -> 1267
% INFO : Updated Thermal Rating: on line 139-64 : Rate A, Rate B, Rate C , 5269.14, 0.0, 0.0 -> 1267
% INFO : Updated Thermal Rating: on line 142-64 : Rate B, Rate C , 0.0, 0.0 -> 7808
% INFO : Updated Thermal Rating: on transformer 66-65 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 6410
% INFO : Updated Thermal Rating: on line 78-66 : Rate A, Rate B, Rate C , 5816.69, 0.0, 0.0 -> 434
% INFO : Updated Thermal Rating: on transformer 68-67 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 1072
% INFO : Updated Thermal Rating: on transformer 69-68 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2714
% INFO : Updated Thermal Rating: on transformer 69-68 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 4361
% INFO : Updated Thermal Rating: on transformer 68-70 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 3100
% INFO : Updated Thermal Rating: on line 68-71 : Rate B , 0.0 -> 24439
% INFO : Updated Thermal Rating: on line 68-71 : Rate B , 0.0 -> 27592
% INFO : Updated Thermal Rating: on line 69-72 : Rate B , 0.0 -> 106769
% INFO : Updated Thermal Rating: on line 69-72 : Rate B , 0.0 -> 106769
% INFO : Updated Thermal Rating: on line 69-76 : Rate B , 0.0 -> 7097
% INFO : Updated Thermal Rating: on line 69-76 : Rate B , 0.0 -> 7179
% INFO : Updated Thermal Rating: on transformer 72-71 : Rate A , 29700.0 -> 14502
% INFO : Updated Thermal Rating: on line 75-73 : Rate A, Rate B, Rate C , 5422.51, 0.0, 0.0 -> 2263
% INFO : Updated Thermal Rating: on line 78-74 : Rate A, Rate B, Rate C , 6145.85, 0.0, 0.0 -> 1547
% INFO : Updated Thermal Rating: on line 75-76 : Rate A, Rate B, Rate C , 5430.67, 0.0, 0.0 -> 969
% INFO : Updated Thermal Rating: on line 75-78 : Rate A, Rate B, Rate C , 6088.95, 0.0, 0.0 -> 1417
% INFO : Updated Thermal Rating: on transformer 76-77 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 8547
% INFO : Updated Thermal Rating: on line 78-76 : Rate A, Rate B, Rate C , 5843.31, 0.0, 0.0 -> 1382
% INFO : Updated Thermal Rating: on line 78-76 : Rate A, Rate B, Rate C , 5603.15, 0.0, 0.0 -> 1603
% INFO : Updated Thermal Rating: on line 82-76 : Rate A, Rate B, Rate C , 5781.16, 0.0, 3450.0 -> 2268
% INFO : Updated Thermal Rating: on line 82-76 : Rate A, Rate B, Rate C , 5847.56, 0.0, 3020.0 -> 1330
% INFO : Updated Thermal Rating: on line 82-76 : Rate A, Rate B, Rate C , 5824.55, 0.0, 3020.0 -> 1330
% INFO : Updated Thermal Rating: on line 80-78 : Rate A, Rate B, Rate C , 5513.52, 0.0, 0.0 -> 3908
% INFO : Updated Thermal Rating: on line 80-78 : Rate A, Rate B, Rate C , 6123.04, 0.0, 0.0 -> 3908
% INFO : Updated Thermal Rating: on transformer 80-79 : Rate A , 29700.0 -> 12820
% INFO : Updated Thermal Rating: on line 81-99 : Rate A, Rate B, Rate C , 6028.92, 0.0, 3600.0 -> 598
% INFO : Updated Thermal Rating: on line 81-180 : Rate A, Rate B, Rate C , 5814.96, 0.0, 1732.0 -> 1202
% INFO : Updated Thermal Rating: on line 82-87 : Rate A, Rate B , 6174.48, 0.0 -> 4342
% INFO : Updated Thermal Rating: on line 82-91 : Rate A, Rate B, Rate C , 5860.24, 0.0, 3020.0 -> 2529
% INFO : Updated Thermal Rating: on line 82-95 : Rate A, Rate B, Rate C , 5552.55, 0.0, 3020.0 -> 2529
% INFO : Updated Thermal Rating: on line 83-89 : Rate A, Rate B, Rate C , 5607.22, 0.0, 3600.0 -> 2316
% INFO : Updated Thermal Rating: on line 94-83 : Rate A, Rate B, Rate C , 6085.38, 0.0, 3020.0 -> 2131
% INFO : Updated Thermal Rating: on line 98-83 : Rate A, Rate B, Rate C , 5586.77, 0.0, 3020.0 -> 2266
% INFO : Updated Thermal Rating: on line 83-168 : Rate A, Rate B , 5201.72, 0.0 -> 4452
% INFO : Updated Thermal Rating: on line 83-170 : Rate A, Rate B , 5972.8, 0.0 -> 3710
% INFO : Updated Thermal Rating: on line 83-172 : Rate A, Rate B, Rate C , 5952.46, 0.0, 0.0 -> 3205
% INFO : Updated Thermal Rating: on transformer 84-85 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 4452
% INFO : Updated Thermal Rating: on line 99-84 : Rate A, Rate B, Rate C , 5475.44, 0.0, 1732.0 -> 1202
% INFO : Updated Thermal Rating: on line 156-85 : Rate A, Rate B, Rate C , 2099.67, 0.0, 0.0 -> 475
% INFO : Updated Thermal Rating: on line 88-86 : Rate A, Rate B, Rate C , 5885.88, 0.0, 3450.0 -> 3089
% INFO : Updated Thermal Rating: on line 90-86 : Rate B , 0.0 -> 13449
% INFO : Updated Thermal Rating: on line 180-86 : Rate A, Rate B, Rate C , 5698.58, 0.0, 3600.0 -> 1349
% INFO : Updated Thermal Rating: on line 87-88 : Rate A, Rate B , 5457.14, 0.0 -> 2538
% INFO : Updated Thermal Rating: on line 89-90 : Rate A, Rate B , 5582.86, 0.0 -> 3736
% INFO : Updated Thermal Rating: on line 91-92 : Rate A, Rate B , 5928.69, 0.0 -> 2538
% INFO : Updated Thermal Rating: on line 92-93 : Rate A, Rate B, Rate C , 6112.67, 0.0, 3020.0 -> 2242
% INFO : Updated Thermal Rating: on line 93-94 : Rate A, Rate B , 5217.68, 0.0 -> 2538
% INFO : Updated Thermal Rating: on line 95-96 : Rate A, Rate B , 6113.32, 0.0 -> 2538
% INFO : Updated Thermal Rating: on line 96-97 : Rate A, Rate B, Rate C , 5871.81, 0.0, 3020.0 -> 2242
% INFO : Updated Thermal Rating: on line 97-98 : Rate A, Rate B , 5406.12, 0.0 -> 2538
% INFO : Updated Thermal Rating: on line 101-100 : Rate A, Rate B, Rate C , 635.95, 0.0, 838.0 -> 188
% INFO : Updated Thermal Rating: on line 100-117 : Rate A, Rate B, Rate C , 691.75, 0.0, 838.0 -> 314
% INFO : Updated Thermal Rating: on line 101-105 : Rate A, Rate B, Rate C , 689.32, 0.0, 747.0 -> 343
% INFO : Updated Thermal Rating: on line 101-106 : Rate A, Rate B, Rate C , 590.27, 0.0, 838.0 -> 279
% INFO : Updated Thermal Rating: on line 101-113 : Rate A, Rate B, Rate C , 602.45, 0.0, 752.0 -> 474
% INFO : Updated Thermal Rating: on line 101-113 : Rate A, Rate B, Rate C , 691.04, 0.0, 602.0 -> 484
% INFO : Updated Thermal Rating: on line 101-113 : Rate A, Rate B, Rate C , 607.96, 0.0, 752.0 -> 476
% INFO : Updated Thermal Rating: on line 101-117 : Rate A, Rate B, Rate C , 611.32, 0.0, 747.0 -> 116
% INFO : Updated Thermal Rating: on transformer 102-103 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 3271
% INFO : Updated Thermal Rating: on line 104-102 : Rate A, Rate B, Rate C , 5350.04, 0.0, 0.0 -> 1654
% INFO : Updated Thermal Rating: on line 102-108 : Rate A, Rate B, Rate C , 5557.84, 0.0, 0.0 -> 1535
% INFO : Updated Thermal Rating: on line 102-108 : Rate A, Rate B, Rate C , 5316.34, 0.0, 0.0 -> 1535
% INFO : Updated Thermal Rating: on line 107-104 : Rate A, Rate B, Rate C , 6347.36, 0.0, 2450.0 -> 1614
% INFO : Updated Thermal Rating: on line 134-104 : Rate A, Rate B, Rate C , 5361.7, 0.0, 2450.0 -> 880
% INFO : Updated Thermal Rating: on line 104-135 : Rate A, Rate B, Rate C , 5207.32, 0.0, 2450.0 -> 2002
% INFO : Updated Thermal Rating: on line 105-117 : Rate A, Rate B, Rate C , 603.84, 0.0, 747.0 -> 155
% INFO : Updated Thermal Rating: on line 106-117 : Rate A, Rate B, Rate C , 590.01, 0.0, 838.0 -> 198
% INFO : Updated Thermal Rating: on line 107-108 : Rate A, Rate B , 6319.39, 0.0 -> 2169
% INFO : Updated Thermal Rating: on line 110-107 : Rate A, Rate B , 5982.86, 0.0 -> 2469
% INFO : Updated Thermal Rating: on transformer 109-108 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 1842
% INFO : Updated Thermal Rating: on transformer 109-108 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2694
% INFO : Updated Thermal Rating: on line 133-108 : Rate A, Rate B , 6339.23, 0.0 -> 2408
% INFO : Updated Thermal Rating: on line 135-108 : Rate A, Rate B , 5326.8, 0.0 -> 3212
% INFO : Updated Thermal Rating: on line 108-174 : Rate A, Rate B , 5224.15, 0.0 -> 3428
% INFO : Updated Thermal Rating: on line 108-176 : Rate A, Rate B , 5392.83, 0.0 -> 3395
% INFO : Updated Thermal Rating: on line 108-178 : Rate A, Rate B , 5506.76, 0.0 -> 3428
% INFO : Updated Thermal Rating: on line 111-120 : Rate A, Rate B , 5928.77, 0.0 -> 3205
% INFO : Updated Thermal Rating: on line 173-111 : Rate A, Rate B, Rate C , 5331.76, 0.0, 0.0 -> 3205
% INFO : Updated Thermal Rating: on transformer 112-113 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 1406
% INFO : Updated Thermal Rating: on transformer 113-114 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 1842
% INFO : Updated Thermal Rating: on line 114-124 : Rate A, Rate B , 5241.43, 0.0 -> 3212
% INFO : Updated Thermal Rating: on line 114-126 : Rate A, Rate B , 6324.21, 0.0 -> 3212
% INFO : Updated Thermal Rating: on line 169-114 : Rate A, Rate B , 5470.6, 0.0 -> 4452
% INFO : Updated Thermal Rating: on line 171-114 : Rate A, Rate B , 5324.02, 0.0 -> 4452
% INFO : Updated Thermal Rating: on line 125-115 : Rate A, Rate B , 5944.32, 0.0 -> 4813
% INFO : Updated Thermal Rating: on line 127-115 : Rate A, Rate B , 5470.7, 0.0 -> 4813
% INFO : Updated Thermal Rating: on line 115-128 : Rate A, Rate B , 5954.11, 0.0 -> 2862
% INFO : Updated Thermal Rating: on line 115-130 : Rate A, Rate B , 6092.52, 0.0 -> 4452
% INFO : Updated Thermal Rating: on transformer 116-117 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 1766
% INFO : Updated Thermal Rating: on transformer 117-119 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2564
% INFO : Updated Thermal Rating: on transformer 118-119 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 7154
% INFO : Updated Thermal Rating: on line 123-119 : Rate A, Rate B , 5409.42, 0.0 -> 3205
% INFO : Updated Thermal Rating: on line 129-119 : Rate A, Rate B , 5691.92, 0.0 -> 2862
% INFO : Updated Thermal Rating: on line 131-119 : Rate B , 0.0 -> 8903
% INFO : Updated Thermal Rating: on line 119-132 : Rate A, Rate B, Rate C , 5535.24, 0.0, 0.0 -> 4245
% INFO : Updated Thermal Rating: on line 119-134 : Rate A, Rate B , 5596.34, 0.0 -> 2919
% INFO : Updated Thermal Rating: on line 120-121 : Rate A, Rate B, Rate C , 6068.64, 0.0, 2894.0 -> 1641
% INFO : Updated Thermal Rating: on line 121-122 : Rate A, Rate B , 5243.64, 0.0 -> 3205
% INFO : Updated Thermal Rating: on line 122-123 : Rate A, Rate B, Rate C , 5583.3, 0.0, 2894.0 -> 1512
% INFO : Updated Thermal Rating: on line 124-125 : Rate A, Rate B, Rate C , 6166.31, 0.0, 2396.0 -> 1369
% INFO : Updated Thermal Rating: on line 126-127 : Rate A, Rate B, Rate C , 5926.73, 0.0, 2396.0 -> 1369
% INFO : Updated Thermal Rating: on line 128-129 : Rate A, Rate B, Rate C , 5478.24, 0.0, 2450.0 -> 940
% INFO : Updated Thermal Rating: on line 130-131 : Rate A, Rate B, Rate C , 5799.22, 0.0, 2450.0 -> 1524
% INFO : Updated Thermal Rating: on line 132-133 : Rate A, Rate B, Rate C , 5911.32, 0.0, 2450.0 -> 561
% INFO : Updated Thermal Rating: on line 136-152 : Rate A, Rate B, Rate C , 5633.23, 0.0, 3600.0 -> 3538
% INFO : Updated Thermal Rating: on line 137-143 : Rate B, Rate C , 0.0, 2320.0 -> 1239
% INFO : Updated Thermal Rating: on line 137-150 : Rate A, Rate B, Rate C , 756.6, 0.0, 1160.0 -> 453
% INFO : Updated Thermal Rating: on transformer 138-139 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2120
% INFO : Updated Thermal Rating: on line 139-142 : Rate A, Rate B, Rate C , 5450.33, 0.0, 3600.0 -> 1151
% INFO : Updated Thermal Rating: on line 147-139 : Rate A, Rate B, Rate C , 5406.16, 0.0, 3600.0 -> 2264
% INFO : Updated Thermal Rating: on transformer 140-141 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 8781
% INFO : Updated Thermal Rating: on line 141-143 : Rate B , 0.0 -> 2515
% INFO : Updated Thermal Rating: on line 142-145 : Rate A, Rate B , 6109.9, 0.0 -> 4254
% INFO : Updated Thermal Rating: on line 142-145 : Rate A, Rate B , 5310.26, 0.0 -> 4269
% INFO : Updated Thermal Rating: on line 142-147 : Rate A, Rate B, Rate C , 6003.07, 0.0, 3600.0 -> 1032
% INFO : Updated Thermal Rating: on line 142-151 : Rate A, Rate B, Rate C , 5660.52, 0.0, 3600.0 -> 2502
% INFO : Updated Thermal Rating: on line 142-153 : Rate A, Rate B, Rate C , 6117.81, 0.0, 3600.0 -> 2847
% INFO : Updated Thermal Rating: on line 142-153 : Rate A, Rate B, Rate C , 6194.74, 0.0, 3600.0 -> 2847
% INFO : Updated Thermal Rating: on line 146-143 : Rate A, Rate B, Rate C , 914.18, 0.0, 2320.0 -> 594
% INFO : Updated Thermal Rating: on line 154-143 : Rate B, Rate C , 0.0, 2320.0 -> 809
% INFO : Updated Thermal Rating: on transformer 144-145 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 6211
% INFO : Updated Thermal Rating: on line 145-146 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 6410
% INFO : Updated Thermal Rating: on line 145-151 : Rate B , 0.0 -> 7006
% INFO : Updated Thermal Rating: on transformer 147-148 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 3271
% INFO : Updated Thermal Rating: on transformer 149-150 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 3124
% INFO : Updated Thermal Rating: on line 150-154 : Rate A, Rate B, Rate C , 881.98, 0.0, 2320.0 -> 876
% INFO : Updated Thermal Rating: on line 150-154 : Rate B, Rate C , 0.0, 2320.0 -> 943
% INFO : Updated Thermal Rating: on line 151-152 : Rate A, Rate B, Rate C , 5434.15, 0.0, 3600.0 -> 3443
% INFO : Updated Thermal Rating: on transformer 153-154 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2790
% INFO : Updated Thermal Rating: on transformer 153-154 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2790
% INFO : Updated Thermal Rating: on transformer 153-154 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2790
% INFO : Updated Thermal Rating: on line 175-153 : Rate A, Rate B , 5594.68, 0.0 -> 3428
% INFO : Updated Thermal Rating: on line 177-153 : Rate A, Rate B , 6109.94, 0.0 -> 3428
% INFO : Updated Thermal Rating: on line 179-153 : Rate A, Rate B , 5319.48, 0.0 -> 3816
% INFO : Updated Thermal Rating: on line 156-155 : Rate A, Rate B, Rate C , 2233.95, 0.0, 0.0 -> 963
% INFO : Updated Thermal Rating: on line 155-158 : Rate A, Rate B, Rate C , 2062.33, 0.0, 0.0 -> 531
% INFO : Updated Thermal Rating: on line 155-158 : Rate A, Rate B, Rate C , 2312.29, 0.0, 0.0 -> 595
% INFO : Updated Thermal Rating: on line 155-160 : Rate A, Rate B, Rate C , 2031.49, 0.0, 0.0 -> 1421
% INFO : Updated Thermal Rating: on line 155-160 : Rate A, Rate B, Rate C , 2228.09, 0.0, 0.0 -> 1342
% INFO : Updated Thermal Rating: on line 155-165 : Rate A, Rate B, Rate C , 2165.79, 0.0, 0.0 -> 1859
% INFO : Updated Thermal Rating: on line 155-167 : Rate B, Rate C , 0.0, 0.0 -> 3015
% INFO : Updated Thermal Rating: on line 156-157 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 1771
% INFO : Updated Thermal Rating: on line 156-167 : Rate A, Rate B, Rate C , 2084.63, 0.0, 0.0 -> 1415
% INFO : Updated Thermal Rating: on line 157-161 : Rate A, Rate B, Rate C , 819.24, 0.0, 0.0 -> 331
% INFO : Updated Thermal Rating: on transformer 158-159 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 5523
% INFO : Updated Thermal Rating: on line 158-164 : Rate A, Rate B, Rate C , 2327.06, 0.0, 0.0 -> 363
% INFO : Updated Thermal Rating: on line 158-165 : Rate A, Rate B, Rate C , 2473.46, 0.0, 0.0 -> 815
% INFO : Updated Thermal Rating: on line 158-166 : Rate A, Rate B, Rate C , 2074.22, 0.0, 0.0 -> 854
% INFO : Updated Thermal Rating: on line 158-166 : Rate A, Rate B, Rate C , 2446.22, 0.0, 0.0 -> 858
% INFO : Updated Thermal Rating: on line 160-166 : Rate A, Rate B, Rate C , 2294.7, 0.0, 0.0 -> 937
% INFO : Updated Thermal Rating: on line 160-166 : Rate A, Rate B, Rate C , 2045.85, 0.0, 0.0 -> 915
% INFO : Updated Thermal Rating: on transformer 161-162 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 2272
% INFO : Updated Thermal Rating: on line 164-163 : Rate A, Rate B, Rate C , 29700.0, 9900.0, 9900.0 -> 1644
% INFO : Updated Thermal Rating: on line 168-169 : Rate A, Rate B, Rate C , 5913.36, 0.0, 3020.0 -> 1370
% INFO : Updated Thermal Rating: on line 170-171 : Rate A, Rate B, Rate C , 5806.14, 0.0, 3020.0 -> 1297
% INFO : Updated Thermal Rating: on line 172-173 : Rate A, Rate B, Rate C , 5693.29, 0.0, 0.0 -> 992
% INFO : Updated Thermal Rating: on line 174-175 : Rate A, Rate B, Rate C , 5229.66, 0.0, 3600.0 -> 1204
% INFO : Updated Thermal Rating: on line 176-177 : Rate A, Rate B, Rate C , 5606.35, 0.0, 3600.0 -> 1203
% INFO : Updated Thermal Rating: on line 178-179 : Rate A, Rate B, Rate C , 5705.36, 0.0, 3600.0 -> 1273
% INFO :
% INFO : === Line Capacity Monotonicity Notes ===
% INFO : Updated Thermal Rating: on transformer 31-30 : Rate B, Rate C - 9900.0, 9900.0 -> 21366, 21366
% INFO : Updated Thermal Rating: on line 34-35 : Rate B, Rate C - 9900.0, 9900.0 -> 16025, 16025
% INFO : Updated Thermal Rating: on transformer 60-61 : Rate B, Rate C - 9900.0, 9900.0 -> 27869, 27869
% INFO : Updated Thermal Rating: on line 68-71 : Rate C - 3020.0 -> 24439
% INFO : Updated Thermal Rating: on line 68-71 : Rate C - 3020.0 -> 27592
% INFO : Updated Thermal Rating: on line 69-72 : Rate C - 3450.0 -> 106769
% INFO : Updated Thermal Rating: on line 69-72 : Rate C - 3450.0 -> 106769
% INFO : Updated Thermal Rating: on line 69-76 : Rate C - 2175.0 -> 7097
% INFO : Updated Thermal Rating: on line 69-76 : Rate C - 2175.0 -> 7179
% INFO : Updated Thermal Rating: on transformer 72-71 : Rate B, Rate C - 9900.0, 9900.0 -> 14502, 14502
% INFO : Updated Thermal Rating: on transformer 80-79 : Rate B, Rate C - 9900.0, 9900.0 -> 12820, 12820
% INFO : Updated Thermal Rating: on line 82-87 : Rate C - 3450.0 -> 4342
% INFO : Updated Thermal Rating: on line 83-168 : Rate C - 1800.0 -> 4452
% INFO : Updated Thermal Rating: on line 83-170 : Rate C - 1800.0 -> 3710
% INFO : Updated Thermal Rating: on line 90-86 : Rate C - 3600.0 -> 13449
% INFO : Updated Thermal Rating: on line 87-88 : Rate C - 2000.0 -> 2538
% INFO : Updated Thermal Rating: on line 89-90 : Rate C - 2000.0 -> 3736
% INFO : Updated Thermal Rating: on line 91-92 : Rate C - 2400.0 -> 2538
% INFO : Updated Thermal Rating: on line 93-94 : Rate C - 2400.0 -> 2538
% INFO : Updated Thermal Rating: on line 95-96 : Rate C - 2000.0 -> 2538
% INFO : Updated Thermal Rating: on line 97-98 : Rate C - 2000.0 -> 2538
% INFO : Updated Thermal Rating: on line 107-108 : Rate C - 1560.0 -> 2169
% INFO : Updated Thermal Rating: on line 110-107 : Rate C - 2450.0 -> 2469
% INFO : Updated Thermal Rating: on line 133-108 : Rate C - 1800.0 -> 2408
% INFO : Updated Thermal Rating: on line 135-108 : Rate C - 2450.0 -> 3212
% INFO : Updated Thermal Rating: on line 108-174 : Rate C - 2134.0 -> 3428
% INFO : Updated Thermal Rating: on line 108-176 : Rate C - 2134.0 -> 3395
% INFO : Updated Thermal Rating: on line 108-178 : Rate C - 2134.0 -> 3428
% INFO : Updated Thermal Rating: on line 111-120 : Rate C - 2667.0 -> 3205
% INFO : Updated Thermal Rating: on line 114-124 : Rate C - 1800.0 -> 3212
% INFO : Updated Thermal Rating: on line 114-126 : Rate C - 1800.0 -> 3212
% INFO : Updated Thermal Rating: on line 169-114 : Rate C - 1800.0 -> 4452
% INFO : Updated Thermal Rating: on line 171-114 : Rate C - 1800.0 -> 4452
% INFO : Updated Thermal Rating: on line 125-115 : Rate C - 1800.0 -> 4813
% INFO : Updated Thermal Rating: on line 127-115 : Rate C - 1800.0 -> 4813
% INFO : Updated Thermal Rating: on line 115-128 : Rate C - 2667.0 -> 2862
% INFO : Updated Thermal Rating: on line 115-130 : Rate C - 2667.0 -> 4452
% INFO : Updated Thermal Rating: on line 123-119 : Rate C - 2667.0 -> 3205
% INFO : Updated Thermal Rating: on line 129-119 : Rate C - 2667.0 -> 2862
% INFO : Updated Thermal Rating: on line 131-119 : Rate C - 2667.0 -> 8903
% INFO : Updated Thermal Rating: on line 119-134 : Rate C - 2450.0 -> 2919
% INFO : Updated Thermal Rating: on line 121-122 : Rate C - 2667.0 -> 3205
% INFO : Updated Thermal Rating: on line 141-143 : Rate C - 2320.0 -> 2515
% INFO : Updated Thermal Rating: on line 142-145 : Rate C - 3600.0 -> 4254
% INFO : Updated Thermal Rating: on line 142-145 : Rate C - 3600.0 -> 4269
% INFO : Updated Thermal Rating: on line 145-151 : Rate C - 3600.0 -> 7006
% INFO : Updated Thermal Rating: on line 175-153 : Rate C - 2134.0 -> 3428
% INFO : Updated Thermal Rating: on line 177-153 : Rate C - 2134.0 -> 3428
% INFO : Updated Thermal Rating: on line 179-153 : Rate C - 2100.0 -> 3816
% INFO :
% INFO : === Voltage Setpoint Replacement Notes ===
% INFO : Bus 2 : V=0.979469, theta=-26.17638 -> V=1.003, theta=0.0
% INFO : Bus 3 : V=0.977437, theta=-16.96214 -> V=1.003, theta=0.0
% INFO : Bus 4 : V=1.04, theta=-19.66077 -> V=1.003, theta=0.0
% INFO : Bus 5 : V=0.975175, theta=16.27362 -> V=1.003, theta=0.0
% INFO : Bus 6 : V=0.95, theta=23.55166 -> V=1.003, theta=0.0
% INFO : Bus 7 : V=1.068141, theta=-7.90565 -> V=1.003, theta=0.0
% INFO : Bus 8 : V=1.009142, theta=-4.68921 -> V=1.003, theta=0.0
% INFO : Bus 9 : V=1.0, theta=2.22822 -> V=1.003, theta=0.0
% INFO : Bus 10 : V=1.007263, theta=-5.23261 -> V=1.003, theta=0.0
% INFO : Bus 11 : V=1.0, theta=33.72795 -> V=1.003, theta=0.0
% INFO : Bus 12 : V=1.07205, theta=-23.93682 -> V=1.003, theta=0.0
% INFO : Bus 13 : V=1.0, theta=-17.81291 -> V=1.003, theta=0.0
% INFO : Bus 14 : V=1.067346, theta=-24.85653 -> V=1.003, theta=0.0
% INFO : Bus 15 : V=0.96, theta=-21.71558 -> V=1.003, theta=0.0
% INFO : Bus 16 : V=1.048555, theta=-29.64234 -> V=1.003, theta=0.0
% INFO : Bus 17 : V=1.035591, theta=-3.87624 -> V=1.003, theta=0.0
% INFO : Bus 18 : V=1.0, theta=-0.88892 -> V=1.003, theta=0.0
% INFO : Bus 19 : V=1.055927, theta=-29.59275 -> V=1.003, theta=0.0
% INFO : Bus 20 : V=1.070245, theta=-22.85174 -> V=1.003, theta=0.0
% INFO : Bus 21 : V=1.060421, theta=-25.9539 -> V=1.003, theta=0.0
% INFO : Bus 22 : V=1.046925, theta=-22.12253 -> V=1.003, theta=0.0
% INFO : Bus 23 : V=1.025636, theta=-31.46032 -> V=1.003, theta=0.0
% INFO : Bus 24 : V=1.055713, theta=-23.39237 -> V=1.003, theta=0.0
% INFO : Bus 25 : V=1.041159, theta=-31.08491 -> V=1.003, theta=0.0
% INFO : Bus 26 : V=1.051311, theta=-15.55171 -> V=1.003, theta=0.0
% INFO : Bus 27 : V=1.046716, theta=-42.3983 -> V=1.003, theta=0.0
% INFO : Bus 28 : V=1.065843, theta=-5.78109 -> V=1.003, theta=0.0
% INFO : Bus 29 : V=1.069329, theta=-27.98388 -> V=1.003, theta=0.0
% INFO : Bus 30 : V=1.0, theta=24.73574 -> V=1.003, theta=0.0
% INFO : Bus 31 : V=1.036338, theta=20.9452 -> V=1.003, theta=0.0
% INFO : Bus 32 : V=1.078611, theta=49.23409 -> V=1.003, theta=0.0
% INFO : Bus 33 : V=0.978546, theta=53.8229 -> V=1.003, theta=0.0
% INFO : Bus 34 : V=1.001134, theta=62.87167 -> V=1.003, theta=0.0
% INFO : Bus 35 : V=1.02, theta=67.79278 -> V=1.003, theta=0.0
% INFO : Bus 36 : V=1.009, theta=2.46042 -> V=1.003, theta=0.0
% INFO : Bus 37 : V=1.060315, theta=-42.15701 -> V=1.003, theta=0.0
% INFO : Bus 38 : V=1.080898, theta=-46.22724 -> V=1.003, theta=0.0
% INFO : Bus 39 : V=1.03195, theta=-47.29174 -> V=1.003, theta=0.0
% INFO : Bus 40 : V=1.02, theta=-45.98192 -> V=1.003, theta=0.0
% INFO : Bus 41 : V=1.023374, theta=-50.924 -> V=1.003, theta=0.0
% INFO : Bus 42 : V=1.031289, theta=-50.65362 -> V=1.003, theta=0.0
% INFO : Bus 43 : V=1.0, theta=-47.35042 -> V=1.003, theta=0.0
% INFO : Bus 44 : V=1.052572, theta=-4.3677 -> V=1.003, theta=0.0
% INFO : Bus 45 : V=1.05, theta=0.2795 -> V=1.003, theta=0.0
% INFO : Bus 46 : V=1.034754, theta=-47.63059 -> V=1.003, theta=0.0
% INFO : Bus 47 : V=1.02, theta=-47.26987 -> V=1.003, theta=0.0
% INFO : Bus 48 : V=1.034024, theta=-47.84034 -> V=1.003, theta=0.0
% INFO : Bus 49 : V=1.072123, theta=-45.48275 -> V=1.003, theta=0.0
% INFO : Bus 50 : V=1.023616, theta=-51.84548 -> V=1.003, theta=0.0
% INFO : Bus 51 : V=1.032558, theta=-51.90198 -> V=1.003, theta=0.0
% INFO : Bus 52 : V=1.036634, theta=-50.71837 -> V=1.003, theta=0.0
% INFO : Bus 53 : V=1.036634, theta=-50.71837 -> V=1.003, theta=0.0
% INFO : Bus 54 : V=1.027275, theta=-52.11021 -> V=1.003, theta=0.0
% INFO : Bus 55 : V=1.025161, theta=-50.05839 -> V=1.003, theta=0.0
% INFO : Bus 56 : V=1.043038, theta=-47.66488 -> V=1.003, theta=0.0
% INFO : Bus 57 : V=1.024841, theta=-51.88057 -> V=1.003, theta=0.0
% INFO : Bus 58 : V=1.023942, theta=-51.17567 -> V=1.003, theta=0.0
% INFO : Bus 59 : V=1.031118, theta=-48.915 -> V=1.003, theta=0.0
% INFO : Bus 60 : V=1.038315, theta=-47.15046 -> V=1.003, theta=0.0
% INFO : Bus 61 : V=1.02073, theta=-48.25687 -> V=1.003, theta=0.0
% INFO : Bus 62 : V=1.029297, theta=-49.03204 -> V=1.003, theta=0.0
% INFO : Bus 63 : V=1.052086, theta=-44.49414 -> V=1.003, theta=0.0
% INFO : Bus 64 : V=1.058655, theta=-42.47671 -> V=1.003, theta=0.0
% INFO : Bus 65 : V=1.0, theta=56.59295 -> V=1.003, theta=0.0
% INFO : Bus 66 : V=1.049279, theta=48.20056 -> V=1.003, theta=0.0
% INFO : Bus 67 : V=1.068629, theta=-16.93306 -> V=1.003, theta=0.0
% INFO : Bus 68 : V=1.065911, theta=-14.57037 -> V=1.003, theta=0.0
% INFO : Bus 69 : V=1.089189, theta=-13.31025 -> V=1.003, theta=0.0
% INFO : Bus 70 : V=1.055, theta=-7.94051 -> V=1.003, theta=0.0
% INFO : Bus 71 : V=1.061583, theta=-15.07653 -> V=1.003, theta=0.0
% INFO : Bus 72 : V=1.089639, theta=-13.41834 -> V=1.003, theta=0.0
% INFO : Bus 73 : V=1.078387, theta=-1.36049 -> V=1.003, theta=0.0
% INFO : Bus 74 : V=1.069996, theta=0.16326 -> V=1.003, theta=0.0
% INFO : Bus 75 : V=1.037046, theta=-12.15954 -> V=1.003, theta=0.0
% INFO : Bus 76 : V=1.08283, theta=-11.12352 -> V=1.003, theta=0.0
% INFO : Bus 77 : V=1.0, theta=0.0 -> V=1.003, theta=0.0
% INFO : Bus 78 : V=1.04946, theta=0.22449 -> V=1.003, theta=0.0
% INFO : Bus 79 : V=1.0, theta=26.58547 -> V=1.003, theta=0.0
% INFO : Bus 80 : V=1.049927, theta=12.10689 -> V=1.003, theta=0.0
% INFO : Bus 81 : V=1.052949, theta=-19.55213 -> V=1.003, theta=0.0
% INFO : Bus 82 : V=1.067396, theta=-17.14843 -> V=1.003, theta=0.0
% INFO : Bus 83 : V=1.054325, theta=-23.34646 -> V=1.003, theta=0.0
% INFO : Bus 84 : V=1.061944, theta=-5.1991 -> V=1.003, theta=0.0
% INFO : Bus 85 : V=0.998447, theta=-1.57178 -> V=1.003, theta=0.0
% INFO : Bus 86 : V=1.058179, theta=-18.23562 -> V=1.003, theta=0.0
% INFO : Bus 87 : V=1.065325, theta=-18.74829 -> V=1.003, theta=0.0