forked from power-grid-lib/pglib-opf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pglib_opf_case162_ieee_dtc.m
1225 lines (1220 loc) · 102 KB
/
pglib_opf_case162_ieee_dtc.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 - v18.08 %%%%%
%%%% (https://github.com/power-grid-lib/pglib-opf) %%%%%
%%%% Benchmark Group - Typical Operations %%%%%
%%%% 08 - August - 2018 %%%%%
%%%% %%%%%
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% Power flow data for IEEE 17-Generator Dynamic Test Case.
% This data was converted from IEEE Common Data Format
% (dd17cdf.txt) on 11-Jul-2014 by cdf2matp, rev. 2327
% See end of file for warnings generated during conversion.
%
% Converted from IEEE CDF file from:
% http://www.ee.washington.edu/research/pstca/
%
% Copyright (c) 1999 by Richard D. Christie, University of Washington
% Electrical Engineering Licensed under the Creative Commons Attribution 4.0
% International license, http://creativecommons.org/licenses/by/4.0/
%
% CDF Header:
% 01/02/90 IEEE WORKING GROUP 100.0 1990 S 17-GEN CASE
%
function mpc = pglib_opf_case162_ieee_dtc
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 = [
1 1 0.0 0.0 0.0 -100.0 1 1.00000 0.00000 345.0 9 1.06000 0.94000;
2 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 9 1.06000 0.94000;
3 1 370.0 96.9 0.0 0.0 1 1.00000 0.00000 161.0 12 1.06000 0.94000;
4 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 3 1.06000 0.94000;
5 1 0.0 0.0 0.0 -50.0 1 1.00000 0.00000 345.0 8 1.06000 0.94000;
6 2 0.0 0.0 0.0 0.0 1 1.00000 0.00000 22.0 9 1.06000 0.94000;
7 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 9 1.06000 0.94000;
8 1 398.0 0.0 0.0 0.0 1 1.00000 0.00000 115.0 12 1.06000 0.94000;
9 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 8 1.06000 0.94000;
10 1 226.0 0.0 0.0 0.0 1 1.00000 0.00000 230.0 12 1.06000 0.94000;
11 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 230.0 10 1.06000 0.94000;
12 1 193.0 0.0 0.0 0.0 1 1.00000 0.00000 115.0 12 1.06000 0.94000;
13 1 204.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 12 1.06000 0.94000;
14 1 381.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 12 1.06000 0.94000;
15 1 -80.0 0.0 0.0 0.0 1 1.00000 0.00000 230.0 12 1.06000 0.94000;
16 1 -54.2 0.0 0.0 0.0 1 1.00000 0.00000 161.0 12 1.06000 0.94000;
17 1 -116.5 0.0 0.0 0.0 1 1.00000 0.00000 161.0 12 1.06000 0.94000;
18 1 34.4 11.67 0.0 0.0 1 1.00000 0.00000 161.0 6 1.06000 0.94000;
19 1 64.4 0.0 0.0 0.0 1 1.00000 0.00000 161.0 12 1.06000 0.94000;
20 1 37.9 12.5 0.0 0.0 1 1.00000 0.00000 69.0 10 1.06000 0.94000;
21 1 -69.8 0.0 0.0 0.0 1 1.00000 0.00000 161.0 12 1.06000 0.94000;
22 1 17.39 5.27 0.0 0.0 1 1.00000 0.00000 161.0 6 1.06000 0.94000;
23 1 63.5 0.0 0.0 0.0 1 1.00000 0.00000 161.0 12 1.06000 0.94000;
24 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 6 1.06000 0.94000;
25 1 0.0 0.0 0.0 -50.0 1 1.00000 0.00000 345.0 6 1.06000 0.94000;
26 1 0.0 0.0 0.0 -50.0 1 1.00000 0.00000 345.0 1 1.06000 0.94000;
27 1 324.0 57.9 0.0 0.0 1 1.00000 0.00000 345.0 12 1.06000 0.94000;
28 1 38.47 13.17 0.0 0.0 1 1.00000 0.00000 161.0 6 1.06000 0.94000;
29 1 28.31 9.03 0.0 0.0 1 1.00000 0.00000 161.0 6 1.06000 0.94000;
30 1 101.2 32.52 0.0 15.0 1 1.00000 0.00000 161.0 6 1.06000 0.94000;
31 1 72.5 0.0 0.0 0.0 1 1.00000 0.00000 161.0 12 1.06000 0.94000;
32 1 52.7 15.06 0.0 20.0 1 1.00000 0.00000 161.0 6 1.06000 0.94000;
33 1 45.17 15.06 0.0 20.0 1 1.00000 0.00000 161.0 6 1.06000 0.94000;
34 1 14.18 5.25 0.0 3.2 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
35 1 54.48 14.63 0.0 5.0 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
36 1 31.96 8.68 0.0 3.0 1 1.00000 0.00000 161.0 2 1.06000 0.94000;
37 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 11 1.06000 0.94000;
38 1 14.76 4.08 0.0 1.5 1 1.00000 0.00000 161.0 2 1.06000 0.94000;
39 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 6 1.06000 0.94000;
40 1 52.88 17.6 0.0 0.0 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
41 1 39.2 12.8 0.0 0.0 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
42 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 2 1.06000 0.94000;
43 1 41.5 0.0 0.0 0.0 1 1.00000 0.00000 161.0 12 1.06000 0.94000;
44 1 16.32 3.71 0.0 0.0 1 1.00000 0.00000 161.0 2 1.06000 0.94000;
45 1 20.02 5.41 0.0 1.9 1 1.00000 0.00000 161.0 2 1.06000 0.94000;
46 1 65.31 22.3 0.0 26.2 1 1.00000 0.00000 161.0 10 1.06000 0.94000;
47 1 4.82 1.56 0.0 0.0 1 1.00000 0.00000 161.0 2 1.06000 0.94000;
48 1 33.76 22.86 0.0 0.0 1 1.00000 0.00000 161.0 10 1.06000 0.94000;
49 1 6.82 1.78 0.0 0.0 1 1.00000 0.00000 161.0 2 1.06000 0.94000;
50 1 99.7 0.0 0.0 0.0 1 1.00000 0.00000 161.0 12 1.06000 0.94000;
51 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 3 1.06000 0.94000;
52 1 218.2 42.8 0.0 0.0 1 1.00000 0.00000 161.0 3 1.06000 0.94000;
53 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 10 1.06000 0.94000;
54 1 70.34 29.57 0.0 0.0 1 1.00000 0.00000 161.0 10 1.06000 0.94000;
55 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
56 1 25.29 7.26 0.0 3.2 1 1.00000 0.00000 161.0 7 1.06000 0.94000;
57 1 48.48 15.61 0.0 0.0 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
58 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 230.0 10 1.06000 0.94000;
59 1 84.43 27.05 0.0 0.0 1 1.00000 0.00000 230.0 10 1.06000 0.94000;
60 1 244.0 0.0 0.0 0.0 1 1.00000 0.00000 115.0 12 1.06000 0.94000;
61 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 230.0 10 1.06000 0.94000;
62 1 -865.6 0.0 0.0 0.0 1 1.00000 0.00000 230.0 12 1.06000 0.94000;
63 1 59.1 0.0 0.0 0.0 1 1.00000 0.00000 230.0 12 1.06000 0.94000;
64 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 10 1.06000 0.94000;
65 1 -26.3 0.0 0.0 0.0 1 1.00000 0.00000 345.0 12 1.06000 0.94000;
66 1 0.0 0.0 0.0 -50.0 1 1.00000 0.00000 345.0 10 1.06000 0.94000;
67 1 22.54 7.03 0.0 6.0 1 1.00000 0.00000 161.0 7 1.06000 0.94000;
68 1 40.42 12.68 0.0 12.0 1 1.00000 0.00000 161.0 7 1.06000 0.94000;
69 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
70 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
71 1 29.87 11.93 0.0 12.0 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
72 1 427.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 12 1.06000 0.94000;
73 2 0.0 0.0 0.0 0.0 1 1.00000 0.00000 20.0 1 1.06000 0.94000;
74 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 5 1.06000 0.94000;
75 1 0.0 0.0 0.0 -50.0 1 1.00000 0.00000 345.0 8 1.06000 0.94000;
76 2 0.0 0.0 0.0 0.0 1 1.00000 0.00000 24.0 1 1.06000 0.94000;
77 1 26.41 8.78 0.0 4.7 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
78 1 79.12 0.0 0.0 0.0 1 1.00000 0.00000 161.0 5 1.06000 0.94000;
79 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 5 1.06000 0.94000;
80 1 15.76 5.25 0.0 2.8 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
81 1 50.88 16.8 0.0 22.1 1 1.00000 0.00000 69.0 1 1.06000 0.94000;
82 1 62.28 20.26 0.0 10.4 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
83 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
84 1 37.9 9.49 0.0 2.6 1 1.00000 0.00000 161.0 2 1.06000 0.94000;
85 1 40.52 11.26 0.0 12.0 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
86 1 50.73 13.35 0.0 12.0 1 1.00000 0.00000 161.0 2 1.06000 0.94000;
87 1 16.91 4.23 0.0 0.0 1 1.00000 0.00000 115.0 2 1.06000 0.94000;
88 1 60.6 4.44 0.0 0.0 1 1.00000 0.00000 69.0 4 1.06000 0.94000;
89 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 115.0 2 1.06000 0.94000;
90 1 50.21 16.76 0.0 10.0 1 1.00000 0.00000 115.0 2 1.06000 0.94000;
91 1 51.24 12.83 0.0 0.0 1 1.00000 0.00000 161.0 2 1.06000 0.94000;
92 1 36.12 9.05 0.0 0.0 1 1.00000 0.00000 161.0 2 1.06000 0.94000;
93 1 103.8 34.56 0.0 0.0 1 1.00000 0.00000 161.0 2 1.06000 0.94000;
94 1 164.0 6.49 0.0 0.0 1 1.00000 0.00000 161.0 5 1.06000 0.94000;
95 1 117.2 39.01 0.0 0.0 1 1.00000 0.00000 115.0 2 1.06000 0.94000;
96 1 119.2 0.0 0.0 0.0 1 1.00000 0.00000 115.0 2 1.06000 0.94000;
97 1 22.84 5.71 0.0 0.0 1 1.00000 0.00000 115.0 2 1.06000 0.94000;
98 1 151.1 50.35 0.0 0.0 1 1.00000 0.00000 115.0 2 1.06000 0.94000;
99 2 0.0 0.0 0.0 0.0 1 1.00000 0.00000 18.0 2 1.06000 0.94000;
100 1 23.21 6.9 0.0 3.0 1 1.00000 0.00000 115.0 2 1.06000 0.94000;
101 2 0.0 0.0 0.0 0.0 1 1.00000 0.00000 14.0 2 1.06000 0.94000;
102 1 16.54 4.08 0.0 0.0 1 1.00000 0.00000 161.0 2 1.06000 0.94000;
103 1 322.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 12 1.06000 0.94000;
104 1 31.52 10.46 0.0 5.6 1 1.00000 0.00000 115.0 2 1.06000 0.94000;
105 1 24.84 6.23 0.0 1.7 1 1.00000 0.00000 115.0 2 1.06000 0.94000;
106 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 4 1.06000 0.94000;
107 1 35.41 5.41 0.0 0.0 1 1.00000 0.00000 161.0 4 1.06000 0.94000;
108 3 0.0 0.0 0.0 0.0 1 1.00000 0.00000 22.0 2 1.06000 0.94000;
109 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 5 1.06000 0.94000;
110 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 3 1.06000 0.94000;
111 1 65.41 16.72 0.0 0.0 1 1.00000 0.00000 161.0 3 1.06000 0.94000;
112 1 0.0 0.0 0.0 -50.0 1 1.00000 0.00000 345.0 3 1.06000 0.94000;
113 1 32.7 0.0 0.0 0.0 1 1.00000 0.00000 161.0 12 1.06000 0.94000;
114 2 0.0 0.0 0.0 0.0 1 1.00000 0.00000 14.0 3 1.06000 0.94000;
115 1 17.32 3.34 0.0 0.0 1 1.00000 0.00000 161.0 3 1.06000 0.94000;
116 1 56.08 11.2 0.0 0.0 1 1.00000 0.00000 161.0 3 1.06000 0.94000;
117 1 101.9 20.06 0.0 0.0 1 1.00000 0.00000 161.0 3 1.06000 0.94000;
118 2 0.0 0.0 0.0 0.0 1 1.00000 0.00000 14.0 3 1.06000 0.94000;
119 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 3 1.06000 0.94000;
120 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 8 1.06000 0.94000;
121 2 0.0 0.0 0.0 0.0 1 1.00000 0.00000 24.0 3 1.06000 0.94000;
122 1 47.28 9.36 0.0 0.0 1 1.00000 0.00000 161.0 3 1.06000 0.94000;
123 1 165.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 12 1.06000 0.94000;
124 1 -571.0 90.9 0.0 0.0 1 1.00000 0.00000 345.0 12 1.06000 0.94000;
125 2 2000.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 12 1.06000 0.94000;
126 1 -467.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 12 1.06000 0.94000;
127 1 -52.6 0.0 0.0 0.0 1 1.00000 0.00000 345.0 12 1.06000 0.94000;
128 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 8 1.06000 0.94000;
129 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 345.0 8 1.06000 0.94000;
130 2 0.0 0.0 0.0 0.0 1 1.00000 0.00000 22.0 8 1.06000 0.94000;
131 2 0.0 0.0 0.0 0.0 1 1.00000 0.00000 18.0 8 1.06000 0.94000;
132 1 159.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 12 1.06000 0.94000;
133 1 30.1 6.02 0.0 0.0 1 1.00000 0.00000 69.0 3 1.06000 0.94000;
134 1 17.46 3.34 0.0 0.0 1 1.00000 0.00000 161.0 3 1.06000 0.94000;
135 1 20.06 4.01 0.0 0.0 1 1.00000 0.00000 69.0 3 1.06000 0.94000;
136 1 20.06 4.01 0.0 0.0 1 1.00000 0.00000 69.0 3 1.06000 0.94000;
137 1 20.06 4.01 0.0 0.0 1 1.00000 0.00000 69.0 3 1.06000 0.94000;
138 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 69.0 3 1.06000 0.94000;
139 1 10.1 2.01 0.0 0.0 1 1.00000 0.00000 69.0 3 1.06000 0.94000;
140 1 13.58 2.68 0.0 0.0 1 1.00000 0.00000 69.0 3 1.06000 0.94000;
141 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 3 1.06000 0.94000;
142 1 27.09 5.35 0.0 0.0 1 1.00000 0.00000 69.0 3 1.06000 0.94000;
143 1 21.07 4.01 0.0 0.0 1 1.00000 0.00000 69.0 3 1.06000 0.94000;
144 1 12.37 2.01 0.0 0.0 1 1.00000 0.00000 69.0 3 1.06000 0.94000;
145 1 10.83 2.21 0.0 0.0 1 1.00000 0.00000 69.0 3 1.06000 0.94000;
146 1 21.33 4.01 0.0 0.0 1 1.00000 0.00000 69.0 3 1.06000 0.94000;
147 1 216.4 42.8 0.0 0.0 1 1.00000 0.00000 161.0 3 1.06000 0.94000;
148 1 120.0 24.0 0.0 0.0 1 1.00000 0.00000 69.0 3 1.06000 0.94000;
149 1 0.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
150 1 4.8 1.6 0.0 0.0 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
151 1 24.0 8.0 0.0 0.0 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
152 1 6.0 0.0 0.0 0.0 1 1.00000 0.00000 161.0 12 1.06000 0.94000;
153 1 4.0 1.6 0.0 0.0 1 1.00000 0.00000 69.0 1 1.06000 0.94000;
154 1 28.0 9.6 0.0 6.0 1 1.00000 0.00000 69.0 1 1.06000 0.94000;
155 1 12.0 4.0 0.0 0.0 1 1.00000 0.00000 69.0 1 1.06000 0.94000;
156 1 8.0 2.4 0.0 0.0 1 1.00000 0.00000 69.0 1 1.06000 0.94000;
157 1 32.0 10.4 0.0 0.0 1 1.00000 0.00000 69.0 1 1.06000 0.94000;
158 1 16.0 5.6 0.0 3.0 1 1.00000 0.00000 69.0 1 1.06000 0.94000;
159 1 8.0 2.4 0.0 0.0 1 1.00000 0.00000 69.0 1 1.06000 0.94000;
160 1 14.4 4.8 0.0 3.0 1 1.00000 0.00000 69.0 1 1.06000 0.94000;
161 1 32.0 10.4 0.0 0.0 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
162 1 20.0 6.4 0.0 0.0 1 1.00000 0.00000 161.0 1 1.06000 0.94000;
];
%% 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 = [
6 573.5 100.0 400.0 -200.0 1.0 100.0 1 1147 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0; % COW
73 225.5 77.0 226.0 -72.0 1.0 100.0 1 451 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0; % NG
76 563.5 197.0 564.0 -170.0 1.0 100.0 1 1127 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0; % COW
99 183.0 7.5 75.6 -60.6 1.0 100.0 1 366 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0; % COW
101 55.0 7.1 38.6 -24.4 1.0 100.0 1 110 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0; % NG
108 559.5 0.0 560.0 -560.0 1.0 100.0 1 1119 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0; % NUC
114 154.0 4.0 33.0 -25.0 1.0 100.0 1 308 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0; % COW
118 227.5 28.0 100.0 -44.0 1.0 100.0 1 455 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0; % NG
121 350.0 65.0 250.0 -120.0 1.0 100.0 1 700 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0; % NG
125 1263.0 82.0 1263.0 -1099.0 1.02 100.0 1 2526 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0; % NUC
130 796.5 72.0 288.0 -144.0 1.03 100.0 1 1593 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0; % COW
131 565.0 27.5 320.0 -265.0 1.018 100.0 1 1130 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0; % COW
];
%% generator cost data
% 2 startup shutdown n c(n-1) ... c0
mpc.gencost = [
2 0.0 0.0 3 0.000000 24.374988 0.000000; % COW
2 0.0 0.0 3 0.000000 42.653546 0.000000; % NG
2 0.0 0.0 3 0.000000 20.207179 0.000000; % COW
2 0.0 0.0 3 0.000000 20.806951 0.000000; % COW
2 0.0 0.0 3 0.000000 49.758941 0.000000; % NG
2 0.0 0.0 3 0.000000 6.657268 0.000000; % NUC
2 0.0 0.0 3 0.000000 23.819822 0.000000; % COW
2 0.0 0.0 3 0.000000 42.071883 0.000000; % NG
2 0.0 0.0 3 0.000000 33.832029 0.000000; % NG
2 0.0 0.0 3 0.000000 7.706001 0.000000; % NUC
2 0.0 0.0 3 0.000000 16.676084 0.000000; % COW
2 0.0 0.0 3 0.000000 13.076122 0.000000; % COW
];
%% branch data
% fbus tbus r x b rateA rateB rateC ratio angle status angmin angmax
mpc.branch = [
1 2 0.0035 0.0321 0.5438 613 613 613 0.0 0.0 1 -30.0 30.0;
1 3 0.0034 0.0326 0.7224 895 895 895 1.0 0.0 1 -30.0 30.0;
1 4 0.0064 0.0621 0.987 470 470 470 0.0 0.0 1 -30.0 30.0;
1 5 0.0011 0.0119 0.2012 663 663 663 0.0 0.0 1 -30.0 30.0;
1 6 0.0 0.0133 0.0 900.0 2206 2206 1.0519 0.0 1 -30.0 30.0;
2 7 0.0014 0.0125 0.2122 605 605 605 0.0 0.0 1 -30.0 30.0;
2 13 0.0046 0.0417 0.7058 610 610 610 0.0 0.0 1 -30.0 30.0;
3 14 0.2361 1.0122 0.0 29 29 29 0.0 0.0 1 -30.0 30.0;
3 50 0.0389 0.1699 0.0 169 169 169 0.0 0.0 1 -30.0 30.0;
3 103 0.1074 1.8023 0.0 17 17 17 0.0 0.0 1 -30.0 30.0;
3 123 0.2883 1.6719 0.0 18 18 18 0.0 0.0 1 -30.0 30.0;
3 124 0.014 0.6483 0.0 46 46 46 1.0 0.0 1 -30.0 30.0;
3 125 0.0084 0.1139 0.0 257 257 257 1.0 0.0 1 -30.0 30.0;
4 112 0.0059 0.0568 0.925 514 514 514 0.0 0.0 1 -30.0 30.0;
4 115 0.0 0.0185 0.0 500.0 1586 1586 1.0 0.0 1 -30.0 30.0;
4 119 0.0014 0.0119 0.205 591 591 591 0.0 0.0 1 -30.0 30.0;
5 120 0.0022 0.0224 0.3792 644 644 644 0.0 0.0 1 -30.0 30.0;
5 129 0.0022 0.0268 0.4612 702 702 702 0.0 0.0 1 -30.0 30.0;
5 131 0.0 0.0127 0.0 710.0 2310 2310 1.0249 0.0 1 -30.0 30.0;
7 8 0.0004 0.0189 0.0 672.0 1552 1552 0.9751 0.0 1 -30.0 30.0;
7 9 0.0017 0.0169 0.2872 637 637 637 0.0 0.0 1 -30.0 30.0;
8 10 0.4591 1.0703 0.0 26 26 26 1.0 0.0 1 -30.0 30.0;
8 12 0.0106 0.0574 0.0 159 159 159 0.0 0.0 1 -30.0 30.0;
8 13 0.1274 0.4784 0.0 60 60 60 1.0 0.0 1 -30.0 30.0;
8 14 0.0473 0.3956 0.0 74 74 74 1.0 0.0 1 -30.0 30.0;
8 15 0.5035 1.7433 0.0 17 17 17 1.0 0.0 1 -30.0 30.0;
8 132 0.0252 0.288 0.0 102 102 102 1.0 0.0 1 -30.0 30.0;
9 75 0.0013 0.015 0.2682 684 684 684 0.0 0.0 1 -30.0 30.0;
10 11 0.0051 0.037 0.0716 366 366 366 0.0 0.0 1 -30.0 30.0;
10 13 0.1299 0.622 0.0 47 47 47 1.0 0.0 1 -30.0 30.0;
10 15 0.1275 0.7033 0.0 42 42 42 0.0 0.0 1 -30.0 30.0;
10 60 0.2525 1.2242 0.0 24 24 24 1.0 0.0 1 -30.0 30.0;
11 15 0.0285 0.1793 0.3484 162 162 162 0.0 0.0 1 -30.0 30.0;
11 46 0.0142 0.1225 0.1876 238 238 238 1.0 0.0 1 -30.0 30.0;
11 58 0.017 0.107 0.2074 271 271 271 0.0 0.0 1 -30.0 30.0;
11 59 0.0071 0.0471 0.0852 350 350 350 0.0 0.0 1 -30.0 30.0;
12 2 0.0008 0.0377 0.0 336.0 778 778 1.0252 0.0 1 -30.0 30.0;
12 13 0.1038 0.3137 0.0 89 89 89 1.0 0.0 1 -30.0 30.0;
12 14 0.1598 0.6415 0.0 45 45 45 1.0 0.0 1 -30.0 30.0;
12 132 0.4486 1.5773 0.0 18 18 18 1.0 0.0 1 -30.0 30.0;
13 15 0.044 0.3227 0.0 91 91 91 1.0 0.0 1 -30.0 30.0;
13 62 0.0098 0.1221 0.0 240 240 240 1.0 0.0 1 -30.0 30.0;
14 72 0.0107 0.0828 0.0 264 264 264 0.0 0.0 1 -30.0 30.0;
14 113 0.0063 0.0382 0.0 235 235 235 0.0 0.0 1 -30.0 30.0;
14 132 0.0057 0.0374 0.0 244 244 244 0.0 0.0 1 -30.0 30.0;
15 58 0.0115 0.0732 0.142 344 344 344 0.0 0.0 1 -30.0 30.0;
15 60 0.3907 1.6753 0.0 18 18 18 1.0 0.0 1 -30.0 30.0;
15 62 0.0084 0.0588 0.0 359 359 359 0.0 0.0 1 -30.0 30.0;
15 63 0.1704 1.4555 0.0 21 21 21 0.0 0.0 1 -30.0 30.0;
16 17 0.6017 1.4373 0.0 19 19 19 0.0 0.0 1 -30.0 30.0;
16 18 0.0297 0.107 0.0546 184 184 184 0.0 0.0 1 -30.0 30.0;
16 27 0.1574 0.8871 0.0 33 33 33 1.0 0.0 1 -30.0 30.0;
16 126 0.1053 0.5132 0.0 56 56 56 1.0 0.0 1 -30.0 30.0;
16 127 0.0958 0.5276 0.0 55 55 55 1.0 0.0 1 -30.0 30.0;
17 18 0.0213 0.1013 0.0642 209 209 209 0.0 0.0 1 -30.0 30.0;
17 19 0.2314 0.7678 0.0 37 37 37 0.0 0.0 1 -30.0 30.0;
17 21 0.0471 0.2665 0.0 109 109 109 0.0 0.0 1 -30.0 30.0;
17 127 0.0287 0.2637 0.0 111 111 111 1.0 0.0 1 -30.0 30.0;
18 30 0.0207 0.1088 0.052 220 220 220 0.0 0.0 1 -30.0 30.0;
18 32 0.0234 0.122 0.0582 219 219 219 0.0 0.0 1 -30.0 30.0;
18 37 0.0 0.0456 0.0 225.0 644 644 1.1193 0.0 1 -30.0 30.0;
19 21 0.3867 1.9005 0.0 16 16 16 0.0 0.0 1 -30.0 30.0;
19 38 0.0239 0.125 0.0596 219 219 219 0.0 0.0 1 -30.0 30.0;
19 43 0.0603 0.2572 0.0 112 112 112 0.0 0.0 1 -30.0 30.0;
19 127 0.1074 0.6809 0.0 43 43 43 1.0 0.0 1 -30.0 30.0;
20 53 0.0 0.114 0.0 75.0 258 258 1.0 0.0 1 -30.0 30.0;
20 157 0.0113 0.0279 0.0004 44.0 66 66 0.0 0.0 1 -30.0 30.0;
21 22 0.0312 0.1629 0.0778 177 177 177 0.0 0.0 1 -30.0 30.0;
21 127 0.0105 0.6414 0.0 46 46 46 1.0 0.0 1 -30.0 30.0;
22 38 0.014 0.054 0.025 190 190 190 0.0 0.0 1 -30.0 30.0;
22 39 0.0 0.0493 0.0 225.0 595 595 1.1081 0.0 1 -30.0 30.0;
22 40 0.0188 0.0717 0.0328 189 189 189 0.0 0.0 1 -30.0 30.0;
22 41 0.0172 0.085 0.0404 213 213 213 0.0 0.0 1 -30.0 30.0;
23 24 0.0174 0.0511 0.023 167 167 167 0.0 0.0 1 -30.0 30.0;
23 60 0.066 0.3093 0.0 93 93 93 1.0 0.0 1 -30.0 30.0;
24 25 0.0 0.034 0.0 225.0 863 863 1.0217 0.0 1 -30.0 30.0;
24 28 0.0249 0.0725 0.0202 166 166 166 0.0 0.0 1 -30.0 30.0;
24 45 0.0137 0.0725 0.034 220 220 220 0.0 0.0 1 -30.0 30.0;
25 26 0.0059 0.0583 0.9302 501 501 501 0.0 0.0 1 -30.0 30.0;
25 27 0.0044 0.041 0.8384 618 618 618 0.0 0.0 1 -30.0 30.0;
26 74 0.0063 0.0607 0.93 481 481 481 0.0 0.0 1 -30.0 30.0;
26 75 0.003 0.0322 0.5038 661 661 661 0.0 0.0 1 -30.0 30.0;
26 76 0.0 0.0082 0.0 1250.0 3578 3578 1.04 0.0 1 -30.0 30.0;
27 31 0.0101 0.1273 0.0 230 230 230 1.0 0.0 1 -30.0 30.0;
27 62 0.0173 0.581 0.0 51 51 51 1.0 0.0 1 -30.0 30.0;
27 65 0.0105 0.2764 0.0 107 107 107 0.0 0.0 1 -30.0 30.0;
27 125 0.035 1.6845 0.0 18 18 18 0.0 0.0 1 -30.0 30.0;
27 126 0.0022 0.0225 0.0 646 646 646 0.0 0.0 1 -30.0 30.0;
27 127 0.1506 1.4355 0.0 21 21 21 0.0 0.0 1 -30.0 30.0;
28 29 0.024 0.0965 0.0444 193 193 193 0.0 0.0 1 -30.0 30.0;
29 30 0.038 0.15 0.0696 177.0 190 190 0.0 0.0 1 -30.0 30.0;
29 31 0.0206 0.0833 0.0384 194 194 194 0.0 0.0 1 -30.0 30.0;
30 32 0.0249 0.1005 0.0458 194 194 194 0.0 0.0 1 -30.0 30.0;
32 33 0.0114 0.0448 0.0208 191 191 191 0.0 0.0 1 -30.0 30.0;
33 34 0.028 0.114 0.052 180.0 195 195 0.0 0.0 1 -30.0 30.0;
33 35 0.0216 0.107 0.051 214 214 214 0.0 0.0 1 -30.0 30.0;
33 36 0.0102 0.0536 0.0254 220 220 220 0.0 0.0 1 -30.0 30.0;
34 40 0.0397 0.1517 0.069 188 188 188 0.0 0.0 1 -30.0 30.0;
34 77 0.0235 0.0896 0.0408 189 189 189 0.0 0.0 1 -30.0 30.0;
35 40 0.0271 0.1341 0.0638 179.0 213 213 0.0 0.0 1 -30.0 30.0;
36 67 0.0176 0.0924 0.044 220 220 220 0.0 0.0 1 -30.0 30.0;
37 39 0.0039 0.0379 0.67 630 630 630 0.0 0.0 1 -30.0 30.0;
37 126 0.004 0.0381 0.67 624 624 624 0.0 0.0 1 -30.0 30.0;
37 127 0.004 0.0403 0.6832 641 641 641 0.0 0.0 1 -30.0 30.0;
39 42 0.002 0.0186 0.32 617 617 617 0.0 0.0 1 -30.0 30.0;
40 81 0.03 0.345 0.0038 81.0 85 85 1.0 0.0 1 -30.0 30.0;
40 82 0.004 0.019 0.0108 209 209 209 0.0 0.0 1 -30.0 30.0;
41 81 0.037 0.372 0.0058 79 79 79 1.0 0.0 1 -30.0 30.0;
41 83 0.0052 0.0256 0.0124 213 213 213 0.0 0.0 1 -30.0 30.0;
41 84 0.0057 0.058 0.0292 301 301 301 0.0 0.0 1 -30.0 30.0;
42 109 0.0019 0.0196 0.333 648 648 648 0.0 0.0 1 -30.0 30.0;
43 44 0.0188 0.0751 0.0348 193 193 193 0.0 0.0 1 -30.0 30.0;
43 103 0.0324 0.1702 0.0 170 170 170 0.0 0.0 1 -30.0 30.0;
43 124 0.0293 0.1766 0.0 164 164 164 1.0 0.0 1 -30.0 30.0;
43 125 0.1449 0.6509 0.0 44 44 44 1.0 0.0 1 -30.0 30.0;
44 102 0.013 0.05 0.0236 180.0 189 189 0.0 0.0 1 -30.0 30.0;
44 103 0.0127 0.051 0.0244 180.0 193 193 0.0 0.0 1 -30.0 30.0;
45 54 0.0108 0.057 0.0272 220 220 220 0.0 0.0 1 -30.0 30.0;
46 47 0.031 0.1378 0.0622 177.0 203 203 0.0 0.0 1 -30.0 30.0;
47 48 0.0251 0.1114 0.0502 177.0 203 203 0.0 0.0 1 -30.0 30.0;
47 49 0.003 0.012 0.0054 193 193 193 0.0 0.0 1 -30.0 30.0;
48 50 0.0336 0.166 0.078 174 174 174 0.0 0.0 1 -30.0 30.0;
48 51 0.042 0.13 0.057 171 171 171 0.0 0.0 1 -30.0 30.0;
48 52 0.054 0.168 0.074 167 167 167 0.0 0.0 1 -30.0 30.0;
49 87 0.014 0.068 0.0266 423 423 423 1.0 0.0 1 -30.0 30.0;
50 51 0.03 0.09 0.041 168 168 168 0.0 0.0 1 -30.0 30.0;
50 123 0.4071 1.8543 0.0 16 16 16 0.0 0.0 1 -30.0 30.0;
50 125 0.1337 0.6031 0.0 48 48 48 1.0 0.0 1 -30.0 30.0;
51 141 0.0323 0.1 0.0442 171 171 171 0.0 0.0 1 -30.0 30.0;
52 79 0.0623 0.2126 0.094 133 133 133 0.0 0.0 1 -30.0 30.0;
52 106 0.0231 0.0717 0.0314 171 171 171 0.0 0.0 1 -30.0 30.0;
52 116 0.006 0.0487 0.0256 270 270 270 0.0 0.0 1 -30.0 30.0;
52 117 0.0117 0.0493 0.023 198 198 198 0.0 0.0 1 -30.0 30.0;
52 118 0.0 0.052 0.0 200.0 565 565 1.0429 0.0 1 -30.0 30.0;
53 11 0.0005 0.02 0.0 375.0 1467 1467 1.0 0.0 1 -30.0 30.0;
53 54 0.0275 0.1961 0.0956 149 149 149 0.0 0.0 1 -30.0 30.0;
53 55 0.0005 0.0026 0.0022 219 219 219 0.0 0.0 1 -30.0 30.0;
54 56 0.0174 0.091 0.043 219 219 219 0.0 0.0 1 -30.0 30.0;
54 57 0.025 0.1237 0.0588 213 213 213 0.0 0.0 1 -30.0 30.0;
55 57 0.0462 0.1763 0.0802 161 161 161 0.0 0.0 1 -30.0 30.0;
55 149 0.0153 0.0671 0.0312 202 202 202 0.0 0.0 1 -30.0 30.0;
55 162 0.004 0.0189 0.0098 209 209 209 0.0 0.0 1 -30.0 30.0;
56 67 0.017 0.0894 0.0424 220 220 220 0.0 0.0 1 -30.0 30.0;
57 80 0.0272 0.1037 0.0472 180.0 189 189 0.0 0.0 1 -30.0 30.0;
58 61 0.0133 0.1018 0.1842 276.0 286 286 0.0 0.0 1 -30.0 30.0;
59 61 0.0106 0.0706 0.121 351 351 351 0.0 0.0 1 -30.0 30.0;
60 61 0.0027 0.0653 -0.0022 100.0 449 449 1.0252 0.0 1 -30.0 30.0;
60 61 0.002 0.0393 0.0 200.0 746 746 1.0252 0.0 1 -30.0 30.0;
60 62 0.3674 0.964 0.0 29 29 29 1.0 0.0 1 -30.0 30.0;
60 65 0.1041 0.4144 0.0 69 69 69 1.0 0.0 1 -30.0 30.0;
60 126 0.5367 1.8295 0.0 16 16 16 1.0 0.0 1 -30.0 30.0;
61 62 0.0296 0.2275 0.3996 128 128 128 0.0 0.0 1 -30.0 30.0;
61 63 0.0043 0.0422 0.0764 345.0 422 422 0.0 0.0 1 -30.0 30.0;
62 63 0.0158 0.1702 0.0 172 172 172 0.0 0.0 1 -30.0 30.0;
62 65 0.004 0.074 0.0 396 396 396 1.0 0.0 1 -30.0 30.0;
62 126 0.0044 0.2969 0.0 99 99 99 1.0 0.0 1 -30.0 30.0;
63 65 0.2409 1.96 0.0 15 15 15 1.0 0.0 1 -30.0 30.0;
64 65 0.005 0.0571 0.9098 512 512 512 0.0 0.0 1 -30.0 30.0;
64 66 0.0033 0.0381 0.6066 684 684 684 0.0 0.0 1 -30.0 30.0;
65 126 0.0031 0.1536 0.0 191 191 191 0.0 0.0 1 -30.0 30.0;
66 11 0.0 0.0118 0.0 500.0 2486 2486 1.0 0.0 1 -30.0 30.0;
67 68 0.0193 0.1013 0.0482 220 220 220 0.0 0.0 1 -30.0 30.0;
68 69 0.0068 0.0353 0.0168 218 218 218 0.0 0.0 1 -30.0 30.0;
69 77 0.0098 0.0374 0.017 189 189 189 0.0 0.0 1 -30.0 30.0;
69 78 0.0114 0.0434 0.0196 180.0 188 188 0.0 0.0 1 -30.0 30.0;
69 79 0.0052 0.0433 0.022 273 273 273 0.0 0.0 1 -30.0 30.0;
70 73 0.0 0.0197 0.0 495.0 1489 1489 1.0398 0.0 1 -30.0 30.0;
70 149 0.0002 0.0018 0.001 284 284 284 0.0 0.0 1 -30.0 30.0;
70 149 0.0002 0.0018 0.001 284 284 284 0.0 0.0 1 -30.0 30.0;
71 85 0.0304 0.1506 0.0716 191 191 191 0.0 0.0 1 -30.0 30.0;
71 150 0.0196 0.097 0.0462 213 213 213 0.0 0.0 1 -30.0 30.0;
72 113 0.0022 0.013 0.0 232 232 232 0.0 0.0 1 -30.0 30.0;
72 132 0.0028 0.0168 0.0 234 234 234 0.0 0.0 1 -30.0 30.0;
72 152 0.0385 0.18 0.0 160 160 160 0.0 0.0 1 -30.0 30.0;
74 119 0.0031 0.031 0.4822 639 639 639 0.0 0.0 1 -30.0 30.0;
75 128 0.0008 0.0087 0.166 665 665 665 0.0 0.0 1 -30.0 30.0;
75 130 0.0004 0.0242 0.0 578.0 1212 1212 1.0249 0.0 1 -30.0 30.0;
78 79 0.0051 0.0336 0.0182 245 245 245 0.0 0.0 1 -30.0 30.0;
78 80 0.0244 0.093 0.0422 180.0 189 189 0.0 0.0 1 -30.0 30.0;
79 74 0.0 0.018 0.0 500.0 1630 1630 1.0248 0.0 1 -30.0 30.0;
82 83 0.0053 0.0249 0.013 208 208 208 0.0 0.0 1 -30.0 30.0;
84 93 0.0125 0.0826 0.0414 245 245 245 0.0 0.0 1 -30.0 30.0;
85 86 0.0211 0.1046 0.0498 214 214 214 0.0 0.0 1 -30.0 30.0;
86 87 0.028 0.112 0.0538 255 255 255 1.0 0.0 1 -30.0 30.0;
86 88 0.044 0.228 0.109 127 127 127 1.0 0.0 1 -30.0 30.0;
88 96 0.074 0.25 0.0142 48.0 113 113 1.0 0.0 1 -30.0 30.0;
88 106 0.0079 0.0468 0.0232 173.0 619 619 1.0 0.0 1 -30.0 30.0;
89 86 0.0 0.057 0.0 90.0 515 515 1.0252 0.0 1 -30.0 30.0;
89 90 0.069 0.134 0.014 69.0 98 98 0.0 0.0 1 -30.0 30.0;
90 96 0.1837 0.359 0.037 73 73 73 0.0 0.0 1 -30.0 30.0;
91 92 0.0156 0.0819 0.0376 220 220 220 0.0 0.0 1 -30.0 30.0;
91 93 0.0143 0.0895 0.045 239 239 239 0.0 0.0 1 -30.0 30.0;
91 94 0.0145 0.0957 0.048 245 245 245 0.0 0.0 1 -30.0 30.0;
92 102 0.015 0.061 0.0292 194 194 194 0.0 0.0 1 -30.0 30.0;
93 42 0.0 0.026 0.0 400.0 1129 1129 1.0248 0.0 1 -30.0 30.0;
93 108 0.0 0.0154 0.0 600.0 1905 1905 1.0503 0.0 1 -30.0 30.0;
94 103 0.0227 0.1333 0.066 217 217 217 0.0 0.0 1 -30.0 30.0;
94 107 0.0613 0.1891 0.0836 148 148 148 0.0 0.0 1 -30.0 30.0;
94 109 0.0 0.035 0.0 300.0 839 839 1.0248 0.0 1 -30.0 30.0;
95 91 0.0054 0.0458 -0.0036 250.0 637 637 1.02 0.0 1 -30.0 30.0;
95 96 0.087 0.212 0.086 109 109 109 0.0 0.0 1 -30.0 30.0;
95 97 0.1289 0.2809 0.0334 58.0 95 95 0.0 0.0 1 -30.0 30.0;
95 98 0.0071 0.043 0.0224 168 168 168 0.0 0.0 1 -30.0 30.0;
95 99 0.0 0.0685 0.0 150.0 429 429 1.0296 0.0 1 -30.0 30.0;
96 100 0.069 0.161 0.0186 69.0 107 107 0.0 0.0 1 -30.0 30.0;
96 101 0.0 0.1031 0.0 96.0 285 285 1.0296 0.0 1 -30.0 30.0;
97 44 0.0051 0.1007 -0.0025 84.0 291 291 1.0252 0.0 1 -30.0 30.0;
98 93 0.0006 0.0214 -0.0341 504.0 1371 1371 1.0252 0.0 1 -30.0 30.0;
98 105 0.1485 0.293 0.031 69.0 90 90 0.0 0.0 1 -30.0 30.0;
100 104 0.062 0.145 0.0166 69.0 107 107 0.0 0.0 1 -30.0 30.0;
103 123 0.182 0.751 0.0 38 38 38 0.0 0.0 1 -30.0 30.0;
103 124 0.0002 0.0167 0.0 1757 1757 1757 1.0 0.0 1 -30.0 30.0;
103 125 0.0279 0.1972 0.0 148 148 148 1.0 0.0 1 -30.0 30.0;
104 34 0.008 0.0637 -0.0033 106.0 457 457 1.0 0.0 1 -30.0 30.0;
105 38 0.0 0.116 0.0 45.0 253 253 1.0252 0.0 1 -30.0 30.0;
106 107 0.0196 0.0611 0.0268 171 171 171 0.0 0.0 1 -30.0 30.0;
107 122 0.013 0.0621 0.0296 210 210 210 0.0 0.0 1 -30.0 30.0;
109 119 0.006 0.0577 0.929 506 506 506 0.0 0.0 1 -30.0 30.0;
109 124 0.002 0.0222 0.3782 671 671 671 0.0 0.0 1 -30.0 30.0;
109 125 0.007 0.062 1.0 471 471 471 0.0 0.0 1 -30.0 30.0;
110 111 0.023 0.099 0.046 180.0 200 200 0.0 0.0 1 -30.0 30.0;
110 112 0.0 0.0185 0.0 500.0 1586 1586 1.0 0.0 1 -30.0 30.0;
110 114 0.0 0.0768 0.0 150.0 382 382 1.0398 0.0 1 -30.0 30.0;
110 134 0.0032 0.0256 0.0134 268 268 268 0.0 0.0 1 -30.0 30.0;
110 141 0.021 0.0649 0.0288 171 171 171 0.0 0.0 1 -30.0 30.0;
111 115 0.0527 0.2215 0.103 129 129 129 0.0 0.0 1 -30.0 30.0;
112 120 0.0005 0.0044 0.072 601 601 601 0.0 0.0 1 -30.0 30.0;
112 121 0.0 0.019 0.0 720.0 1544 1544 1.0499 0.0 1 -30.0 30.0;
113 132 0.0459 0.2911 0.0 100 100 100 0.0 0.0 1 -30.0 30.0;
113 134 0.0008 0.0072 0.0038 284 284 284 0.0 0.0 1 -30.0 30.0;
115 117 0.0019 0.0154 0.033 270 270 270 0.0 0.0 1 -30.0 30.0;
116 117 0.0048 0.0391 0.0214 271 271 271 0.0 0.0 1 -30.0 30.0;
116 119 0.0 0.009 0.0 1000.0 3260 3260 1.0248 0.0 1 -30.0 30.0;
116 147 0.0035 0.0286 0.0156 271 271 271 0.0 0.0 1 -30.0 30.0;
117 147 0.0022 0.0175 0.01 268 268 268 0.0 0.0 1 -30.0 30.0;
120 14 0.0003 0.0188 0.0 500.0 1561 1561 0.9751 0.0 1 -30.0 30.0;
120 128 0.0004 0.0051 0.1 717 717 717 0.0 0.0 1 -30.0 30.0;
120 129 0.0003 0.0038 0.0652 715 715 715 0.0 0.0 1 -30.0 30.0;
122 123 0.0175 0.0835 0.0398 210 210 210 0.0 0.0 1 -30.0 30.0;
123 125 0.0423 0.2441 0.0 119 119 119 1.0 0.0 1 -30.0 30.0;
124 125 0.0113 0.1585 0.0 185 185 185 0.0 0.0 1 -30.0 30.0;
124 126 0.0577 0.8256 0.0 36 36 36 0.0 0.0 1 -30.0 30.0;
125 126 0.0201 0.5915 0.0 50 50 50 0.0 0.0 1 -30.0 30.0;
126 127 0.0877 0.7049 0.0 42 42 42 0.0 0.0 1 -30.0 30.0;
128 72 0.0004 0.018 0.0 500.0 1630 1630 1.0 0.0 1 -30.0 30.0;
129 132 0.0004 0.0198 0.0 500.0 1482 1482 1.0 0.0 1 -30.0 30.0;
133 134 0.0 0.041 0.0 160.0 716 716 1.0249 0.0 1 -30.0 30.0;
133 135 0.0109 0.0259 0.0004 44.0 65 65 0.0 0.0 1 -30.0 30.0;
133 136 0.039 0.099 0.0016 39.0 67 67 0.0 0.0 1 -30.0 30.0;
133 137 0.0134 0.0504 0.001 60.0 81 81 0.0 0.0 1 -30.0 30.0;
135 138 0.0466 0.1182 0.002 39.0 67 67 0.0 0.0 1 -30.0 30.0;
136 139 0.026 0.065 0.001 39.0 66 66 0.0 0.0 1 -30.0 30.0;
137 140 0.0041 0.0156 0.0004 60.0 81 81 0.0 0.0 1 -30.0 30.0;
138 110 0.0 0.041 0.0 160.0 716 716 1.0 0.0 1 -30.0 30.0;
138 139 0.026 0.065 0.001 39.0 66 66 0.0 0.0 1 -30.0 30.0;
138 140 0.0251 0.0941 0.0018 60.0 80 80 0.0 0.0 1 -30.0 30.0;
138 145 0.0923 0.2338 0.0038 39.0 67 67 0.0 0.0 1 -30.0 30.0;
142 51 0.0 0.1728 0.0 83.0 170 170 1.07 0.0 1 -30.0 30.0;
142 143 0.1582 0.3919 0.0068 44.0 66 66 0.0 0.0 1 -30.0 30.0;
142 146 0.1618 0.3861 0.007 44.0 65 65 0.0 0.0 1 -30.0 30.0;
143 144 0.0927 0.2322 0.002 44.0 66 66 0.0 0.0 1 -30.0 30.0;
144 141 0.0 0.082 0.0 80.0 358 358 1.0249 0.0 1 -30.0 30.0;
144 145 0.089 0.221 0.0032 39.0 66 66 0.0 0.0 1 -30.0 30.0;
144 146 0.068 0.2906 0.0058 60.0 86 86 0.0 0.0 1 -30.0 30.0;
148 116 0.0 0.041 0.0 160.0 716 716 1.0 0.0 1 -30.0 30.0;
149 26 0.0 0.0386 0.0 300.0 760 760 1.0 0.0 1 -30.0 30.0;
149 26 0.0 0.0386 0.0 300.0 760 760 1.0 0.0 1 -30.0 30.0;
149 150 0.001 0.0085 0.002 276 276 276 0.0 0.0 1 -30.0 30.0;
149 151 0.0039 0.0262 0.0138 247 247 247 0.0 0.0 1 -30.0 30.0;
149 152 0.0253 0.1168 0.0544 207 207 207 0.0 0.0 1 -30.0 30.0;
151 161 0.0021 0.0138 0.0074 244 244 244 0.0 0.0 1 -30.0 30.0;
153 70 0.0 0.0916 0.0 93.0 321 321 1.0 0.0 1 -30.0 30.0;
153 70 0.0 0.0916 0.0 93.0 321 321 1.0 0.0 1 -30.0 30.0;
153 154 0.071 0.2841 0.0054 50.0 83 83 0.0 0.0 1 -30.0 30.0;
153 155 0.043 0.1856 0.0038 66.0 86 86 0.0 0.0 1 -30.0 30.0;
154 156 0.0155 0.0379 0.0008 50.0 66 66 0.0 0.0 1 -30.0 30.0;
154 160 0.0102 0.0429 0.001 50.0 85 85 0.0 0.0 1 -30.0 30.0;
155 156 0.0176 0.0822 0.0014 66.0 89 89 0.0 0.0 1 -30.0 30.0;
156 157 0.053 0.1273 0.0022 33.0 65 65 0.0 0.0 1 -30.0 30.0;
157 55 0.0 0.0827 0.0 150.0 355 355 1.0 0.0 1 -30.0 30.0;
157 158 0.0489 0.1404 0.0028 50.0 71 71 0.0 0.0 1 -30.0 30.0;
158 159 0.0339 0.0664 0.0012 50.0 59 59 0.0 0.0 1 -30.0 30.0;
159 160 0.019 0.0811 0.012 50.0 86 86 0.0 0.0 1 -30.0 30.0;
161 162 0.0022 0.0103 0.0054 208 208 208 0.0 0.0 1 -30.0 30.0;
];
% INFO : === Translation Options ===
% INFO : Phase Angle Bound: 30.0 (deg.)
% INFO : Line Capacity Model: stat
% INFO : Gen Active Capacity Model: stat
% INFO : Gen Reactive Capacity Model: am50ag
% INFO : Gen Active Cost Model: stat
% INFO : Setting Flat Start
% INFO : Line Capacity PAB: 15.0 (deg.)
% WARNING : Unrecognized data matrix named mpc.busnames: data was ignored
% INFO :
% INFO : === Generator Classification Notes ===
% INFO : NUC 2 - 39.71
% INFO : COW 6 - 42.43
% INFO : NG 4 - 17.86
% INFO :
% INFO : === Generator Active Capacity Stat Model Notes ===
% INFO : Gen at bus 6 - COW : Pg=794.0, Pmax=894.0 -> Pmax=1147 samples: 11
% INFO : Gen at bus 73 - NG : Pg=447.0, Pmax=547.0 -> Pmax=451 samples: 26
% INFO : Gen at bus 76 - COW : Pg=1055.0, Pmax=1155.0 -> Pmax=1127 samples: 29
% INFO : Gen at bus 99 - COW : Pg=130.9, Pmax=230.9 -> Pmax=366 samples: 3
% INFO : Gen at bus 101 - NG : Pg=82.0, Pmax=182.0 -> Pmax=110 samples: 2
% INFO : Gen at bus 108 - NUC : Pg=551.12, Pmax=1112.066 -> Pmax=1119 samples: 1
% INFO : Gen at bus 114 - COW : Pg=131.0, Pmax=231.0 -> Pmax=308 samples: 2
% INFO : Gen at bus 118 - NG : Pg=173.0, Pmax=273.0 -> Pmax=455 samples: 11
% WARNING : Failed to find a generator capacity within (620.0-3100.0) after 100 samples, using percent increase model
% INFO : Gen at bus 121 - NG : Pg=620.0, Pmax=720.0 -> Pmax=700 samples: 100
% WARNING : Failed to find a generator capacity within (2388.0-11940.0) after 100 samples, using percent increase model
% INFO : Gen at bus 125 - NUC : Pg=2388.0, Pmax=2488.0 -> Pmax=2526 samples: 100
% INFO : Gen at bus 130 - COW : Pg=455.0, Pmax=555.0 -> Pmax=1593 samples: 11
% INFO : Gen at bus 131 - COW : Pg=575.0, Pmax=675.0 -> Pmax=1130 samples: 10
% INFO :
% INFO : === Generator Reactive Capacity Atmost Max 50 Percent Active Model Notes ===
% INFO : Gen at bus 73 - NG : Pmax 451.0, Qmin -72.0, Qmax 267.0 -> Qmin -72.0, Qmax 226.0
% INFO : Gen at bus 76 - COW : Pmax 1127.0, Qmin -170.0, Qmax 605.0 -> Qmin -170.0, Qmax 564.0
% INFO : Gen at bus 108 - NUC : Pmax 1119.0, Qmin -9999.0, Qmax 9999.0 -> Qmin -560.0, Qmax 560.0
% INFO : Gen at bus 125 - NUC : Pmax 2526.0, Qmin -1099.0, Qmax 9900.0 -> Qmin -1099.0, Qmax 1263.0
% INFO :
% INFO : === Generator Active Cost Stat Model Notes ===
% INFO : Updated Generator Cost: COW - 0.0 20.0 0.0125944584 -> 0 24.3749880454 0
% INFO : Updated Generator Cost: NG - 0.0 20.0 0.0223713647 -> 0 42.6535457213 0
% INFO : Updated Generator Cost: COW - 0.0 20.0 0.00947867299 -> 0 20.2071793365 0
% INFO : Updated Generator Cost: COW - 0.0 20.0 0.076394194 -> 0 20.8069505485 0
% INFO : Updated Generator Cost: NG - 0.0 20.0 0.12195122 -> 0 49.7589408362 0
% INFO : Updated Generator Cost: NUC - 0.0 20.0 0.0181448686 -> 0 6.65726847808 0
% INFO : Updated Generator Cost: COW - 0.0 20.0 0.0763358779 -> 0 23.8198217418 0
% INFO : Updated Generator Cost: NG - 0.0 20.0 0.0578034682 -> 0 42.0718825513 0
% INFO : Updated Generator Cost: NG - 0.0 20.0 0.0161290323 -> 0 33.8320294676 0
% INFO : Updated Generator Cost: NUC - 0.0 20.0 0.00418760469 -> 0 7.70600143872 0
% INFO : Updated Generator Cost: COW - 0.0 20.0 0.021978022 -> 0 16.6760835089 0
% INFO : Updated Generator Cost: COW - 0.0 20.0 0.0173913043 -> 0 13.0761218928 0
% INFO :
% INFO : === Base KV Replacement Notes ===
% INFO :
% INFO : === Transformer Setting Replacement Notes ===
% WARNING : Branch 1-3 connects two different voltage levels (345.0, 161.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 3-124 connects two different voltage levels (161.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 3-125 connects two different voltage levels (161.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 8-10 connects two different voltage levels (115.0, 230.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 8-13 connects two different voltage levels (115.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 8-14 connects two different voltage levels (115.0, 161.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 8-15 connects two different voltage levels (115.0, 230.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 8-132 connects two different voltage levels (115.0, 161.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 10-13 connects two different voltage levels (230.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 10-60 connects two different voltage levels (230.0, 115.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 11-46 connects two different voltage levels (230.0, 161.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 12-13 connects two different voltage levels (115.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 12-14 connects two different voltage levels (115.0, 161.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 12-132 connects two different voltage levels (115.0, 161.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 13-15 connects two different voltage levels (345.0, 230.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 13-62 connects two different voltage levels (345.0, 230.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 15-60 connects two different voltage levels (230.0, 115.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 16-27 connects two different voltage levels (161.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 16-126 connects two different voltage levels (161.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 16-127 connects two different voltage levels (161.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 17-127 connects two different voltage levels (161.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 19-127 connects two different voltage levels (161.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 21-127 connects two different voltage levels (161.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 23-60 connects two different voltage levels (161.0, 115.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 27-31 connects two different voltage levels (345.0, 161.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 27-62 connects two different voltage levels (345.0, 230.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 40-81 connects two different voltage levels (161.0, 69.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 41-81 connects two different voltage levels (161.0, 69.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 43-124 connects two different voltage levels (161.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 43-125 connects two different voltage levels (161.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 49-87 connects two different voltage levels (161.0, 115.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 50-125 connects two different voltage levels (161.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 60-62 connects two different voltage levels (115.0, 230.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 60-65 connects two different voltage levels (115.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 60-126 connects two different voltage levels (115.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 62-65 connects two different voltage levels (230.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 62-126 connects two different voltage levels (230.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 63-65 connects two different voltage levels (230.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 86-87 connects two different voltage levels (161.0, 115.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 86-88 connects two different voltage levels (161.0, 69.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 88-96 connects two different voltage levels (69.0, 115.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 88-106 connects two different voltage levels (69.0, 161.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 103-124 connects two different voltage levels (161.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 103-125 connects two different voltage levels (161.0, 345.0), changing tap ratio 0.0 => 1.0
% WARNING : Branch 123-125 connects two different voltage levels (161.0, 345.0), changing tap ratio 0.0 => 1.0
% INFO :
% INFO : === Line Capacity Stat Model Notes ===
% INFO : Updated Thermal Rating: on line 1-2 : Rate A, Rate B, Rate C , 3450.0, 0.0, 0.0 -> 613
% WARNING : Different basekv values on line 1-3, branch flow stat model using max current model : from_basekv=345.0 to_basekv=161.0
% INFO : Updated Thermal Rating: on transformer 1-3 : Rate A, Rate B, Rate C , 3709.0, 0.0, 0.0 -> 895
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 1-4 : 629 , 469
% INFO : Updated Thermal Rating: on line 1-4 : Rate A, Rate B, Rate C , 3450.0, 0.0, 0.0 -> 470
% INFO : Updated Thermal Rating: on line 1-5 : Rate A, Rate B, Rate C , 4002.0, 0.0, 0.0 -> 663
% WARNING : Missing data for branch flow stat model on line 1-6 using max current model : from_basekv=345.0 to_basekv=22.0 r=0.0 x=0.0133
% INFO : Updated Thermal Rating: on transformer 1-6 : Rate B, Rate C , 0.0, 0.0 -> 2206
% INFO : Updated Thermal Rating: on line 2-7 : Rate A, Rate B, Rate C , 3709.0, 0.0, 0.0 -> 605
% INFO : Updated Thermal Rating: on line 2-13 : Rate A, Rate B, Rate C , 3450.0, 0.0, 0.0 -> 610
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 3-14 : 198 , 28
% INFO : Updated Thermal Rating: on line 3-14 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 29
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 3-50 : 200 , 168
% INFO : Updated Thermal Rating: on line 3-50 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 169
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 3-103 : 381 , 16
% INFO : Updated Thermal Rating: on line 3-103 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 17
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 3-123 : 229 , 17
% INFO : Updated Thermal Rating: on line 3-123 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 18
% WARNING : Different basekv values on line 3-124, branch flow stat model using max current model : from_basekv=161.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 3-124 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 46
% WARNING : Different basekv values on line 3-125, branch flow stat model using max current model : from_basekv=161.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 3-125 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 257
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 4-112 : 626 , 513
% INFO : Updated Thermal Rating: on line 4-112 : Rate A, Rate B, Rate C , 3450.0, 0.0, 0.0 -> 514
% WARNING : Missing data for branch flow stat model on line 4-115 using max current model : from_basekv=345.0 to_basekv=161.0 r=0.0 x=0.0185
% INFO : Updated Thermal Rating: on transformer 4-115 : Rate B, Rate C , 0.0, 0.0 -> 1586
% INFO : Updated Thermal Rating: on line 4-119 : Rate A, Rate B, Rate C , 3450.0, 0.0, 0.0 -> 591
% INFO : Updated Thermal Rating: on line 5-120 : Rate A, Rate B, Rate C , 4002.0, 0.0, 0.0 -> 644
% INFO : Updated Thermal Rating: on line 5-129 : Rate A, Rate B, Rate C , 2474.0, 0.0, 0.0 -> 702
% WARNING : Missing data for branch flow stat model on line 5-131 using max current model : from_basekv=345.0 to_basekv=18.0 r=0.0 x=0.0127
% INFO : Updated Thermal Rating: on transformer 5-131 : Rate B, Rate C , 0.0, 0.0 -> 2310
% WARNING : Different basekv values on line 7-8, branch flow stat model using max current model : from_basekv=345.0 to_basekv=115.0
% INFO : Updated Thermal Rating: on transformer 7-8 : Rate B, Rate C , 0.0, 0.0 -> 1552
% INFO : Updated Thermal Rating: on line 7-9 : Rate A, Rate B, Rate C , 2474.0, 0.0, 0.0 -> 637
% WARNING : Different basekv values on line 8-10, branch flow stat model using max current model : from_basekv=115.0 to_basekv=230.0
% INFO : Updated Thermal Rating: on transformer 8-10 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 26
% INFO : Updated Thermal Rating: on line 8-12 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 159
% WARNING : Different basekv values on line 8-13, branch flow stat model using max current model : from_basekv=115.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 8-13 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 60
% WARNING : Different basekv values on line 8-14, branch flow stat model using max current model : from_basekv=115.0 to_basekv=161.0
% INFO : Updated Thermal Rating: on transformer 8-14 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 74
% WARNING : Different basekv values on line 8-15, branch flow stat model using max current model : from_basekv=115.0 to_basekv=230.0
% INFO : Updated Thermal Rating: on transformer 8-15 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 17
% WARNING : Different basekv values on line 8-132, branch flow stat model using max current model : from_basekv=115.0 to_basekv=161.0
% INFO : Updated Thermal Rating: on transformer 8-132 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 102
% INFO : Updated Thermal Rating: on line 9-75 : Rate A, Rate B, Rate C , 2474.0, 0.0, 0.0 -> 684
% INFO : Updated Thermal Rating: on line 10-11 : Rate A, Rate B, Rate C , 736.0, 0.0, 0.0 -> 366
% WARNING : Different basekv values on line 10-13, branch flow stat model using max current model : from_basekv=230.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 10-13 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 47
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 10-15 : 320 , 41
% INFO : Updated Thermal Rating: on line 10-15 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 42
% WARNING : Different basekv values on line 10-60, branch flow stat model using max current model : from_basekv=230.0 to_basekv=115.0
% INFO : Updated Thermal Rating: on transformer 10-60 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 24
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 11-15 : 341 , 161
% INFO : Updated Thermal Rating: on line 11-15 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 162
% WARNING : Different basekv values on line 11-46, branch flow stat model using max current model : from_basekv=230.0 to_basekv=161.0
% INFO : Updated Thermal Rating: on transformer 11-46 : Rate A, Rate B, Rate C , 460.0, 0.0, 0.0 -> 238
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 11-58 : 341 , 270
% INFO : Updated Thermal Rating: on line 11-58 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 271
% INFO : Updated Thermal Rating: on line 11-59 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 350
% WARNING : Different basekv values on line 12-2, branch flow stat model using max current model : from_basekv=115.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 12-2 : Rate B, Rate C , 0.0, 0.0 -> 778
% WARNING : Different basekv values on line 12-13, branch flow stat model using max current model : from_basekv=115.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 12-13 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 89
% WARNING : Different basekv values on line 12-14, branch flow stat model using max current model : from_basekv=115.0 to_basekv=161.0
% INFO : Updated Thermal Rating: on transformer 12-14 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 45
% WARNING : Different basekv values on line 12-132, branch flow stat model using max current model : from_basekv=115.0 to_basekv=161.0
% INFO : Updated Thermal Rating: on transformer 12-132 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 18
% WARNING : Different basekv values on line 13-15, branch flow stat model using max current model : from_basekv=345.0 to_basekv=230.0
% INFO : Updated Thermal Rating: on transformer 13-15 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 91
% WARNING : Different basekv values on line 13-62, branch flow stat model using max current model : from_basekv=345.0 to_basekv=230.0
% INFO : Updated Thermal Rating: on transformer 13-62 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 240
% INFO : Updated Thermal Rating: on line 14-72 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 264
% INFO : Updated Thermal Rating: on line 14-113 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 235
% INFO : Updated Thermal Rating: on line 14-132 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 244
% INFO : Updated Thermal Rating: on line 15-58 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 344
% WARNING : Different basekv values on line 15-60, branch flow stat model using max current model : from_basekv=230.0 to_basekv=115.0
% INFO : Updated Thermal Rating: on transformer 15-60 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 18
% INFO : Updated Thermal Rating: on line 15-62 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 359
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 15-63 : 394 , 20
% INFO : Updated Thermal Rating: on line 15-63 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 21
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 16-17 : 150 , 18
% INFO : Updated Thermal Rating: on line 16-17 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 19
% INFO : Updated Thermal Rating: on line 16-18 : Rate A, Rate B, Rate C , 269.0, 0.0, 0.0 -> 184
% WARNING : Different basekv values on line 16-27, branch flow stat model using max current model : from_basekv=161.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 16-27 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 33
% WARNING : Different basekv values on line 16-126, branch flow stat model using max current model : from_basekv=161.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 16-126 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 56
% WARNING : Different basekv values on line 16-127, branch flow stat model using max current model : from_basekv=161.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 16-127 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 55
% INFO : Updated Thermal Rating: on line 17-18 : Rate A, Rate B, Rate C , 361.0, 0.0, 0.0 -> 209
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 17-19 : 175 , 36
% INFO : Updated Thermal Rating: on line 17-19 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 37
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 17-21 : 227 , 108
% INFO : Updated Thermal Rating: on line 17-21 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 109
% WARNING : Different basekv values on line 17-127, branch flow stat model using max current model : from_basekv=161.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 17-127 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 111
% INFO : Updated Thermal Rating: on line 18-30 : Rate A, Rate B, Rate C , 362.0, 0.0, 0.0 -> 220
% INFO : Updated Thermal Rating: on line 18-32 : Rate A, Rate B, Rate C , 361.0, 0.0, 0.0 -> 219
% WARNING : Missing data for branch flow stat model on line 18-37 using max current model : from_basekv=161.0 to_basekv=345.0 r=0.0 x=0.0456
% INFO : Updated Thermal Rating: on transformer 18-37 : Rate B, Rate C , 0.0, 0.0 -> 644
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 19-21 : 212 , 15
% INFO : Updated Thermal Rating: on line 19-21 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 16
% INFO : Updated Thermal Rating: on line 19-38 : Rate A, Rate B, Rate C , 354.0, 0.0, 0.0 -> 219
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 19-43 : 198 , 111
% INFO : Updated Thermal Rating: on line 19-43 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 112
% WARNING : Different basekv values on line 19-127, branch flow stat model using max current model : from_basekv=161.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 19-127 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 43
% WARNING : Missing data for branch flow stat model on line 20-53 using max current model : from_basekv=69.0 to_basekv=161.0 r=0.0 x=0.114
% INFO : Updated Thermal Rating: on transformer 20-53 : Rate B, Rate C , 0.0, 0.0 -> 258
% INFO : Updated Thermal Rating: on line 20-157 : Rate B, Rate C , 0.0, 0.0 -> 66
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 21-22 : 218 , 176
% INFO : Updated Thermal Rating: on line 21-22 : Rate A, Rate B, Rate C , 387.0, 0.0, 0.0 -> 177
% WARNING : Different basekv values on line 21-127, branch flow stat model using max current model : from_basekv=161.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 21-127 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 46
% INFO : Updated Thermal Rating: on line 22-38 : Rate A, Rate B, Rate C , 362.0, 0.0, 0.0 -> 190
% WARNING : Missing data for branch flow stat model on line 22-39 using max current model : from_basekv=161.0 to_basekv=345.0 r=0.0 x=0.0493
% INFO : Updated Thermal Rating: on transformer 22-39 : Rate B, Rate C , 0.0, 0.0 -> 595
% INFO : Updated Thermal Rating: on line 22-40 : Rate A, Rate B, Rate C , 362.0, 0.0, 0.0 -> 189
% INFO : Updated Thermal Rating: on line 22-41 : Rate A, Rate B, Rate C , 351.0, 0.0, 0.0 -> 213
% INFO : Updated Thermal Rating: on line 23-24 : Rate A, Rate B, Rate C , 361.0, 0.0, 0.0 -> 167
% WARNING : Different basekv values on line 23-60, branch flow stat model using max current model : from_basekv=161.0 to_basekv=115.0
% INFO : Updated Thermal Rating: on transformer 23-60 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 93
% WARNING : Missing data for branch flow stat model on line 24-25 using max current model : from_basekv=161.0 to_basekv=345.0 r=0.0 x=0.034
% INFO : Updated Thermal Rating: on transformer 24-25 : Rate B, Rate C , 0.0, 0.0 -> 863
% INFO : Updated Thermal Rating: on line 24-28 : Rate A, Rate B, Rate C , 361.0, 0.0, 0.0 -> 166
% INFO : Updated Thermal Rating: on line 24-45 : Rate A, Rate B, Rate C , 359.0, 0.0, 0.0 -> 220
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 25-26 : 634 , 500
% INFO : Updated Thermal Rating: on line 25-26 : Rate A, Rate B, Rate C , 4105.0, 0.0, 0.0 -> 501
% INFO : Updated Thermal Rating: on line 25-27 : Rate A, Rate B, Rate C , 2484.0, 0.0, 0.0 -> 618
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 26-74 : 627 , 480
% INFO : Updated Thermal Rating: on line 26-74 : Rate A, Rate B, Rate C , 2484.0, 0.0, 0.0 -> 481
% INFO : Updated Thermal Rating: on line 26-75 : Rate A, Rate B, Rate C , 3709.0, 0.0, 0.0 -> 661
% WARNING : Missing data for branch flow stat model on line 26-76 using max current model : from_basekv=345.0 to_basekv=24.0 r=0.0 x=0.0082
% INFO : Updated Thermal Rating: on transformer 26-76 : Rate B, Rate C , 0.0, 0.0 -> 3578
% WARNING : Different basekv values on line 27-31, branch flow stat model using max current model : from_basekv=345.0 to_basekv=161.0
% INFO : Updated Thermal Rating: on transformer 27-31 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 230
% WARNING : Different basekv values on line 27-62, branch flow stat model using max current model : from_basekv=345.0 to_basekv=230.0
% INFO : Updated Thermal Rating: on transformer 27-62 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 51
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 27-65 : 1013 , 106
% INFO : Updated Thermal Rating: on line 27-65 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 107
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 27-125 : 1351 , 17
% INFO : Updated Thermal Rating: on line 27-125 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 18
% INFO : Updated Thermal Rating: on line 27-126 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 646
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 27-127 : 623 , 20
% INFO : Updated Thermal Rating: on line 27-127 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 21
% INFO : Updated Thermal Rating: on line 28-29 : Rate A, Rate B, Rate C , 269.0, 0.0, 0.0 -> 193
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 29-30 : 191 , 189
% INFO : Updated Thermal Rating: on line 29-30 : Rate B, Rate C , 0.0, 0.0 -> 190
% INFO : Updated Thermal Rating: on line 29-31 : Rate A, Rate B, Rate C , 269.0, 0.0, 0.0 -> 194
% INFO : Updated Thermal Rating: on line 30-32 : Rate A, Rate B, Rate C , 325.0, 0.0, 0.0 -> 194
% INFO : Updated Thermal Rating: on line 32-33 : Rate A, Rate B, Rate C , 325.0, 0.0, 0.0 -> 191
% INFO : Updated Thermal Rating: on line 33-34 : Rate B, Rate C , 0.0, 0.0 -> 195
% INFO : Updated Thermal Rating: on line 33-35 : Rate A, Rate B, Rate C , 387.0, 0.0, 0.0 -> 214
% INFO : Updated Thermal Rating: on line 33-36 : Rate A, Rate B, Rate C , 349.0, 0.0, 0.0 -> 220
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 34-40 : 188 , 187
% INFO : Updated Thermal Rating: on line 34-40 : Rate A, Rate B, Rate C , 325.0, 0.0, 0.0 -> 188
% INFO : Updated Thermal Rating: on line 34-77 : Rate A, Rate B, Rate C , 269.0, 0.0, 0.0 -> 189
% INFO : Updated Thermal Rating: on line 35-40 : Rate B, Rate C , 0.0, 0.0 -> 213
% INFO : Updated Thermal Rating: on line 36-67 : Rate A, Rate B, Rate C , 349.0, 0.0, 0.0 -> 220
% INFO : Updated Thermal Rating: on line 37-39 : Rate A, Rate B, Rate C , 1656.0, 0.0, 0.0 -> 630
% INFO : Updated Thermal Rating: on line 37-126 : Rate A, Rate B, Rate C , 2484.0, 0.0, 0.0 -> 624
% INFO : Updated Thermal Rating: on line 37-127 : Rate A, Rate B, Rate C , 3312.0, 0.0, 0.0 -> 641
% INFO : Updated Thermal Rating: on line 39-42 : Rate A, Rate B, Rate C , 1656.0, 0.0, 0.0 -> 617
% WARNING : Different basekv values on line 40-81, branch flow stat model using max current model : from_basekv=161.0 to_basekv=69.0
% INFO : Updated Thermal Rating: on transformer 40-81 : Rate B, Rate C , 0.0, 0.0 -> 85
% INFO : Updated Thermal Rating: on line 40-82 : Rate A, Rate B, Rate C , 351.0, 0.0, 0.0 -> 209
% WARNING : Different basekv values on line 41-81, branch flow stat model using max current model : from_basekv=161.0 to_basekv=69.0
% INFO : Updated Thermal Rating: on transformer 41-81 : Rate A, Rate B, Rate C , 81.0, 0.0, 0.0 -> 79
% INFO : Updated Thermal Rating: on line 41-83 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 213
% INFO : Updated Thermal Rating: on line 41-84 : Rate A, Rate B, Rate C , 406.0, 0.0, 0.0 -> 301
% INFO : Updated Thermal Rating: on line 42-109 : Rate A, Rate B, Rate C , 3795.0, 0.0, 0.0 -> 648
% INFO : Updated Thermal Rating: on line 43-44 : Rate A, Rate B, Rate C , 269.0, 0.0, 0.0 -> 193
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 43-103 : 219 , 169
% INFO : Updated Thermal Rating: on line 43-103 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 170
% WARNING : Different basekv values on line 43-124, branch flow stat model using max current model : from_basekv=161.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 43-124 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 164
% WARNING : Different basekv values on line 43-125, branch flow stat model using max current model : from_basekv=161.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 43-125 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 44
% INFO : Updated Thermal Rating: on line 44-102 : Rate B, Rate C , 0.0, 0.0 -> 189
% INFO : Updated Thermal Rating: on line 44-103 : Rate B, Rate C , 0.0, 0.0 -> 193
% INFO : Updated Thermal Rating: on line 45-54 : Rate A, Rate B, Rate C , 354.0, 0.0, 0.0 -> 220
% INFO : Updated Thermal Rating: on line 46-47 : Rate B, Rate C , 0.0, 0.0 -> 203
% INFO : Updated Thermal Rating: on line 47-48 : Rate B, Rate C , 0.0, 0.0 -> 203
% INFO : Updated Thermal Rating: on line 47-49 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 193
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 48-50 : 212 , 173
% INFO : Updated Thermal Rating: on line 48-50 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 174
% INFO : Updated Thermal Rating: on line 48-51 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 171
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 48-52 : 170 , 166
% INFO : Updated Thermal Rating: on line 48-52 : Rate A, Rate B, Rate C , 261.0, 0.0, 0.0 -> 167
% WARNING : Different basekv values on line 49-87, branch flow stat model using max current model : from_basekv=161.0 to_basekv=115.0
% INFO : Updated Thermal Rating: on transformer 49-87 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 423
% INFO : Updated Thermal Rating: on line 50-51 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 168
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 50-123 : 204 , 15
% INFO : Updated Thermal Rating: on line 50-123 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 16
% WARNING : Different basekv values on line 50-125, branch flow stat model using max current model : from_basekv=161.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 50-125 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 48
% INFO : Updated Thermal Rating: on line 51-141 : Rate A, Rate B, Rate C , 264.0, 0.0, 0.0 -> 171
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 52-79 : 178 , 132
% INFO : Updated Thermal Rating: on line 52-79 : Rate A, Rate B, Rate C , 269.0, 0.0, 0.0 -> 133
% INFO : Updated Thermal Rating: on line 52-106 : Rate A, Rate B, Rate C , 269.0, 0.0, 0.0 -> 171
% INFO : Updated Thermal Rating: on line 52-116 : Rate A, Rate B, Rate C , 515.0, 0.0, 0.0 -> 270
% INFO : Updated Thermal Rating: on line 52-117 : Rate A, Rate B, Rate C , 337.0, 0.0, 0.0 -> 198
% WARNING : Missing data for branch flow stat model on line 52-118 using max current model : from_basekv=161.0 to_basekv=14.0 r=0.0 x=0.052
% INFO : Updated Thermal Rating: on transformer 52-118 : Rate B, Rate C , 0.0, 0.0 -> 565
% WARNING : Different basekv values on line 53-11, branch flow stat model using max current model : from_basekv=161.0 to_basekv=230.0
% INFO : Updated Thermal Rating: on transformer 53-11 : Rate B, Rate C , 0.0, 0.0 -> 1467
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 53-54 : 253 , 148
% INFO : Updated Thermal Rating: on line 53-54 : Rate A, Rate B, Rate C , 177.0, 0.0, 0.0 -> 149
% INFO : Updated Thermal Rating: on line 53-55 : Rate A, Rate B, Rate C , 538.0, 0.0, 0.0 -> 219
% INFO : Updated Thermal Rating: on line 54-56 : Rate A, Rate B, Rate C , 354.0, 0.0, 0.0 -> 219
% INFO : Updated Thermal Rating: on line 54-57 : Rate A, Rate B, Rate C , 387.0, 0.0, 0.0 -> 213
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 55-57 : 188 , 160
% INFO : Updated Thermal Rating: on line 55-57 : Rate A, Rate B, Rate C , 375.0, 0.0, 0.0 -> 161
% INFO : Updated Thermal Rating: on line 55-149 : Rate A, Rate B, Rate C , 357.0, 0.0, 0.0 -> 202
% INFO : Updated Thermal Rating: on line 55-162 : Rate A, Rate B, Rate C , 538.0, 0.0, 0.0 -> 209
% INFO : Updated Thermal Rating: on line 56-67 : Rate A, Rate B, Rate C , 349.0, 0.0, 0.0 -> 220
% INFO : Updated Thermal Rating: on line 57-80 : Rate B, Rate C , 0.0, 0.0 -> 189
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 58-61 : 374 , 285
% INFO : Updated Thermal Rating: on line 58-61 : Rate B, Rate C , 0.0, 0.0 -> 286
% INFO : Updated Thermal Rating: on line 59-61 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 351
% WARNING : Different basekv values on line 60-61, branch flow stat model using max current model : from_basekv=115.0 to_basekv=230.0
% INFO : Updated Thermal Rating: on transformer 60-61 : Rate B, Rate C , 0.0, 0.0 -> 449
% WARNING : Different basekv values on line 60-61, branch flow stat model using max current model : from_basekv=115.0 to_basekv=230.0
% INFO : Updated Thermal Rating: on transformer 60-61 : Rate B, Rate C , 0.0, 0.0 -> 746
% WARNING : Different basekv values on line 60-62, branch flow stat model using max current model : from_basekv=115.0 to_basekv=230.0
% INFO : Updated Thermal Rating: on transformer 60-62 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 29
% WARNING : Different basekv values on line 60-65, branch flow stat model using max current model : from_basekv=115.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 60-65 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 69
% WARNING : Different basekv values on line 60-126, branch flow stat model using max current model : from_basekv=115.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 60-126 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 16
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 61-62 : 375 , 127
% INFO : Updated Thermal Rating: on line 61-62 : Rate A, Rate B, Rate C , 552.0, 0.0, 0.0 -> 128
% INFO : Updated Thermal Rating: on line 61-63 : Rate B, Rate C , 0.0, 0.0 -> 422
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 62-63 : 440 , 171
% INFO : Updated Thermal Rating: on line 62-63 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 172
% WARNING : Different basekv values on line 62-65, branch flow stat model using max current model : from_basekv=230.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 62-65 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 396
% WARNING : Different basekv values on line 62-126, branch flow stat model using max current model : from_basekv=230.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 62-126 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 99
% WARNING : Different basekv values on line 63-65, branch flow stat model using max current model : from_basekv=230.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 63-65 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 15
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 64-65 : 680 , 511
% INFO : Updated Thermal Rating: on line 64-65 : Rate A, Rate B, Rate C , 4140.0, 0.0, 0.0 -> 512
% INFO : Updated Thermal Rating: on line 64-66 : Rate A, Rate B, Rate C , 4140.0, 0.0, 0.0 -> 684
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 65-126 : 1370 , 190
% INFO : Updated Thermal Rating: on line 65-126 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 191
% WARNING : Missing data for branch flow stat model on line 66-11 using max current model : from_basekv=345.0 to_basekv=230.0 r=0.0 x=0.0118
% INFO : Updated Thermal Rating: on transformer 66-11 : Rate B, Rate C , 0.0, 0.0 -> 2486
% INFO : Updated Thermal Rating: on line 67-68 : Rate A, Rate B, Rate C , 349.0, 0.0, 0.0 -> 220
% INFO : Updated Thermal Rating: on line 68-69 : Rate A, Rate B, Rate C , 351.0, 0.0, 0.0 -> 218
% INFO : Updated Thermal Rating: on line 69-77 : Rate A, Rate B, Rate C , 269.0, 0.0, 0.0 -> 189
% INFO : Updated Thermal Rating: on line 69-78 : Rate B, Rate C , 0.0, 0.0 -> 188
% INFO : Updated Thermal Rating: on line 69-79 : Rate A, Rate B, Rate C , 522.0, 0.0, 0.0 -> 273
% WARNING : Missing data for branch flow stat model on line 70-73 using max current model : from_basekv=161.0 to_basekv=20.0 r=0.0 x=0.0197
% INFO : Updated Thermal Rating: on transformer 70-73 : Rate B, Rate C , 0.0, 0.0 -> 1489
% INFO : Updated Thermal Rating: on line 70-149 : Rate A, Rate B, Rate C , 538.0, 0.0, 0.0 -> 284
% INFO : Updated Thermal Rating: on line 70-149 : Rate A, Rate B, Rate C , 538.0, 0.0, 0.0 -> 284
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 71-85 : 213 , 190
% INFO : Updated Thermal Rating: on line 71-85 : Rate A, Rate B, Rate C , 351.0, 0.0, 0.0 -> 191
% INFO : Updated Thermal Rating: on line 71-150 : Rate A, Rate B, Rate C , 361.0, 0.0, 0.0 -> 213
% INFO : Updated Thermal Rating: on line 72-113 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 232
% INFO : Updated Thermal Rating: on line 72-132 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 234
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 72-152 : 207 , 159
% INFO : Updated Thermal Rating: on line 72-152 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 160
% INFO : Updated Thermal Rating: on line 74-119 : Rate A, Rate B, Rate C , 3450.0, 0.0, 0.0 -> 639
% INFO : Updated Thermal Rating: on line 75-128 : Rate A, Rate B, Rate C , 2474.0, 0.0, 0.0 -> 665
% WARNING : Different basekv values on line 75-130, branch flow stat model using max current model : from_basekv=345.0 to_basekv=22.0
% INFO : Updated Thermal Rating: on transformer 75-130 : Rate B, Rate C , 0.0, 0.0 -> 1212
% INFO : Updated Thermal Rating: on line 78-79 : Rate A, Rate B, Rate C , 456.0, 0.0, 0.0 -> 245
% INFO : Updated Thermal Rating: on line 78-80 : Rate B, Rate C , 0.0, 0.0 -> 189
% WARNING : Missing data for branch flow stat model on line 79-74 using max current model : from_basekv=161.0 to_basekv=345.0 r=0.0 x=0.018
% INFO : Updated Thermal Rating: on transformer 79-74 : Rate B, Rate C , 0.0, 0.0 -> 1630
% INFO : Updated Thermal Rating: on line 82-83 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 208
% INFO : Updated Thermal Rating: on line 84-93 : Rate A, Rate B, Rate C , 406.0, 0.0, 0.0 -> 245
% INFO : Updated Thermal Rating: on line 85-86 : Rate A, Rate B, Rate C , 387.0, 0.0, 0.0 -> 214
% WARNING : Different basekv values on line 86-87, branch flow stat model using max current model : from_basekv=161.0 to_basekv=115.0
% INFO : Updated Thermal Rating: on transformer 86-87 : Rate A, Rate B, Rate C , 325.0, 0.0, 0.0 -> 255
% WARNING : Different basekv values on line 86-88, branch flow stat model using max current model : from_basekv=161.0 to_basekv=69.0
% INFO : Updated Thermal Rating: on transformer 86-88 : Rate A, Rate B, Rate C , 180.0, 0.0, 0.0 -> 127
% WARNING : Different basekv values on line 88-96, branch flow stat model using max current model : from_basekv=69.0 to_basekv=115.0
% INFO : Updated Thermal Rating: on transformer 88-96 : Rate B, Rate C , 0.0, 0.0 -> 113
% WARNING : Different basekv values on line 88-106, branch flow stat model using max current model : from_basekv=69.0 to_basekv=161.0
% INFO : Updated Thermal Rating: on transformer 88-106 : Rate B, Rate C , 0.0, 0.0 -> 619
% WARNING : Missing data for branch flow stat model on line 89-86 using max current model : from_basekv=115.0 to_basekv=161.0 r=0.0 x=0.057
% INFO : Updated Thermal Rating: on transformer 89-86 : Rate B, Rate C , 0.0, 0.0 -> 515
% INFO : Updated Thermal Rating: on line 89-90 : Rate B, Rate C , 0.0, 0.0 -> 98
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 90-96 : 97 , 72
% INFO : Updated Thermal Rating: on line 90-96 : Rate A, Rate B, Rate C , 92.0, 0.0, 0.0 -> 73
% INFO : Updated Thermal Rating: on line 91-92 : Rate A, Rate B, Rate C , 270.0, 0.0, 0.0 -> 220
% INFO : Updated Thermal Rating: on line 91-93 : Rate A, Rate B, Rate C , 523.0, 0.0, 0.0 -> 239
% INFO : Updated Thermal Rating: on line 91-94 : Rate A, Rate B, Rate C , 406.0, 0.0, 0.0 -> 245
% INFO : Updated Thermal Rating: on line 92-102 : Rate A, Rate B, Rate C , 270.0, 0.0, 0.0 -> 194
% WARNING : Missing data for branch flow stat model on line 93-42 using max current model : from_basekv=161.0 to_basekv=345.0 r=0.0 x=0.026
% INFO : Updated Thermal Rating: on transformer 93-42 : Rate B, Rate C , 0.0, 0.0 -> 1129
% WARNING : Missing data for branch flow stat model on line 93-108 using max current model : from_basekv=161.0 to_basekv=22.0 r=0.0 x=0.0154
% INFO : Updated Thermal Rating: on transformer 93-108 : Rate B, Rate C , 0.0, 0.0 -> 1905
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 94-103 : 231 , 216
% INFO : Updated Thermal Rating: on line 94-103 : Rate A, Rate B, Rate C , 359.0, 0.0, 0.0 -> 217
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 94-107 : 169 , 147
% INFO : Updated Thermal Rating: on line 94-107 : Rate A, Rate B, Rate C , 269.0, 0.0, 0.0 -> 148
% WARNING : Missing data for branch flow stat model on line 94-109 using max current model : from_basekv=161.0 to_basekv=345.0 r=0.0 x=0.035
% INFO : Updated Thermal Rating: on transformer 94-109 : Rate B, Rate C , 0.0, 0.0 -> 839
% WARNING : Different basekv values on line 95-91, branch flow stat model using max current model : from_basekv=115.0 to_basekv=161.0
% INFO : Updated Thermal Rating: on transformer 95-91 : Rate B, Rate C , 0.0, 0.0 -> 637
% INFO : Updated Thermal Rating: on line 95-96 : Rate A, Rate B, Rate C , 136.0, 0.0, 0.0 -> 109
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 95-97 : 102 , 94
% INFO : Updated Thermal Rating: on line 95-97 : Rate B, Rate C , 0.0, 0.0 -> 95
% INFO : Updated Thermal Rating: on line 95-98 : Rate A, Rate B, Rate C , 460.0, 0.0, 0.0 -> 168
% WARNING : Missing data for branch flow stat model on line 95-99 using max current model : from_basekv=115.0 to_basekv=18.0 r=0.0 x=0.0685
% INFO : Updated Thermal Rating: on transformer 95-99 : Rate B, Rate C , 0.0, 0.0 -> 429
% INFO : Updated Thermal Rating: on line 96-100 : Rate B, Rate C , 0.0, 0.0 -> 107
% WARNING : Missing data for branch flow stat model on line 96-101 using max current model : from_basekv=115.0 to_basekv=14.0 r=0.0 x=0.1031
% INFO : Updated Thermal Rating: on transformer 96-101 : Rate B, Rate C , 0.0, 0.0 -> 285
% WARNING : Different basekv values on line 97-44, branch flow stat model using max current model : from_basekv=115.0 to_basekv=161.0
% INFO : Updated Thermal Rating: on transformer 97-44 : Rate B, Rate C , 0.0, 0.0 -> 291
% WARNING : Different basekv values on line 98-93, branch flow stat model using max current model : from_basekv=115.0 to_basekv=161.0
% INFO : Updated Thermal Rating: on transformer 98-93 : Rate B, Rate C , 0.0, 0.0 -> 1371
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 98-105 : 98 , 89
% INFO : Updated Thermal Rating: on line 98-105 : Rate B, Rate C , 0.0, 0.0 -> 90
% INFO : Updated Thermal Rating: on line 100-104 : Rate B, Rate C , 0.0, 0.0 -> 107
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 103-123 : 195 , 37
% INFO : Updated Thermal Rating: on line 103-123 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 38
% WARNING : Different basekv values on line 103-124, branch flow stat model using max current model : from_basekv=161.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 103-124 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 1757
% WARNING : Different basekv values on line 103-125, branch flow stat model using max current model : from_basekv=161.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 103-125 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 148
% WARNING : Different basekv values on line 104-34, branch flow stat model using max current model : from_basekv=115.0 to_basekv=161.0
% INFO : Updated Thermal Rating: on transformer 104-34 : Rate B, Rate C , 0.0, 0.0 -> 457
% WARNING : Missing data for branch flow stat model on line 105-38 using max current model : from_basekv=115.0 to_basekv=161.0 r=0.0 x=0.116
% INFO : Updated Thermal Rating: on transformer 105-38 : Rate B, Rate C , 0.0, 0.0 -> 253
% INFO : Updated Thermal Rating: on line 106-107 : Rate A, Rate B, Rate C , 269.0, 0.0, 0.0 -> 171
% INFO : Updated Thermal Rating: on line 107-122 : Rate A, Rate B, Rate C , 366.0, 0.0, 0.0 -> 210
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 109-119 : 626 , 505
% INFO : Updated Thermal Rating: on line 109-119 : Rate A, Rate B, Rate C , 3450.0, 0.0, 0.0 -> 506
% INFO : Updated Thermal Rating: on line 109-124 : Rate A, Rate B, Rate C , 3616.0, 0.0, 0.0 -> 671
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 109-125 : 602 , 470
% INFO : Updated Thermal Rating: on line 109-125 : Rate A, Rate B, Rate C , 3450.0, 0.0, 0.0 -> 471
% INFO : Updated Thermal Rating: on line 110-111 : Rate B, Rate C , 0.0, 0.0 -> 200
% WARNING : Missing data for branch flow stat model on line 110-112 using max current model : from_basekv=161.0 to_basekv=345.0 r=0.0 x=0.0185
% INFO : Updated Thermal Rating: on transformer 110-112 : Rate B, Rate C , 0.0, 0.0 -> 1586
% WARNING : Missing data for branch flow stat model on line 110-114 using max current model : from_basekv=161.0 to_basekv=14.0 r=0.0 x=0.0768
% INFO : Updated Thermal Rating: on transformer 110-114 : Rate B, Rate C , 0.0, 0.0 -> 382
% INFO : Updated Thermal Rating: on line 110-134 : Rate A, Rate B, Rate C , 520.0, 0.0, 0.0 -> 268
% INFO : Updated Thermal Rating: on line 110-141 : Rate A, Rate B, Rate C , 264.0, 0.0, 0.0 -> 171
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 111-115 : 196 , 128
% INFO : Updated Thermal Rating: on line 111-115 : Rate A, Rate B, Rate C , 337.0, 0.0, 0.0 -> 129
% INFO : Updated Thermal Rating: on line 112-120 : Rate A, Rate B, Rate C , 3450.0, 0.0, 0.0 -> 601
% WARNING : Missing data for branch flow stat model on line 112-121 using max current model : from_basekv=345.0 to_basekv=24.0 r=0.0 x=0.019
% INFO : Updated Thermal Rating: on transformer 112-121 : Rate B, Rate C , 0.0, 0.0 -> 1544
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 113-132 : 239 , 99
% INFO : Updated Thermal Rating: on line 113-132 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 100
% INFO : Updated Thermal Rating: on line 113-134 : Rate A, Rate B, Rate C , 520.0, 0.0, 0.0 -> 284
% INFO : Updated Thermal Rating: on line 115-117 : Rate A, Rate B, Rate C , 1030.0, 0.0, 0.0 -> 270
% INFO : Updated Thermal Rating: on line 116-117 : Rate A, Rate B, Rate C , 520.0, 0.0, 0.0 -> 271
% WARNING : Missing data for branch flow stat model on line 116-119 using max current model : from_basekv=161.0 to_basekv=345.0 r=0.0 x=0.009
% INFO : Updated Thermal Rating: on transformer 116-119 : Rate B, Rate C , 0.0, 0.0 -> 3260
% INFO : Updated Thermal Rating: on line 116-147 : Rate A, Rate B, Rate C , 520.0, 0.0, 0.0 -> 271
% INFO : Updated Thermal Rating: on line 117-147 : Rate A, Rate B, Rate C , 520.0, 0.0, 0.0 -> 268
% WARNING : Different basekv values on line 120-14, branch flow stat model using max current model : from_basekv=345.0 to_basekv=161.0
% INFO : Updated Thermal Rating: on transformer 120-14 : Rate B, Rate C , 0.0, 0.0 -> 1561
% INFO : Updated Thermal Rating: on line 120-128 : Rate A, Rate B, Rate C , 2474.0, 0.0, 0.0 -> 717
% INFO : Updated Thermal Rating: on line 120-129 : Rate A, Rate B, Rate C , 2474.0, 0.0, 0.0 -> 715
% INFO : Updated Thermal Rating: on line 122-123 : Rate A, Rate B, Rate C , 349.0, 0.0, 0.0 -> 210
% WARNING : Different basekv values on line 123-125, branch flow stat model using max current model : from_basekv=161.0 to_basekv=345.0
% INFO : Updated Thermal Rating: on transformer 123-125 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 119
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 124-125 : 750 , 184
% INFO : Updated Thermal Rating: on line 124-125 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 185
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 124-126 : 757 , 35
% INFO : Updated Thermal Rating: on line 124-126 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 36
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 125-126 : 1068 , 49
% INFO : Updated Thermal Rating: on line 125-126 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 50
% WARNING : Updated Thermal Rating Stat Model was larger than UB Model: on 126-127 : 575 , 41
% INFO : Updated Thermal Rating: on line 126-127 : Rate A, Rate B, Rate C , 9900.0, 0.0, 0.0 -> 42
% WARNING : Different basekv values on line 128-72, branch flow stat model using max current model : from_basekv=345.0 to_basekv=161.0
% INFO : Updated Thermal Rating: on transformer 128-72 : Rate B, Rate C , 0.0, 0.0 -> 1630
% WARNING : Different basekv values on line 129-132, branch flow stat model using max current model : from_basekv=345.0 to_basekv=161.0
% INFO : Updated Thermal Rating: on transformer 129-132 : Rate B, Rate C , 0.0, 0.0 -> 1482
% WARNING : Missing data for branch flow stat model on line 133-134 using max current model : from_basekv=69.0 to_basekv=161.0 r=0.0 x=0.041
% INFO : Updated Thermal Rating: on transformer 133-134 : Rate B, Rate C , 0.0, 0.0 -> 716
% INFO : Updated Thermal Rating: on line 133-135 : Rate B, Rate C , 0.0, 0.0 -> 65