Datasets:
File size: 255,642 Bytes
05346a0 | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 |
New generation started at 2026-01-16 15:03:28
Caught an exception at scenario 135 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 162 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 204 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 171 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 228 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 154 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 213 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 285 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 164 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 73 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 214 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 229 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 145 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 101 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 445 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 317 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 146 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 165 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 215 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 317 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 365 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 147 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 156 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 421 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 119 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 231 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 120 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 216 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 183 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 232 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 233 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 471 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 158 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 240 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 104 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 256 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 76 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 289 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 159 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 76 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 105 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 150 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 424 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 496 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 328 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 160 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 188 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 76 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 32 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 68 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 201 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 352 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 76 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 161 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 106 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 352 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 76 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 123 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 76 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 132 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 186 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 152 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 107 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 177 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 426 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 87 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 226 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 187 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 178 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 322 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 179 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 474 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 338 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 226 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 70 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 315 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 98 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 363 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 483 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 53 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 202 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 203 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 192 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 832 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 696 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 705 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 832 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 705 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 520 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 705 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 655 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 946 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 705 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 705 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 705 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 700 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 706 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 725 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 613 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 728 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 957 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 957 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 885 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 997 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 708 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 766 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 957 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 766 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 957 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 709 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 766 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 957 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 766 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 957 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 895 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 727 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 766 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 957 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 791 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 887 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 766 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 957 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 766 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 766 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 665 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 766 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 766 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 766 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 766 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 766 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 766 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 766 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 846 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1108 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 1220 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1073 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1091 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1073 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1341 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1073 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1373 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1253 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1073 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1073 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1084 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1073 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1382 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1278 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1073 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1084 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1084 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1084 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1013 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1084 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1013 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1084 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1084 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1084 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1084 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1084 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1257 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1084 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1042 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1105 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1257 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1498 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1387 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1243 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1696 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 1546 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1993 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1994 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1584 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1891 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1994 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1684 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 1685 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1988 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 1891 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1891 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1995 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1640 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1877 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1891 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1891 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1798 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1669 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1838 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1624 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1891 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1911 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1891 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1652 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1535 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1670 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1891 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1670 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1652 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1670 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1652 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1670 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 1670 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2063 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2018 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2372 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2063 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2027 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2027 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2063 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2063 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2027 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2110 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2011 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2020 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2111 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2013 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2352 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2186 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2186 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2186 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2186 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2354 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2186 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2299 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2211 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2186 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2186 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2033 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2186 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2186 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2186 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2186 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2186 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2186 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2186 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2186 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2864 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2537 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2984 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2537 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2896 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2984 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2537 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2984 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2537 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2904 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2865 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2984 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2537 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2984 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2537 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2984 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2537 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2984 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2818 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2537 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2929 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2746 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2984 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2953 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2537 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2984 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2746 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2537 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2537 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2716 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2985 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2716 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2716 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2716 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2716 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2569 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2927 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2727 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2592 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2661 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2879 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 2727 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3145 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3382 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3414 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3012 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3446 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3382 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3120 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3382 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3392 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3078 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3425 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3331 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3267 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3331 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3331 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3331 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3026 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3331 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3331 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3331 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3331 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3134 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3976 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3729 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3745 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3723 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 3715 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3683 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3771 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3740 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3725 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 3740 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3765 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 3595 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3773 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3933 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3766 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3560 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3774 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 3524 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3719 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3775 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3652 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3743 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3571 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 3758 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4268 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4300 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4436 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4269 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4484 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4452 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4404 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4492 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4460 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4252 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4453 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4109 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4461 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4181 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4485 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4189 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4293 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4181 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4462 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4454 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4429 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4486 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4181 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4463 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4438 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4325 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4349 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4494 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4455 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4181 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4285 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4430 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4487 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4214 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4464 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4181 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4456 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4406 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4349 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4374 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4137 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4488 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4181 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4457 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4375 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4406 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4181 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4489 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4084 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4458 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4181 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4406 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4181 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4084 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4432 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4459 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4406 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4181 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4175 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4433 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4406 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4181 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4022 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4491 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4407 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4181 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4175 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4434 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4424 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4320 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4480 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4181 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4175 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4181 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4265 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4320 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4435 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4481 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4181 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4320 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4241 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4175 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4401 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4482 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4320 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4320 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4402 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4483 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4320 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4403 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4267 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4320 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4320 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4124 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4211 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4427 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4184 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4339 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4185 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4322 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4186 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4509 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4563 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4545 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4518 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4536 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4680 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4736 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4546 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4537 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4519 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4760 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4728 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4564 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4510 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4662 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4565 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4671 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4538 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4547 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4511 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4566 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4654 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4904 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4573 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4705 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4539 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4512 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4953 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4929 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4609 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4567 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4921 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4574 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4706 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4977 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4540 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4954 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4730 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4513 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4731 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4568 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4541 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4673 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4874 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4549 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4754 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4842 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4514 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4569 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4946 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4739 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4930 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4542 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4647 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4593 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4674 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4515 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4602 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4923 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4843 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4543 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4947 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4570 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4708 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4924 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4516 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4907 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4571 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4708 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4544 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4948 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4733 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4925 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4708 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4558 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4788 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4517 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4980 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4708 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4558 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4844 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4949 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4980 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4708 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4734 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4740 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4892 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4595 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4980 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4708 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4950 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4980 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4558 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4708 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4757 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4980 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4650 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4708 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4758 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4980 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4917 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4677 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4708 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4651 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4506 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4894 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4980 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4708 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4507 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4623 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4980 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4918 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4708 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4508 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4980 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4708 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4934 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4623 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4698 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4708 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4980 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4598 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4783 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4642 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4708 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4980 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4783 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4708 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4980 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4980 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4783 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4709 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4643 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4580 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4980 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4700 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4783 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4871 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4625 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4783 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4764 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4562 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4783 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4783 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4783 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4783 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4703 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 4533 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 4534 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5036 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5000 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5009 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5171 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5244 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5108 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5090 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5144 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5196 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5117 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5228 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5252 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5276 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5284 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5364 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5300 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5340 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5308 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5388 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5091 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5172 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5420 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5037 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5332 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5145 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5444 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5277 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5118 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5412 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5082 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5468 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5253 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5476 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5229 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5136 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5285 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5380 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5341 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5452 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5421 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5309 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5092 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5173 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5028 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5365 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5230 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5389 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5333 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5413 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5445 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5301 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5278 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5038 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5254 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5119 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5469 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5477 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5221 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5422 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5083 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5246 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5286 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5325 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5310 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5493 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5231 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5093 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5446 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5279 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5366 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5414 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5334 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5302 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5390 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5247 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5470 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5255 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5222 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5397 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5478 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5120 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5084 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5437 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5325 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5248 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5494 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5280 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5415 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5335 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5447 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5056 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5311 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5479 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5471 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5256 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5094 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5085 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5121 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5367 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5199 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5110 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5138 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5056 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5495 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5249 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5095 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5448 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5336 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5175 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5281 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5430 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5416 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5472 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5257 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5200 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5111 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5122 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5496 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5086 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5139 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5337 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5233 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5417 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5250 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5473 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5148 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5282 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5392 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5304 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5449 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5258 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5112 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5497 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5140 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5439 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5087 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5418 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5251 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5013 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5474 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5215 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5283 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5393 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5450 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5338 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5113 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5305 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5498 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5166 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5419 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5475 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5057 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5088 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5440 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5451 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5306 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5499 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5338 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5114 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5141 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5296 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5216 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5338 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5089 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5441 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5032 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5240 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5307 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5115 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5033 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5290 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5240 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5142 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5005 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5116 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5329 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5168 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5034 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5409 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5143 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5339 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5241 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5465 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5059 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5330 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5241 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5443 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5274 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5466 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5453 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5331 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5275 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5467 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5223 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5312 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5387 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5242 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5411 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5313 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5224 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5355 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5225 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5455 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5008 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5226 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5062 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5455 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5227 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5124 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5509 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5518 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5527 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5500 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5554 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5662 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5608 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5671 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5696 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5776 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5528 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5635 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5501 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5800 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5688 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5555 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5824 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5848 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5663 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5609 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5856 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5832 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5689 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5502 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5801 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5880 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5777 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5529 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5636 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5556 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5664 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5825 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5872 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5610 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5582 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5833 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5857 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5880 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5503 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5690 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5802 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5826 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5713 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5721 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5530 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5778 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5520 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5637 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5557 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5538 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5665 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5611 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5583 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5889 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5858 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5803 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5504 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5722 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5850 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5834 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5827 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5531 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5691 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5714 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5737 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5793 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5682 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5558 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5859 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5521 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5666 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5993 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5638 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5715 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5804 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5612 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5692 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5828 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5851 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5881 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5532 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5505 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5667 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5522 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5860 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5612 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5805 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5716 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5639 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5683 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5829 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5930 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5693 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5612 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5668 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5882 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5506 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5906 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5852 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5938 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5533 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5523 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5612 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5717 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5585 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5640 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5830 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5602 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5674 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5883 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5669 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5612 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5694 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5524 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5507 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5795 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5560 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5718 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5831 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5612 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5811 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5641 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5807 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5695 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5525 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5719 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5534 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5811 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5642 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5854 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5612 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5772 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5526 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5577 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5603 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5788 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5773 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5855 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5613 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5797 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5550 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5562 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5604 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5551 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5765 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5686 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5798 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5614 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5877 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5687 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5552 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5886 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5799 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5774 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5659 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5989 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5632 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5596 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5553 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5775 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5750 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5660 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5742 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5990 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5616 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5678 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5879 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5661 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5911 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5991 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5634 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 5951 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5903 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5983 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5967 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 5726 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6018 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6045 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6108 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6081 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6236 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6046 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6212 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6108 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6188 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6244 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6348 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6268 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6324 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6108 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6372 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6213 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6237 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6245 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6047 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6404 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6349 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6127 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6300 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6108 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6269 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6325 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6238 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6405 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6100 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6452 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6373 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6108 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6356 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6293 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6452 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6181 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6350 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6270 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6108 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6261 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6239 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6374 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6406 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6271 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6452 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6108 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6381 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6351 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6294 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6407 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6240 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6108 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6452 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6021 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6375 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6357 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6262 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6317 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6272 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6452 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6108 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6352 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6241 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6278 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6129 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6376 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6263 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6452 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6108 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6318 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6102 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6022 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6398 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6452 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6242 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6108 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6130 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6377 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6039 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6452 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6264 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6108 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6075 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6023 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6378 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6383 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6399 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6243 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6183 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6452 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6050 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6108 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6431 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6265 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6354 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6051 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6076 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6108 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6452 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6104 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6320 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6108 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6266 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6452 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6040 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6208 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6105 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6297 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6086 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6267 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6321 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6095 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6249 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6185 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6298 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6086 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6149 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6322 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6096 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6345 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6086 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6186 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6346 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6210 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6402 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6042 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6434 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6149 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6187 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6290 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6347 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6214 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6403 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6211 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6370 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6042 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6291 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6159 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6455 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6042 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6371 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6235 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6061 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6042 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6080 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6178 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6070 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6008 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6042 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6098 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6216 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6017 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6042 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6483 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6043 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6071 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6217 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6044 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6572 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6599 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6617 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6696 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6554 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6617 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6510 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6936 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6840 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6784 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6872 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6617 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6627 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6600 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6654 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6617 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6574 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6565 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6601 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6601 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6601 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6778 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6601 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6567 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6619 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6619 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6875 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6585 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6619 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6619 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6619 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6765 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6542 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6668 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6542 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6838 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6595 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6621 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6542 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6822 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6534 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6870 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6542 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6838 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6622 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 6743 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6727 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6542 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6542 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6542 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6647 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6783 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6624 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6625 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 6756 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6649 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6758 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 6734 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7117 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7090 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7228 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7171 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7252 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7204 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7220 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7276 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7332 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7117 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7308 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7284 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7364 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7144 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7001 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7221 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7253 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7340 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7037 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7229 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7285 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7001 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7277 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7197 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7365 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7172 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7341 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7333 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7309 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7001 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7145 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7254 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7198 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7222 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7001 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7230 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7334 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7366 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7310 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7001 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7011 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7255 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7199 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7223 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7231 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7011 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7001 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7367 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7256 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7311 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7119 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7335 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7224 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7011 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7001 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7287 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7232 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7200 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7279 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7001 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7257 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7011 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7422 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7030 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7201 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7336 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7001 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7011 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7258 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7470 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7001 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7280 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7359 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7011 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7202 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7247 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7337 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7001 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7011 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7281 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7263 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7360 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7226 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7248 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7001 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7011 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7282 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7121 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7313 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7338 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7203 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7011 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7361 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7249 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7001 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7283 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7227 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7011 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7339 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7001 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7384 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7011 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7193 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7149 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7362 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7140 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7250 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7329 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7001 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7059 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7011 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7363 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7235 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7330 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7194 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7251 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7033 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7011 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7141 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7449 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7195 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7011 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7087 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7274 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7142 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7306 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7123 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7386 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7034 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7307 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7482 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7035 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7062 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7116 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7170 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7005 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7116 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7184 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7186 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7527 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7609 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7573 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7969 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7993 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7646 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7825 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7738 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7611 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7754 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7978 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7722 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7539 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7738 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7739 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7787 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7550 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7924 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7532 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7514 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7805 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7604 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7845 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7658 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7668 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7658 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7552 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 7658 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7743 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 7598 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 7983 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8135 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8144 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8436 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8136 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8145 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8436 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8389 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8381 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8164 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8164 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8246 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8057 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8164 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8367 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8121 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8086 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8139 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8345 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 8176 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8140 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8250 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8378 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8106 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8314 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8106 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8008 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8379 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8475 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8475 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8608 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8608 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8688 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8608 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8888 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 8635 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8760 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8608 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8960 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8608 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8960 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8833 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8960 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8608 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8608 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8960 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8608 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8960 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8881 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8778 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 8608 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8608 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8960 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8637 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8608 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8891 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8608 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8584 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8608 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8608 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8630 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8845 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 8765 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8774 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8524 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8677 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8791 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8935 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8652 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8999 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 8956 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9000 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9284 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9340 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9268 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9364 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9055 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9309 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9484 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9437 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9065 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9164 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9119 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9286 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9310 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9351 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9327 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9486 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9231 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9479 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9327 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9120 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9003 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9487 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9327 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9288 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9311 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9327 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9304 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9336 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9304 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9327 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9296 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9327 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9369 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9304 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9296 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9327 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9384 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9327 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9257 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9327 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9297 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9327 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9338 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9327 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9490 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9327 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9327 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9327 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9363 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9386 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9283 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9327 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9386 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9451 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9327 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9152 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9386 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9328 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9626 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9824 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9928 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9626 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9912 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9768 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9519 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9848 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9777 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9626 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9913 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9737 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9905 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9761 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9753 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9873 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9985 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9672 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9547 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9889 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9906 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9897 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9833 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9849 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9874 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9930 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9915 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9930 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9882 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9547 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9916 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9530 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9882 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9531 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9882 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9548 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9882 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9876 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9707 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9558 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9882 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9548 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9971 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9877 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9995 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9882 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9532 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9964 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9548 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9882 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9918 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9548 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9882 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9924 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9733 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9882 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9924 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9882 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9853 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9901 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9879 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9966 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9883 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9894 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9911 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9998 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9884 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9895 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9594 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9967 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9934 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9942 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9678 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9903 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9967 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9517 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9967 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9885 in run_opf function: Error running OPF: OPF did not converge: LOCALLY_INFEASIBLE
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9967 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9951 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9967 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9886 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9951 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9868 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9967 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9887 in run_opf function: Error running OPF: OPF did not converge: ITERATION_LIMIT
Caught an exception at scenario 9967 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9967 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9967 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9967 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9967 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9967 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9967 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9967 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
Caught an exception at scenario 9543 when solving in run_pf function: Error running PF: PF did not converge: False, fast=True
|