Skip to content

blanket_library

This library contains routines that can be shared by the blanket modules used in PROCESS.

BlanketLibrary

Source code in process/models/blankets/blanket_library.py
  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
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
class BlanketLibrary:
    def __init__(self, fw):
        self.outfile = constants.NOUT

        self.fw = fw

    def component_volumes(self):
        """Calculate the blanket, shield, vacuum vessel and cryostat volumes

        Calculate the blanket, shield, vacuum vessel and cryostat volumes
        """
        # N.B. icomponent is a switch used to specify selected component: blanket=0, shield=1, vacuum vessel=2
        # Replaced separate subroutines for blnkt, shld and vv with fuction/subroutine with icomponent switch.

        # Calculate half-height
        # Blanket
        blanket_library.dz_blkt_half = self.component_half_height(icomponent=0)

        # D-shaped blanket and shield
        if physics_variables.itart == 1 or fwbs_variables.i_fw_blkt_vv_shape == 1:
            self.dshaped_component()

        # Elliptical blanket and shield
        else:
            self.elliptical_component()

        # Apply coverage factors to volumes and surface areas
        self.apply_coverage_factors()

    def component_half_height(self, icomponent: int):
        """Calculate the blanket, shield or vacuum vessel half-height
        Based on blanket_half_height, shield_half_height, vv_half_height

        Parameters
        ----------
        icomponent: int :

        """
        # Calculate component internal lower half-height (m)
        # Blanket
        if icomponent == 0:
            hbot = (
                build_variables.z_plasma_xpoint_lower
                + build_variables.dz_xpoint_divertor
                + divertor_variables.dz_divertor
                - build_variables.dz_blkt_upper
            )

        # Calculate component internal upper half-height (m)
        # If a double null machine then symmetric
        if divertor_variables.n_divertors == 2:
            htop = hbot
        else:
            # Blanket
            htop = build_variables.z_plasma_xpoint_upper + 0.5 * (
                build_variables.dr_fw_plasma_gap_inboard
                + build_variables.dr_fw_plasma_gap_outboard
                + build_variables.dr_fw_inboard
                + build_variables.dr_fw_outboard
            )

        # Average of top and bottom (m)
        return 0.5 * (htop + hbot)

    def dshaped_component(self):
        """Calculate component surface area and volume using dshaped scheme
        Based on dshaped_blanket, dshaped_shield, dshaped_vv
        """
        # Calculate major radius to outer edge of inboard ...
        # ... section (m)
        r1 = build_variables.r_shld_inboard_inner

        # ... blanket (m)

        r1 = r1 + build_variables.dr_shld_inboard + build_variables.dr_blkt_inboard

        # Horizontal distance between inside edges (m)
        # i.e. outer radius of inboard part to inner radius of outboard part
        # Blanket
        r2 = (
            build_variables.dr_fw_inboard
            + build_variables.dr_fw_plasma_gap_inboard
            + 2.0 * physics_variables.rminor
            + build_variables.dr_fw_plasma_gap_outboard
            + build_variables.dr_fw_outboard
        )

        (
            build_variables.a_blkt_inboard_surface,
            build_variables.a_blkt_outboard_surface,
            build_variables.a_blkt_total_surface,
        ) = dshellarea(r1, r2, blanket_library.dz_blkt_half)

        (
            fwbs_variables.vol_blkt_inboard,
            fwbs_variables.vol_blkt_outboard,
            fwbs_variables.vol_blkt_total,
        ) = dshellvol(
            r1,
            r2,
            blanket_library.dz_blkt_half,
            build_variables.dr_blkt_inboard,
            build_variables.dr_blkt_outboard,
            build_variables.dz_blkt_upper,
        )

    def elliptical_component(self):
        """Calculate component surface area and volume using elliptical scheme
        Based on elliptical_blanket, elliptical_shield, elliptical_vv
        """
        # Major radius to centre of inboard and outboard ellipses (m)
        # (coincident in radius with top of plasma)
        r1 = (
            physics_variables.rmajor
            - physics_variables.rminor * physics_variables.triang
        )

        # Calculate distance between r1 and outer edge of inboard ...
        # ... section (m)
        r2 = r1 - build_variables.r_shld_inboard_inner

        r2 = r2 - build_variables.dr_shld_inboard - build_variables.dr_blkt_inboard

        # Calculate distance between r1 and inner edge of outboard ...
        # ... section (m)
        r3 = build_variables.r_shld_outboard_outer - r1

        r3 = r3 - build_variables.dr_shld_outboard - build_variables.dr_blkt_outboard

        # Calculate surface area, assuming 100% coverage

        (
            build_variables.a_blkt_inboard_surface,
            build_variables.a_blkt_outboard_surface,
            build_variables.a_blkt_total_surface,
        ) = eshellarea(r1, r2, r3, blanket_library.dz_blkt_half)

        # Calculate volumes, assuming 100% coverage

        (
            fwbs_variables.vol_blkt_inboard,
            fwbs_variables.vol_blkt_outboard,
            fwbs_variables.vol_blkt_total,
        ) = eshellvol(
            r1,
            r2,
            r3,
            blanket_library.dz_blkt_half,
            build_variables.dr_blkt_inboard,
            build_variables.dr_blkt_outboard,
            build_variables.dz_blkt_upper,
        )

    def apply_coverage_factors(self):
        """Apply coverage factors to volumes

        Apply coverage factors to volumes
        """
        # Apply blanket coverage factors
        if divertor_variables.n_divertors == 2:
            # double null configuration
            build_variables.a_blkt_outboard_surface = (
                build_variables.a_blkt_total_surface
                * (
                    1.0
                    - 2.0 * fwbs_variables.f_ster_div_single
                    - fwbs_variables.f_a_fw_outboard_hcd
                )
                - build_variables.a_blkt_inboard_surface
            )
        else:
            # single null configuration
            build_variables.a_blkt_outboard_surface = (
                build_variables.a_blkt_total_surface
                * (
                    1.0
                    - fwbs_variables.f_ster_div_single
                    - fwbs_variables.f_a_fw_outboard_hcd
                )
                - build_variables.a_blkt_inboard_surface
            )

        build_variables.a_blkt_total_surface = (
            build_variables.a_blkt_inboard_surface
            + build_variables.a_blkt_outboard_surface
        )

        fwbs_variables.vol_blkt_outboard = (
            fwbs_variables.vol_blkt_total
            * (
                1.0
                - fwbs_variables.f_ster_div_single
                - fwbs_variables.f_a_fw_outboard_hcd
            )
            - fwbs_variables.vol_blkt_inboard
        )
        fwbs_variables.vol_blkt_total = (
            fwbs_variables.vol_blkt_inboard + fwbs_variables.vol_blkt_outboard
        )

    def primary_coolant_properties(self, output: bool):
        """Calculates the fluid properties of the Primary Coolant in the FW and BZ.
        Uses middle value of input and output temperatures of coolant.
        Curently have H20 and He options.

        References: see pumppower function description

        Parameters
        ----------
        output: bool

        """

        # Make sure that, if the inputs for the FW and blanket inputs are different,
        # the i_fw_blkt_shared_coolant variable is appropriately set for separate coolants
        if (
            fwbs_variables.i_fw_coolant_type == "Helium"
            and fwbs_variables.i_blkt_coolant_type == 2
        ):
            fwbs_variables.i_fw_blkt_shared_coolant = 1
        if (
            fwbs_variables.i_fw_coolant_type == "Water"
            and fwbs_variables.i_blkt_coolant_type == 1
        ):
            fwbs_variables.i_fw_blkt_shared_coolant = 1

        # If FW and BB have same coolant...
        if fwbs_variables.i_fw_blkt_shared_coolant == 0:
            # Use FW inlet temp and BB outlet temp
            mid_temp = (
                fwbs_variables.temp_fw_coolant_in + fwbs_variables.temp_blkt_coolant_out
            ) * 0.5
            # FW/BB
            fw_bb_fluid_properties = FluidProperties.of(
                fwbs_variables.i_fw_coolant_type,
                temperature=mid_temp,
                pressure=fwbs_variables.pres_fw_coolant,
            )
            fwbs_variables.den_fw_coolant = fw_bb_fluid_properties.density
            fwbs_variables.cp_fw = fw_bb_fluid_properties.specific_heat_const_p
            fwbs_variables.cv_fw = fw_bb_fluid_properties.specific_heat_const_v
            fwbs_variables.visc_fw_coolant = fw_bb_fluid_properties.viscosity

            fwbs_variables.den_blkt_coolant = fwbs_variables.den_fw_coolant
            fwbs_variables.visc_blkt_coolant = fwbs_variables.visc_fw_coolant
            fwbs_variables.cp_bl = fwbs_variables.cp_fw
            fwbs_variables.cv_bl = fwbs_variables.cv_fw

        # If FW and BB have different coolants...
        else:
            # FW
            mid_temp_fw = (
                fwbs_variables.temp_fw_coolant_in + fwbs_variables.temp_fw_coolant_out
            ) * 0.5
            fw_fluid_properties = FluidProperties.of(
                fwbs_variables.i_fw_coolant_type,
                temperature=mid_temp_fw,
                pressure=fwbs_variables.pres_fw_coolant,
            )
            fwbs_variables.den_fw_coolant = fw_fluid_properties.density
            fwbs_variables.cp_fw = fw_fluid_properties.specific_heat_const_p
            fwbs_variables.cv_fw = fw_fluid_properties.specific_heat_const_v
            fwbs_variables.visc_fw_coolant = fw_fluid_properties.viscosity

            # BB
            mid_temp_bl = (
                fwbs_variables.temp_blkt_coolant_in
                + fwbs_variables.temp_blkt_coolant_out
            ) * 0.5
            bb_fluid_properties = FluidProperties.of(
                "Helium" if fwbs_variables.i_blkt_coolant_type == 1 else "Water",
                temperature=mid_temp_bl,
                pressure=fwbs_variables.pres_blkt_coolant,
            )
            fwbs_variables.den_blkt_coolant = bb_fluid_properties.density
            fwbs_variables.cp_bl = bb_fluid_properties.specific_heat_const_p
            fwbs_variables.cv_bl = bb_fluid_properties.specific_heat_const_v
            fwbs_variables.visc_blkt_coolant = bb_fluid_properties.viscosity

        if (
            fwbs_variables.den_fw_coolant > 1e9
            or fwbs_variables.den_fw_coolant <= 0
            or np.isnan(fwbs_variables.den_fw_coolant)
        ):
            raise ProcessValueError(
                f"Error in primary_coolant_properties. {fwbs_variables.den_fw_coolant = }"
            )
        if (
            fwbs_variables.den_blkt_coolant > 1e9
            or fwbs_variables.den_blkt_coolant <= 0
            or np.isnan(fwbs_variables.den_blkt_coolant)
        ):
            raise ProcessValueError(
                f"Error in primary_coolant_properties. {fwbs_variables.den_blkt_coolant = }"
            )

        if output:
            po.oheadr(
                self.outfile, "First wall and blanket : (Primary) Coolant Properties"
            )
            po.ocmmnt(
                self.outfile,
                "Calculated using mid temp(s) of system (or systems if use different collant types).",
            )

            # FW (or FW/BB)
            if fwbs_variables.i_fw_blkt_shared_coolant == 1:
                po.osubhd(self.outfile, "First Wall :")

            po.ovarst(
                self.outfile,
                "Coolant type",
                "(i_fw_coolant_type)",
                f'"{fwbs_variables.i_fw_coolant_type}"',
            )
            po.ovarrf(
                self.outfile,
                "Density (kg m-3)",
                "(den_fw_coolant)",
                fwbs_variables.den_fw_coolant,
                "OP ",
            )
            po.ovarrf(
                self.outfile,
                "Viscosity (Pa s)",
                "(visc_fw_coolant)",
                fwbs_variables.visc_fw_coolant,
                "OP ",
            )

            po.ovarre(
                self.outfile,
                "Inlet Temperature (Celcius)",
                "(temp_fw_coolant_in)",
                fwbs_variables.temp_fw_coolant_in,
                "OP ",
            )

            if fwbs_variables.i_fw_blkt_shared_coolant == 0:
                po.ovarre(
                    self.outfile,
                    "Outlet Temperature (Celcius)",
                    "(temp_blkt_coolant_out)",
                    fwbs_variables.temp_blkt_coolant_out,
                    "OP ",
                )

            else:
                po.ovarre(
                    self.outfile,
                    "Outlet Temperature (Celcius)",
                    "(temp_fw_coolant_out)",
                    fwbs_variables.temp_fw_coolant_out,
                    "OP ",
                )

            # BB
            if fwbs_variables.i_fw_blkt_shared_coolant == 1:
                po.osubhd(self.outfile, "Breeding Blanket :")

                if fwbs_variables.i_blkt_coolant_type == 1:
                    po.ocmmnt(
                        self.outfile, "Coolant type (i_blkt_coolant_type=1), Helium"
                    )
                if fwbs_variables.i_blkt_coolant_type == 2:
                    po.ocmmnt(
                        self.outfile, "Coolant type (i_blkt_coolant_type=2), Water"
                    )
                po.ovarrf(
                    self.outfile,
                    "Density (kg m-3)",
                    "(den_blkt_coolant)",
                    fwbs_variables.den_blkt_coolant,
                    "OP ",
                )
                po.ovarrf(
                    self.outfile,
                    "Viscosity (Pa s)",
                    "(visc_blkt_coolant)",
                    fwbs_variables.visc_blkt_coolant,
                    "OP ",
                )

                po.ovarre(
                    self.outfile,
                    "Inlet Temperature (Celcius)",
                    "(temp_blkt_coolant_in)",
                    fwbs_variables.temp_blkt_coolant_in,
                    "OP ",
                )
                po.ovarre(
                    self.outfile,
                    "Outlet Temperature (Celcius)",
                    "(temp_blkt_coolant_out)",
                    fwbs_variables.temp_blkt_coolant_out,
                    "OP ",
                )

    def set_blanket_module_geometry(self):
        """Sets the geometry parameters for blanket modules, including coolant channel dimensions,
        module segmentation, and flow lengths, based on the current configuration and input variables.

        The method performs the following steps:
        - Determines inboard and outboard coolant channel radial lengths based on blanket type.
        - Segments the blanket modules poloidally and toroidally according to input segmentation settings.
        - Calculates the toroidal segment lengths for inboard and outboard blanket modules.
        - Computes the poloidal height of blanket modules.
        - For dual coolant blankets, calculates the minimum available space for liquid breeder pipes
          in radial, toroidal, and poloidal directions, and checks for geometric constraints.
        - Calculates total flow lengths for primary coolant channels, used in pressure drop calculations.

        Raises
        ------
        Error
            If the poloidal segment length is less than three times the minimum liquid breeder pipe width.
        """

        if fwbs_variables.i_blanket_type == 5:
            # Unless DCLL then we will use BZ
            blanket_library.len_blkt_inboard_coolant_channel_radial = (
                build_variables.blbuith
            )
            blanket_library.len_blkt_outboard_coolant_channel_radial = (
                build_variables.blbuoth
            )
        else:
            blanket_library.len_blkt_inboard_coolant_channel_radial = (
                0.8e0 * build_variables.dr_blkt_inboard
            )
            blanket_library.len_blkt_outboard_coolant_channel_radial = (
                0.8e0 * build_variables.dr_blkt_outboard
            )

        # Using the total perimeter of the machine, segment the outboard
        # blanket into nblktmodp*nblktmodt modules, all assumed to be the same size

        # If SMS blanket then do not have separate poloidal modules....
        # Should not need this as n_blkt_inboard_modules_poloidal is input but make sure here.
        if fwbs_variables.i_blkt_module_segmentation == 1:
            fwbs_variables.n_blkt_inboard_modules_poloidal = 1
            fwbs_variables.n_blkt_outboard_modules_poloidal = 1

        if physics_variables.itart == 1 or fwbs_variables.i_fw_blkt_vv_shape == 1:
            blanket_library.len_blkt_inboard_segment_poloidal = self.calculate_dshaped_inboard_blkt_segment_poloidal(
                dz_blkt_half=blanket_library.dz_blkt_half,
                n_blkt_inboard_modules_poloidal=fwbs_variables.n_blkt_inboard_modules_poloidal,
            )

            blanket_library.len_blkt_outboard_segment_poloidal = self.calculate_dshaped_outboard_blkt_segment_poloidal(
                n_blkt_outboard_modules_poloidal=fwbs_variables.n_blkt_outboard_modules_poloidal,
                dr_fw_plasma_gap_inboard=build_variables.dr_fw_plasma_gap_inboard,
                rminor=physics_variables.rminor,
                dr_fw_plasma_gap_outboard=build_variables.dr_fw_plasma_gap_outboard,
                dz_blkt_half=blanket_library.dz_blkt_half,
                n_divertors=divertor_variables.n_divertors,
                f_ster_div_single=fwbs_variables.f_ster_div_single,
            )
        else:
            blanket_library.len_blkt_inboard_segment_poloidal = self.calculate_elliptical_inboard_blkt_segment_poloidal(
                rmajor=physics_variables.rmajor,
                rminor=physics_variables.rminor,
                triang=physics_variables.triang,
                dr_fw_plasma_gap_inboard=build_variables.dr_fw_plasma_gap_inboard,
                dz_blkt_half=blanket_library.dz_blkt_half,
                n_blkt_inboard_modules_poloidal=fwbs_variables.n_blkt_inboard_modules_poloidal,
                n_divertors=divertor_variables.n_divertors,
                f_ster_div_single=fwbs_variables.f_ster_div_single,
            )

            blanket_library.len_blkt_outboard_segment_poloidal = self.calculate_elliptical_outboard_blkt_segment_poloidal(
                rmajor=physics_variables.rmajor,
                rminor=physics_variables.rminor,
                triang=physics_variables.triang,
                dz_blkt_half=blanket_library.dz_blkt_half,
                dr_fw_plasma_gap_outboard=build_variables.dr_fw_plasma_gap_outboard,
                n_blkt_outboard_modules_poloidal=fwbs_variables.n_blkt_outboard_modules_poloidal,
                n_divertors=divertor_variables.n_divertors,
                f_ster_div_single=fwbs_variables.f_ster_div_single,
            )

        # If liquid breeder or dual coolant blanket then calculate
        if fwbs_variables.i_blkt_dual_coolant > 0:
            # Use smallest space available to pipes for pipe sizes in pumping calculations (worst case)
            if fwbs_variables.i_blkt_inboard == 1:
                # Radial direction
                fwbs_variables.b_bz_liq = (
                    min(
                        (
                            blanket_library.len_blkt_inboard_coolant_channel_radial
                            * fwbs_variables.r_f_liq_ib
                        ),
                        (
                            blanket_library.len_blkt_outboard_coolant_channel_radial
                            * fwbs_variables.r_f_liq_ob
                        ),
                    )
                    / fwbs_variables.nopol
                )
                # Toroidal direction
                fwbs_variables.a_bz_liq = (
                    min(
                        (
                            blanket_library.len_blkt_inboard_segment_toroidal
                            * fwbs_variables.w_f_liq_ib
                        ),
                        (
                            blanket_library.len_blkt_outboard_segment_toroidal
                            * fwbs_variables.w_f_liq_ob
                        ),
                    )
                    / fwbs_variables.nopipes
                )
                # Poloidal
                if (
                    blanket_library.len_blkt_inboard_segment_poloidal
                    < (fwbs_variables.b_bz_liq * 3)
                ) or (
                    blanket_library.len_blkt_outboard_segment_poloidal
                    < (fwbs_variables.b_bz_liq * 3)
                ):
                    logger.error(
                        "Your blanket modules are too small for the Liquid Metal pipes"
                    )

            # Unless there is no IB blanket...
            else:
                # Radial direction
                fwbs_variables.b_bz_liq = (
                    blanket_library.len_blkt_outboard_coolant_channel_radial
                    * fwbs_variables.r_f_liq_ob
                ) / fwbs_variables.nopol
                # Toroidal direction
                fwbs_variables.a_bz_liq = (
                    blanket_library.len_blkt_outboard_segment_toroidal
                    * fwbs_variables.w_f_liq_ob
                ) / fwbs_variables.nopipes
                # Poloidal
                if blanket_library.len_blkt_outboard_segment_poloidal < (
                    fwbs_variables.b_bz_liq * 3
                ):
                    logger.error(
                        "Your blanket modules are too small for the Liquid Metal pipes"
                    )

        # Calculate total flow lengths, used for pressure drop calculation
        # Blanket primary coolant flow
        blanket_library.len_blkt_inboard_channel_total = (
            fwbs_variables.n_blkt_inboard_module_coolant_sections_radial
            * blanket_library.len_blkt_inboard_coolant_channel_radial
            + fwbs_variables.n_blkt_inboard_module_coolant_sections_poloidal
            * blanket_library.len_blkt_inboard_segment_poloidal
        )
        blanket_library.len_blkt_outboard_channel_total = (
            fwbs_variables.n_blkt_outboard_module_coolant_sections_radial
            * blanket_library.len_blkt_outboard_coolant_channel_radial
            + fwbs_variables.n_blkt_outboard_module_coolant_sections_poloidal
            * blanket_library.len_blkt_outboard_segment_poloidal
        )

    def thermo_hydraulic_model_pressure_drop_calculations(self, output: bool):
        """Function that calculates the pressure drops for the thermo-hydraulic model
        when i_p_coolant_pumping = 2.

        Within are calculations necessary for the deltap_tot function but not required
        for other calculations within the thermo-hydraulic model as then they are just
        included there.

        Returns the pressure drops as a list with the number of entries dependent upon
        the switches i_blkt_dual_coolant and i_blkt_inboard.

        Parameters
        ----------
        output: bool

        """
        npoltoti = 0
        npoltoto = 0
        npblkti_liq = 0
        npblkto_liq = 0

        # Blanket secondary coolant/breeder flow
        pollengi = blanket_library.len_blkt_inboard_segment_poloidal
        pollengo = blanket_library.len_blkt_outboard_segment_poloidal
        fwbs_variables.nopol = 2
        fwbs_variables.nopipes = 4
        bzfllengi_liq = (
            fwbs_variables.bzfllengi_n_rad_liq
            * blanket_library.len_blkt_inboard_coolant_channel_radial
            + fwbs_variables.bzfllengi_n_pol_liq
            * blanket_library.len_blkt_inboard_segment_poloidal
        )
        bzfllengo_liq = (
            fwbs_variables.bzfllengo_n_rad_liq
            * blanket_library.len_blkt_outboard_coolant_channel_radial
            + fwbs_variables.bzfllengo_n_pol_liq
            * blanket_library.len_blkt_outboard_segment_poloidal
        )

        # ======================================================================

        # Coolant channel bends

        # Number of angle turns in FW and blanket flow channels, n.b. these are the
        # same for CCFE HCPB and KIT DCLL. FW is also be the same for DCLL MMS ans SMS.

        N_FW_PIPE_90_DEG_BENDS = 2
        N_FW_PIPE_180_DEG_BENDS = 0

        # N.B. This is for BZ only, does not include MF/BSS.
        if fwbs_variables.i_blkt_dual_coolant in (1, 2):
            N_BLKT_PIPE_90_DEG_BENDS = 4
            N_BLKT_PIPE_180_DEG_BENDS = 1
            no90bz_liq = 2
            no180bz_liq = 1
        else:
            N_BLKT_PIPE_90_DEG_BENDS = 4
            N_BLKT_PIPE_180_DEG_BENDS = 1

        # ======================================================================

        # FW Pipe Flow and Velocity

        # Mass flow rate per FW coolant pipe (kg/s):
        blanket_library.mflow_fw_inboard_coolant_channel = (
            blanket_library.mflow_fw_inboard_coolant_total
            / blanket_library.n_fw_inboard_channels
        )
        blanket_library.mflow_fw_outboard_coolant_channel = (
            blanket_library.mflow_fw_outboard_coolant_total
            / blanket_library.n_fw_outboard_channels
        )

        # Coolant velocity in FW (m/s)
        vel_fw_inboard_coolant = self.flow_velocity(
            i_channel_shape=1,
            mass_flow_rate=blanket_library.mflow_fw_inboard_coolant_channel,
            flow_density=fwbs_variables.den_fw_coolant,
        )
        vel_fw_outboard_coolant = self.flow_velocity(
            i_channel_shape=1,
            mass_flow_rate=blanket_library.mflow_fw_outboard_coolant_channel,
            flow_density=fwbs_variables.den_fw_coolant,
        )

        # If the blanket is dual-coolant...
        if fwbs_variables.i_blkt_dual_coolant == 2:
            # Calc total num of pipes (in all inboard modules) from
            # coolant frac and channel dimensions
            # Assumes up/down flow, two 90 deg bends per length
            blanket_library.n_blkt_outboard_channels = (
                fwbs_variables.f_a_blkt_cooling_channels
                * fwbs_variables.vol_blkt_outboard
            ) / (
                np.pi
                * fwbs_variables.radius_fw_channel
                * fwbs_variables.radius_fw_channel
                * blanket_library.len_blkt_outboard_channel_total
            )
            npblkto_liq = (
                fwbs_variables.nopipes
                * fwbs_variables.n_blkt_outboard_modules_toroidal
                * fwbs_variables.n_blkt_outboard_modules_poloidal
            )

            # Mass flow rate per coolant pipe
            blanket_library.mfblktpo = (
                blanket_library.mflow_blkt_outboard_coolant
                / blanket_library.n_blkt_outboard_channels
            )
            mfblktpo_liq = blanket_library.mfblkto_liq / npblkto_liq
            # Coolant velocites in blanket (m/s)
            # Assume BZ structure has same channel width as FW
            blanket_library.vel_blkt_outboard_coolant = self.flow_velocity(
                i_channel_shape=1,
                mass_flow_rate=blanket_library.mfblktpo,
                flow_density=fwbs_variables.den_blkt_coolant,
            )
            velblkto_liq = self.flow_velocity(
                i_channel_shape=2,
                mass_flow_rate=mfblktpo_liq,
                flow_density=fwbs_variables.den_liq,
            )

            if fwbs_variables.i_blkt_inboard == 1:
                # Calc total num of pipes (in all inboard modules) from
                # coolant frac and channel dimensions
                # Assumes up/down flow, two 90 deg bends per length
                blanket_library.n_blkt_inboard_channels = (
                    fwbs_variables.f_a_blkt_cooling_channels
                    * fwbs_variables.vol_blkt_inboard
                ) / (
                    np.pi
                    * fwbs_variables.radius_fw_channel
                    * fwbs_variables.radius_fw_channel
                    * blanket_library.len_blkt_inboard_channel_total
                )
                # Have DEMO DCLL set here for now
                npblkti_liq = (
                    fwbs_variables.nopipes
                    * fwbs_variables.n_blkt_inboard_modules_toroidal
                    * fwbs_variables.n_blkt_inboard_modules_poloidal
                )

                # Mass flow rate per coolant pipe
                blanket_library.mfblktpi = (
                    blanket_library.mflow_blkt_inboard_coolant
                    / blanket_library.n_blkt_inboard_channels
                )
                blanket_library.mfblktpi_liq = blanket_library.mfblkti_liq / npblkti_liq

                # Coolant velocites in blanket (m/s)
                # Assume BZ structure has same channel width as FW
                blanket_library.vel_blkt_inboard_coolant = self.flow_velocity(
                    i_channel_shape=1,
                    mass_flow_rate=blanket_library.mfblktpi,
                    flow_density=fwbs_variables.den_blkt_coolant,
                )
                velblkti_liq = self.flow_velocity(
                    i_channel_shape=2,
                    mass_flow_rate=blanket_library.mfblktpi_liq,
                    flow_density=fwbs_variables.den_liq,
                )

        # If the blanket is single-coolant with liquid metal breeder...
        elif fwbs_variables.i_blkt_dual_coolant == 1:
            # Calc total num of pipes (in all inboard modules) from
            # coolant frac and channel dimensions
            # Assumes up/down flow, two 90 deg bends per length
            blanket_library.n_blkt_outboard_channels = (
                fwbs_variables.f_a_blkt_cooling_channels
                * fwbs_variables.vol_blkt_outboard
            ) / (
                np.pi
                * fwbs_variables.radius_fw_channel
                * fwbs_variables.radius_fw_channel
                * blanket_library.len_blkt_outboard_channel_total
            )
            npblkto_liq = (
                fwbs_variables.nopipes
                * fwbs_variables.n_blkt_outboard_modules_toroidal
                * fwbs_variables.n_blkt_outboard_modules_poloidal
            )

            # Mass flow rate per coolant pipe
            blanket_library.mfblktpo = (
                blanket_library.mflow_blkt_outboard_coolant
                / blanket_library.n_blkt_outboard_channels
            )

            # Coolant velocity in blanket (m/s)
            # Assume BZ structure has same channel width as FW
            blanket_library.vel_blkt_outboard_coolant = self.flow_velocity(
                i_channel_shape=1,
                mass_flow_rate=blanket_library.mfblktpo,
                flow_density=fwbs_variables.den_blkt_coolant,
            )

            # Get mass flow rate etc. for inboard blanket breeder flow for tritium extraction
            # Use the number of desired recirculations ([Aub2013]=10) and mass from dcll_masses
            # N.B. wht_liq is BZ mass, does not include manifold.
            blanket_library.mfblkto_liq = (
                fwbs_variables.n_liq_recirc * fwbs_variables.wht_liq_ob
            ) / (24 * 3600)
            blanket_library.mfblktpo_liq = blanket_library.mfblkto_liq / npblkto_liq
            velblkto_liq = self.flow_velocity(
                i_channel_shape=2,
                mass_flow_rate=blanket_library.mfblktpo_liq,
                flow_density=fwbs_variables.den_liq,
            )

            if fwbs_variables.i_blkt_inboard == 1:
                # Calc total num of pipes (in all inboard modules) from
                # coolant frac and channel dimensions
                # Assumes up/down flow, two 90 deg bends per length
                blanket_library.n_blkt_inboard_channels = (
                    fwbs_variables.f_a_blkt_cooling_channels
                    * fwbs_variables.vol_blkt_inboard
                ) / (
                    np.pi
                    * fwbs_variables.radius_fw_channel
                    * fwbs_variables.radius_fw_channel
                    * blanket_library.len_blkt_inboard_channel_total
                )
                # Have DEMO DCLL set here for now
                npblkti_liq = (
                    fwbs_variables.nopipes
                    * fwbs_variables.n_blkt_inboard_modules_toroidal
                    * fwbs_variables.n_blkt_inboard_modules_poloidal
                )

                # Mass flow rate per coolant pipe
                blanket_library.mfblktpi = (
                    blanket_library.mflow_blkt_inboard_coolant
                    / blanket_library.n_blkt_inboard_channels
                )

                # Coolant velocity in blanket (m/s)
                # Assume BZ structure has same channel width as FW
                blanket_library.vel_blkt_inboard_coolant = self.flow_velocity(
                    i_channel_shape=1,
                    mass_flow_rate=blanket_library.mfblktpi,
                    flow_density=fwbs_variables.den_blkt_coolant,
                )

                # Get mass flow rate etc. for inboard blanket breeder flow for tritium extraction
                # Use the number of desired recirculations ([Aub2013]=10) and mass from dcll_masses
                # N.B. wht_liq is BZ mass, does not include manifold.
                blanket_library.mfblkti_liq = (
                    fwbs_variables.n_liq_recirc * fwbs_variables.wht_liq_ib
                ) / (24 * 3600)
                blanket_library.mfblktpi_liq = blanket_library.mfblkti_liq / npblkti_liq
                velblkti_liq = self.flow_velocity(
                    i_channel_shape=2,
                    mass_flow_rate=blanket_library.mfblktpi_liq,
                    flow_density=fwbs_variables.den_liq,
                )

        # If the blanket is single-coolant with solid breeder...
        else:
            # Calculate total number of pipes (in all outboard modules) from coolant fraction and
            # channel dimensions (assumes up/down flow, two 90 deg bends per length)
            blanket_library.n_blkt_outboard_channels = (
                fwbs_variables.f_a_blkt_cooling_channels
                * fwbs_variables.vol_blkt_outboard
            ) / (
                np.pi
                * fwbs_variables.radius_fw_channel
                * fwbs_variables.radius_fw_channel
                * blanket_library.len_blkt_outboard_channel_total
            )

            # Mass flow rate per coolant pipe
            blanket_library.mfblktpo = (
                blanket_library.mflow_blkt_outboard_coolant
                / blanket_library.n_blkt_outboard_channels
            )

            # Coolant velocity in blanket (m/s)
            # Assume BZ structure has same channel width as FW
            blanket_library.vel_blkt_outboard_coolant = self.flow_velocity(
                i_channel_shape=1,
                mass_flow_rate=blanket_library.mfblktpo,
                flow_density=fwbs_variables.den_blkt_coolant,
            )

            if fwbs_variables.i_blkt_inboard == 1:
                # Calc total num of pipes (in all inboard modules) from
                # coolant frac and channel dimensions
                # Assumes up/down flow, two 90 deg bends per length
                blanket_library.n_blkt_inboard_channels = (
                    fwbs_variables.f_a_blkt_cooling_channels
                    * fwbs_variables.vol_blkt_inboard
                ) / (
                    np.pi
                    * fwbs_variables.radius_fw_channel
                    * fwbs_variables.radius_fw_channel
                    * blanket_library.len_blkt_inboard_channel_total
                )

                # Mass flow rate per coolant pipe
                blanket_library.mfblktpi = (
                    blanket_library.mflow_blkt_inboard_coolant
                    / blanket_library.n_blkt_inboard_channels
                )

                # Coolant velocity in blanket (m/s)
                # Assume BZ structure has same channel width as FW
                blanket_library.vel_blkt_inboard_coolant = self.flow_velocity(
                    i_channel_shape=1,
                    mass_flow_rate=blanket_library.mfblktpi,
                    flow_density=fwbs_variables.den_blkt_coolant,
                )

        # FW Presure Drops ###############

        (
            fwbs_variables.radius_blkt_channel_90_bend,
            fwbs_variables.radius_blkt_channel_180_bend,
        ) = self.calculate_pipe_bend_radius(i_ps=1)

        dpres_fw_inboard_coolant = self.total_pressure_drop(
            output,
            icoolpump=1,
            vel_coolant=vel_fw_inboard_coolant,
            len_pipe=fwbs_variables.len_fw_channel,
            n_pipe_90_deg_bends=N_FW_PIPE_90_DEG_BENDS,
            n_pipe_180_deg_bends=N_FW_PIPE_180_DEG_BENDS,
            den_coolant=fwbs_variables.den_fw_coolant,
            visc_coolant_dynamic=fwbs_variables.visc_fw_coolant,
            coolant_electrical_conductivity=0.0e0,
            pol_channel_length=pollengi,
            nopolchan=npoltoti,
            label="Inboard first wall",
        )

        dpres_fw_outboard_coolant = self.total_pressure_drop(
            output,
            icoolpump=1,
            vel_coolant=vel_fw_outboard_coolant,
            len_pipe=fwbs_variables.len_fw_channel,
            n_pipe_90_deg_bends=N_FW_PIPE_90_DEG_BENDS,
            n_pipe_180_deg_bends=N_FW_PIPE_180_DEG_BENDS,
            den_coolant=fwbs_variables.den_fw_coolant,
            visc_coolant_dynamic=fwbs_variables.visc_fw_coolant,
            coolant_electrical_conductivity=0.0e0,
            pol_channel_length=pollengo,
            nopolchan=npoltoto,
            label="Outboard first wall",
        )

        # BB Presure Drops ###############
        (
            fwbs_variables.radius_blkt_channel_90_bend,
            fwbs_variables.radius_blkt_channel_180_bend,
        ) = self.calculate_pipe_bend_radius(i_ps=1)

        # Long polodal flows
        if fwbs_variables.i_blkt_inboard == 1:
            npoltoti = fwbs_variables.nopol * npblkti_liq
        npoltoto = fwbs_variables.nopol * npblkto_liq

        dpres_blkt_outboard_coolant = self.total_pressure_drop(
            output,
            icoolpump=1,
            vel_coolant=blanket_library.vel_blkt_outboard_coolant,
            len_pipe=blanket_library.len_blkt_outboard_channel_total,
            n_pipe_90_deg_bends=N_BLKT_PIPE_90_DEG_BENDS,
            n_pipe_180_deg_bends=N_BLKT_PIPE_180_DEG_BENDS,
            den_coolant=fwbs_variables.den_blkt_coolant,
            visc_coolant_dynamic=fwbs_variables.visc_blkt_coolant,
            coolant_electrical_conductivity=0.0e0,
            pol_channel_length=pollengo,
            nopolchan=npoltoto,
            label="Outboard blanket",
        )

        if fwbs_variables.i_blkt_inboard == 1:
            dpres_blkt_inboard_coolant = self.total_pressure_drop(
                output,
                icoolpump=1,
                vel_coolant=blanket_library.vel_blkt_inboard_coolant,
                len_pipe=blanket_library.len_blkt_inboard_channel_total,
                n_pipe_90_deg_bends=N_BLKT_PIPE_90_DEG_BENDS,
                n_pipe_180_deg_bends=N_BLKT_PIPE_180_DEG_BENDS,
                den_coolant=fwbs_variables.den_blkt_coolant,
                visc_coolant_dynamic=fwbs_variables.visc_blkt_coolant,
                coolant_electrical_conductivity=0.0e0,
                pol_channel_length=pollengi,
                nopolchan=npoltoti,
                label="Inboard blanket",
            )

        # If the blanket has a liquid metal breeder...
        if fwbs_variables.i_blkt_dual_coolant > 0:
            deltap_blo_liq = self.total_pressure_drop(
                output,
                icoolpump=2,
                vel_coolant=velblkto_liq,
                len_pipe=bzfllengo_liq,
                n_pipe_90_deg_bends=no90bz_liq,
                n_pipe_180_deg_bends=no180bz_liq,
                den_coolant=fwbs_variables.den_liq,
                visc_coolant_dynamic=fwbs_variables.dynamic_viscosity_liq,
                coolant_electrical_conductivity=fwbs_variables.electrical_conductivity_liq,
                pol_channel_length=pollengo,
                nopolchan=npoltoto,
                label="Outboard blanket breeder liquid",
            )
            if fwbs_variables.i_blkt_inboard == 1:
                deltap_bli_liq = self.total_pressure_drop(
                    output,
                    icoolpump=2,
                    vel_coolant=velblkti_liq,
                    len_pipe=bzfllengi_liq,
                    n_pipe_90_deg_bends=no90bz_liq,
                    n_pipe_180_deg_bends=no180bz_liq,
                    den_coolant=fwbs_variables.den_liq,
                    visc_coolant_dynamic=fwbs_variables.dynamic_viscosity_liq,
                    coolant_electrical_conductivity=fwbs_variables.electrical_conductivity_liq,
                    pol_channel_length=pollengi,
                    nopolchan=npoltoti,
                    label="Inboard blanket breeder liquid",
                )

                return [
                    dpres_fw_inboard_coolant,
                    dpres_fw_outboard_coolant,
                    dpres_blkt_outboard_coolant,
                    dpres_blkt_inboard_coolant,
                    deltap_blo_liq,
                    deltap_bli_liq,
                ]
            return [
                dpres_fw_inboard_coolant,
                dpres_fw_outboard_coolant,
                dpres_blkt_outboard_coolant,
                deltap_blo_liq,
            ]

        if fwbs_variables.i_blkt_inboard == 1:
            return [
                dpres_fw_inboard_coolant,
                dpres_fw_outboard_coolant,
                dpres_blkt_outboard_coolant,
                dpres_blkt_inboard_coolant,
            ]
        return [
            dpres_fw_inboard_coolant,
            dpres_fw_outboard_coolant,
            dpres_blkt_outboard_coolant,
        ]

    @staticmethod
    def calculate_dshaped_inboard_blkt_segment_poloidal(
        dz_blkt_half: float, n_blkt_inboard_modules_poloidal: int
    ) -> float:
        """Calculations for D-shaped inboard blanket module poloidal segment length

        :param dz_blkt_half: Half-height of the blanket module (m)
        :type dz_blkt_half: float
        :param n_blkt_inboard_modules_poloidal: Number of inboard blanket modules in poloidal direction
        :type n_blkt_inboard_modules_poloidal: int

        :return: Segment length of inboard blanket module in poloidal direction (m)
        :rtype: float

        """

        # D-shaped machine
        # Segment vertical inboard surface (m)
        return (2.0 * dz_blkt_half) / n_blkt_inboard_modules_poloidal

    @staticmethod
    def calculate_dshaped_outboard_blkt_segment_poloidal(
        n_blkt_outboard_modules_poloidal: int,
        dr_fw_plasma_gap_inboard: float,
        rminor: float,
        dr_fw_plasma_gap_outboard: float,
        dz_blkt_half: float,
        n_divertors: int,
        f_ster_div_single: float,
    ) -> float:
        """
        Calculations for D-shaped outboard blanket module poloidal segment length

        :param n_blkt_outboard_modules_poloidal: Number of outboard blanket modules in poloidal direction
        :type n_blkt_outboard_modules_poloidal: int
        :param dr_fw_plasma_gap_inboard: Radial gap between inboard first wall and plasma (m)
        :type dr_fw_plasma_gap_inboard: float
        :param rminor: Minor radius of the plasma (m)
        :type rminor: float
        :param dr_fw_plasma_gap_outboard: Radial gap between outboard first wall and plasma (m)
        :type dr_fw_plasma_gap_outboard: float
        :param dz_blkt_half: Half-height of the blanket module (m)
        :type dz_blkt_half: float
        :param n_divertors: Number of divertors (1 for single null, 2 for double null)
        :type n_divertors: int
        :param f_ster_div_single: Fractional poloidal length of the divertor in single null configuration
        :type f_ster_div_single: float

        :return: Segment length of outboard blanket module in poloidal direction (m)
        :rtype: float


        """

        # Calculate perimeter of ellipse that defines the internal
        # surface of the outboard first wall / blanket

        # Mid-plane distance from inboard to outboard side (m)
        a = dr_fw_plasma_gap_inboard + 2.0 * rminor + dr_fw_plasma_gap_outboard

        # Internal half-height of blanket (m)
        b = dz_blkt_half

        # Calculate ellipse circumference using Ramanujan approximation (m)
        ptor = np.pi * (3.0 * (a + b) - np.sqrt((3.0 * a + b) * (a + 3.0 * b)))

        # Calculate blanket poloidal length and segment, subtracting divertor length (m)
        # kit hcll version only had the single null option
        if n_divertors == 2:
            # Double null configuration
            len_blkt_outboard_segment_poloidal = (
                0.5
                * ptor
                * (1.0 - 2.0 * f_ster_div_single)
                / n_blkt_outboard_modules_poloidal
            )
        else:
            # single null configuration
            len_blkt_outboard_segment_poloidal = (
                0.5 * ptor * (1.0 - f_ster_div_single) / n_blkt_outboard_modules_poloidal
            )

        return len_blkt_outboard_segment_poloidal

    @staticmethod
    def calculate_elliptical_inboard_blkt_segment_poloidal(
        rmajor: float,
        rminor: float,
        triang: float,
        dr_fw_plasma_gap_inboard: float,
        dz_blkt_half: float,
        n_blkt_inboard_modules_poloidal: int,
        n_divertors: int,
        f_ster_div_single: float,
    ) -> float:
        """
        Calculations for elliptical inboard blanket module poloidal segment length

        :param rmajor: Major radius of the plasma (m)
        :type rmajor: float
        :param rminor: Minor radius of the plasma (m)
        :type rminor: float
        :param triang: Triangularity of the plasma
        :type triang: float
        :param dr_fw_plasma_gap_inboard: Radial gap between inboard first wall and plasma (m)
        :type dr_fw_plasma_gap_inboard: float
        :param dz_blkt_half: Half-height of the blanket module (m)
        :type dz_blkt_half: float
        :param n_blkt_inboard_modules_poloidal: Number of inboard blanket modules in poloidal direction
        :type n_blkt_inboard_modules_poloidal: int
        :param n_divertors: Number of divertors (1 for single null, 2 for double null)
        :type n_divertors: int
        :param f_ster_div_single: Fractional poloidal length of the divertor in single null configuration
        :type f_ster_div_single: float

        :return: Segment length of inboard blanket module in poloidal direction (m)
        :rtype: float

        """

        # Major radius where half-ellipses 'meet' (m)
        r1 = rmajor - rminor * triang

        # Internal half-height of blanket (m)
        b = dz_blkt_half

        # Distance between r1 and nearest edge of inboard first wall / blanket (m)
        a = r1 - (rmajor - rminor - dr_fw_plasma_gap_inboard)

        # Calculate ellipse circumference using Ramanujan approximation (m)
        ptor = np.pi * (3.0 * (a + b) - np.sqrt((3.0 * a + b) * (a + 3.0 * b)))

        # Calculate inboard blanket poloidal length and segment, subtracting divertor length (m)
        # Assume divertor lies between the two ellipses, so fraction f_ster_div_single still applies

        # kit hcll version only had the single null option
        if n_divertors == 2:
            # Double null configuration
            len_blkt_inboard_segment_poloidal = (
                0.5
                * ptor
                * (1.0 - 2.0 * f_ster_div_single)
                / n_blkt_inboard_modules_poloidal
            )
        else:
            # single null configuration
            len_blkt_inboard_segment_poloidal = (
                0.5 * ptor * (1.0 - f_ster_div_single) / n_blkt_inboard_modules_poloidal
            )

        return len_blkt_inboard_segment_poloidal

    @staticmethod
    def calculate_elliptical_outboard_blkt_segment_poloidal(
        rmajor: float,
        rminor: float,
        triang: float,
        dz_blkt_half: float,
        dr_fw_plasma_gap_outboard: float,
        n_blkt_outboard_modules_poloidal: int,
        n_divertors: int,
        f_ster_div_single: float,
    ) -> float:
        """
        Calculations for elliptical outboard blanket module poloidal segment length

        :param rmajor: Major radius of the plasma (m)
        :type rmajor: float
        :param rminor: Minor radius of the plasma (m)
        :type rminor: float
        :param triang: Triangularity of the plasma
        :type triang: float
        :param dz_blkt_half: Half-height of the blanket module (m)
        :type dz_blkt_half: float
        :param dr_fw_plasma_gap_outboard: Radial gap between outboard first wall and plasma (m)
        :type dr_fw_plasma_gap_outboard: float
        :param n_blkt_outboard_modules_poloidal: Number of outboard blanket modules in poloidal direction
        :type n_blkt_outboard_modules_poloidal: int
        :param n_divertors: Number of divertors (1 for single null, 2 for double null)
        :type n_divertors: int
        :param f_ster_div_single: Fractional poloidal length of the divertor in single null configuration
        :type f_ster_div_single: float

        :return: Segment length of outboard blanket module in poloidal direction (m)
        :rtype: float


        """

        # Major radius where half-ellipses 'meet' (m)
        r1 = rmajor - rminor * triang

        # Internal half-height of blanket (m)
        b = dz_blkt_half

        # Distance between r1 and inner edge of outboard first wall / blanket (m)
        a = rmajor + rminor + dr_fw_plasma_gap_outboard - r1

        # Calculate ellipse circumference using Ramanujan approximation (m)
        ptor = np.pi * (3.0 * (a + b) - np.sqrt((3.0 * a + b) * (a + 3.0 * b)))

        # kit hcll version only had the single null option
        # Calculate outboard blanket poloidal length and segment, subtracting divertor length (m)
        if n_divertors == 2:
            # Double null configuration
            len_blkt_outboard_segment_poloidal = (
                0.5
                * ptor
                * (1.0 - 2.0 * f_ster_div_single)
                / n_blkt_outboard_modules_poloidal
            )
        else:
            # single null configuration
            len_blkt_outboard_segment_poloidal = (
                0.5 * ptor * (1.0 - f_ster_div_single) / n_blkt_outboard_modules_poloidal
            )
        return len_blkt_outboard_segment_poloidal

    def liquid_breeder_properties(self, output: bool = False):
        """Calculates the fluid properties of the Liquid Metal Breeder/Coolant in the Blanket BZ
        Uses middle value of input and output temperatures of Liquid Metal Breeder/Coolant
        Curently have PbLi but can expand with e.g., Lithium



        References:

             [Mal1995]   Malang and Mattas (1995), Comparison of lithium and the eutectic
                         lead-lithium alloy, two candidate liquid metal breeder materials
                         for self-cooled blankets, Fusion Engineering and Design 27, 399-406.

             [Mas2008]   Mas de les Valles et al. (2008), Lead-lithium material database for
                         nuclear fusion technology, Journal of Nuclear Materials, Vol. 376(6).

             [Mar2019]   Martelli et al. (2019), Literature review of lead-lithium
                         thermophysical properties, Fusion Engineering and Design, 138, 183-195.

        Parameters
        ----------
        output: bool
             (Default value = False)
        """

        # Use mid temp
        if fwbs_variables.inlet_temp_liq == fwbs_variables.outlet_temp_liq:
            mid_temp_liq = fwbs_variables.outlet_temp_liq
        else:
            mid_temp_liq = (
                fwbs_variables.inlet_temp_liq + fwbs_variables.outlet_temp_liq
            ) * 0.5

        # If the liquid metal is PbLi...
        if fwbs_variables.i_blkt_liquid_breeder_type == 0:
            # PbLi from [Mar2019]
            # Constant pressure ~ 17 atmospheres ~ 1.7D6 Pa
            # Li content is ~ 17%
            #
            # density                      kg m-3          T in Kelvin     range = 508-880 K
            #
            # specific_heat                J kg-1 K-1      T in Kelvin     range = 508-880 K
            #
            # thermal_conductivity         W m-1 K-1       T in Celcius    range = 508-773 K
            #
            # dynamic_viscosity            Pa s            T in Celcius    range = 508-873 K
            #
            # electrical_conductivity      A V-1 m-1       T in Kelvin     range = 600-800 K

            # Caculate properties
            fwbs_variables.den_liq = 1.052e4 * (1 - mid_temp_liq * 1.13e-4)

            fwbs_variables.specific_heat_liq = 1.95e2 - mid_temp_liq * 9.116e-3

            fwbs_variables.thermal_conductivity_liq = (
                1.95 + (mid_temp_liq - 273.15) * 1.96e-2
            )

            fwbs_variables.dynamic_viscosity_liq = (
                6.11e-3
                - (2.257e-5 * (mid_temp_liq - 273.15))
                + (3.766e-8 * (mid_temp_liq - 273.15) ** 2)
                - (2.289e-11 * (mid_temp_liq - 273.15) ** 3)
            )

            t_ranges = np.zeros((5, 2))

            t_ranges[:4, 0] = 508.0
            t_ranges[:4, 1] = 880.0

            fwbs_variables.electrical_conductivity_liq = 1.0 / (
                1.03e-6 - (6.75e-11 * mid_temp_liq) + (4.18e-13 * mid_temp_liq**2)
            )

            t_ranges[4, 0] = 600.0
            t_ranges[4, 1] = 800.0

        # If the liquid metal is Li...
        elif fwbs_variables.i_blkt_liquid_breeder_type == 1:
            # Temporary - should be updated with information from Li reviews conducted at CCFE once completed
            # Li Properties from [Mal1995] at 300 Celcius
            # den_liq = 505                            kg/m3
            # specific_heat_liq = 4260                 J kg-1 K-1
            # thermal_conductivity_liq = 46            W m-1 K-1
            # dynamic_viscosity_liq = 1.0D-6           m2 s-1
            # electrical_conductivity_liq = 3.03D6     A V-1 m-1

            # New from 'Application of lithium in systems of fusion reactors. 1. Physical and chemical properties of lithium'
            # Lyublinski et al., 2009, Plasma Devicec and Operations
            fwbs_variables.den_liq = (
                504.43
                - (0.2729 * mid_temp_liq)
                - (8.0035e-5 * mid_temp_liq**2)
                + (3.799e-8 * mid_temp_liq**3)
            )
            fwbs_variables.specific_heat_liq = (
                31.227
                + (0.205e6 * mid_temp_liq ** (-2))
                - (5.265e-3 * mid_temp_liq)
                + (2.628e6 * mid_temp_liq ** (-2))
            )
            # thermal_conductivity_liq also in paper
            fwbs_variables.dynamic_viscosity_liq = np.exp(
                -4.16e0 - (0.64 * np.log(mid_temp_liq)) + (262.1 / mid_temp_liq)
            )
            fwbs_variables.electrical_conductivity_liq = (
                (0.9249e9 * mid_temp_liq) + 2.3167e6 - (0.7131e3 * mid_temp_liq)
            )

        # Magnetic feild strength in T for Hartmann calculation
        # IB
        if fwbs_variables.i_blkt_inboard == 1:
            fwbs_variables.b_mag_blkt[0] = (
                physics_variables.b_plasma_toroidal_on_axis
                * physics_variables.rmajor
                / (
                    physics_variables.rmajor
                    - (physics_variables.rmajor / physics_variables.aspect)
                    - (build_variables.dr_blkt_inboard / 2)
                )
            )
        # We do not use this if there is no IB blanket, but will use edge as fill value
        if fwbs_variables.i_blkt_inboard == 0:
            fwbs_variables.b_mag_blkt[0] = (
                physics_variables.b_plasma_toroidal_on_axis
                * physics_variables.rmajor
                / (
                    physics_variables.rmajor
                    - (physics_variables.rmajor / physics_variables.aspect)
                )
            )
        # OB
        fwbs_variables.b_mag_blkt[1] = (
            physics_variables.b_plasma_toroidal_on_axis
            * physics_variables.rmajor
            / (
                physics_variables.rmajor
                + (physics_variables.rmajor / physics_variables.aspect)
                + (build_variables.dr_blkt_outboard / 2)
            )
        )

        # Calculate Hartmann number
        con_vsc_rat = (
            fwbs_variables.electrical_conductivity_liq
            / fwbs_variables.dynamic_viscosity_liq
        )
        # Use toroidal width of the rectangular cooling channel as characteristic length scale
        fwbs_variables.hartmann_liq = (
            np.asarray(fwbs_variables.b_mag_blkt)
            * fwbs_variables.a_bz_liq
            / 2.0
            * np.sqrt(con_vsc_rat)
        )

        # Error for temperature range of breeder property realtions
        if fwbs_variables.i_blkt_liquid_breeder_type == 0 and (
            (t_ranges[:, 0] > mid_temp_liq).any()
            or (t_ranges[:, 1] < mid_temp_liq).any()
        ):
            logger.error(
                "Outside temperature limit for one or more liquid metal breeder properties"
            )

            if output:
                po.ocmmnt(
                    self.outfile,
                    "Outside temperature limit for one or more liquid metal breeder properties.",
                )
                po.ovarrf(
                    self.outfile,
                    "Liquid metal temperature (K)",
                    "(mid_temp_liq)",
                    mid_temp_liq,
                    "OP ",
                )
                po.ocmmnt(self.outfile, "Density: Max T = 880 K, Min T = 508 K")
                po.ocmmnt(self.outfile, "Specific heat: Max T = 880 K, Min T = 508 K")
                po.ocmmnt(
                    self.outfile, "Thermal conductivity: Max T = 880 K, Min T = 508 K"
                )
                po.ocmmnt(
                    self.outfile, "Dynamic viscosity : Max T = 880 K, Min T = 508 K"
                )
                po.ocmmnt(
                    self.outfile,
                    "Electrical conductivity: Max T = 800 K, Min T = 600 K",
                )

        if not output:
            return

        po.oheadr(self.outfile, "Blanket : Liquid Breeder Properties")

        if fwbs_variables.i_blkt_dual_coolant == 1:
            po.ocmmnt(
                self.outfile,
                "Single coolant: liquid metal circulted for tritium extraction.",
            )
        if fwbs_variables.i_blkt_dual_coolant == 2:
            po.ocmmnt(self.outfile, "Dual coolant: self-cooled liquid metal breeder.")

        if fwbs_variables.i_blkt_liquid_breeder_type == 0:
            po.ocmmnt(
                self.outfile,
                "Blanket breeder type (i_blkt_liquid_breeder_type=0), PbLi (~ 17% Li)",
            )
        if fwbs_variables.i_blkt_liquid_breeder_type == 1:
            po.ocmmnt(
                self.outfile, "Blanket breeder type (i_blkt_liquid_breeder_type=1), Li"
            )

        po.ovarrf(
            self.outfile, "Density (kg m-3)", "(den_liq)", fwbs_variables.den_liq, "OP "
        )
        po.ovarrf(
            self.outfile,
            "Viscosity (Pa s)",
            "(dynamic_viscosity_liq)",
            fwbs_variables.dynamic_viscosity_liq,
            "OP ",
        )
        po.ovarrf(
            self.outfile,
            "Electrical Conductivity (A V-1 m-1)",
            "(electrical_conductivity_liq)",
            fwbs_variables.electrical_conductivity_liq,
            "OP ",
        )
        po.ovarrf(
            self.outfile,
            "Hartmann Number IB",
            "(hartmann_liq)",
            fwbs_variables.hartmann_liq[0],
            "OP ",
        )
        po.ovarrf(
            self.outfile,
            "Hartmann Number OB",
            "(hartmann_liq)",
            fwbs_variables.hartmann_liq[0],
            "OP ",
        )

        po.ovarre(
            self.outfile,
            "Inlet Temperature (Celcius)",
            "(inlet_temp_liq)",
            fwbs_variables.inlet_temp_liq,
            "OP ",
        )
        po.ovarre(
            self.outfile,
            "Outlet Temperature (Celcius)",
            "(outlet_temp_liq)",
            fwbs_variables.outlet_temp_liq,
            "OP ",
        )

    def flow_velocity(self, i_channel_shape, mass_flow_rate, flow_density):
        """Calculate the coolant flow velocity (m/s) for given pipe mass flow rate and pipe size/shape.
        N.B. Assumed that primary BB and FW coolants have same pipe radius (= radius_fw_channel).


        Parameters
        ----------
        i_channel_shape :
            Switch for circular or rectangular channel crossection.
            Shape depends on whether primary or secondary coolant.
            1: circle (primary)
            2: rectangle (secondary)
        mass_flow_rate :
            Coolant mass flow rate per pipe (kg/s)
        flow_density :
            Coolant density
        """

        if i_channel_shape == 1:
            return mass_flow_rate / (
                flow_density
                * np.pi
                * fwbs_variables.radius_fw_channel
                * fwbs_variables.radius_fw_channel
            )

        # If secondary coolant then rectangular channels assumed
        if i_channel_shape == 2:
            return mass_flow_rate / (
                flow_density * fwbs_variables.a_bz_liq * fwbs_variables.b_bz_liq
            )

        raise ProcessValueError(
            f"i_channel_shape ={i_channel_shape} is an invalid option."
        )

    def thermo_hydraulic_model(self, output: bool):
        """Thermo-hydraulic model for first wall and blanket
        ONLY CALLED if i_p_coolant_pumping = 2 or 3

        Calculations for detailed powerflow model i_thermal_electric_conversion > 1

        Dual-coolant modifications and generalisation refactor: G. Graham, CCFE

        Three options:
        1.   Solid breeder - nuclear heating in the blanket is exctrated by the primary coolant.
        2.   Liquid metal breeder, single-coolant
                 - nuclear heating in the blanket is exctrated by the primary coolant.
                 - liquid metal is circulated for tritium extraction, specified by number of circulations/day.
        3.   Liquid metal breeder, dual-coolant -
                 - nuclear heating in the liquid breeder/coolant is extracted by the liquid breeder/coolant.
                 - nuclear heating in the blanket structure is extracted by the primary coolant

        Flow Channel and Coolant Input Info:

            N.B. Primary coolant applies to single-coolant BB, or structural cooling of dual-coolant BB.
            Secondary coolant applies to self-cooled breeder material.

            Coolant Channels            FW                      BB primary          BB Liquid Breeder/Coolant

            length (m)                  len_fw_channel
            width (m)                   radius_fw_channel (radius, cicular)   radius_fw_channel                 a_bz_liq, b_bz_liq (rectangular)
            wall thickness (m)          dr_fw_wall                 dr_fw_wall             th_wall_secondary
            dx_fw_module (m)                   dx_fw_module
            roughness epsilon           roughness_fw_channel
            peak FW temp (K)            temp_fw_peak
            maximum temp (K)            temp_fw_max
            FCI switch                  ---                     ---                 i_blkt_liquid_breeder_channel_type

            Coolant                     FW                      BB primary          BB secondary

            primary coolant switch      i_fw_coolant_type               i_blkt_coolant_type              ---
            secondary coolant switch    ---                     ---                 i_blkt_liquid_breeder_type
            inlet temp (K)              temp_fw_coolant_in                 temp_blkt_coolant_in          inlet_temp_liq
            outlet temp (K)             temp_fw_coolant_out                temp_blkt_coolant_out         outlet_temp_liq
            pressure (Pa)               pres_fw_coolant              pres_blkt_coolant          blpressure_liq

        Parameters
        ----------
        output: bool

        """
        ######################################################
        # Pre calculations needed for thermo-hydraulic model #
        ######################################################
        # IB/OB FW (MW)
        blanket_library.p_fw_inboard_nuclear_heat_mw = (
            fwbs_variables.p_fw_nuclear_heat_total_mw
            * first_wall_variables.a_fw_inboard
            / first_wall_variables.a_fw_total
        )
        blanket_library.p_fw_outboard_nuclear_heat_mw = (
            fwbs_variables.p_fw_nuclear_heat_total_mw
            * first_wall_variables.a_fw_outboard
            / first_wall_variables.a_fw_total
        )

        # IB/OB Blanket (MW)

        # Neutron power deposited in inboard blanket (MW)
        if fwbs_variables.i_blkt_inboard == 1:
            blanket_library.p_blkt_nuclear_heat_inboard_mw = (
                fwbs_variables.p_blkt_nuclear_heat_total_mw
                * fwbs_variables.vol_blkt_inboard
                / fwbs_variables.vol_blkt_total
            )

        # Neutron power deposited in outboard blanket (MW)
        blanket_library.p_blkt_nuclear_heat_outboard_mw = (
            fwbs_variables.p_blkt_nuclear_heat_total_mw
            * fwbs_variables.vol_blkt_outboard
            / fwbs_variables.vol_blkt_total
        )

        # For a dual-coolant blanket, some fraction of the power goes into the
        # structure of the BZ and is cooled by the primary coolant, and some fraction
        # goes into the liquid breeder to be cooled by itself.

        # If the blanket is dual-coolant...
        if fwbs_variables.i_blkt_dual_coolant == 2:
            f_nuc_pow_bz_liq = 1 - fwbs_variables.f_nuc_pow_bz_struct

            # Inboard blanket calc. Will return 0 if no inboard dr_shld_inboard thickness
            pnucblkti_struct = (
                fwbs_variables.p_blkt_nuclear_heat_total_mw
                * fwbs_variables.f_nuc_pow_bz_struct
            ) * (fwbs_variables.vol_blkt_inboard / fwbs_variables.vol_blkt_total)
            pnucblkti_liq = (
                fwbs_variables.p_blkt_nuclear_heat_total_mw * f_nuc_pow_bz_liq
            ) * (fwbs_variables.vol_blkt_inboard / fwbs_variables.vol_blkt_total)
            pnucblkto_struct = (
                fwbs_variables.p_blkt_nuclear_heat_total_mw
                * fwbs_variables.f_nuc_pow_bz_struct
            ) * (fwbs_variables.vol_blkt_outboard / fwbs_variables.vol_blkt_total)
            pnucblkto_liq = (
                fwbs_variables.p_blkt_nuclear_heat_total_mw * f_nuc_pow_bz_liq
            ) * (fwbs_variables.vol_blkt_outboard / fwbs_variables.vol_blkt_total)

        # FW and BB Mass Flow ###########

        # Make sure that, if the inputs for the FW and blanket inputs are different,
        # the i_fw_blkt_shared_coolant variable is appropriately set for separate coolants
        if (
            fwbs_variables.i_fw_coolant_type == "Helium"
            and fwbs_variables.i_blkt_coolant_type == 2
        ):
            fwbs_variables.i_fw_blkt_shared_coolant = 1
        if (
            fwbs_variables.i_fw_coolant_type == "Water"
            and fwbs_variables.i_blkt_coolant_type == 1
        ):
            fwbs_variables.i_fw_blkt_shared_coolant = 1

        # If FW and BB have the same coolant...
        if fwbs_variables.i_fw_blkt_shared_coolant == 0:
            # Fraction of heat to be removed by IB/OB FW
            if fwbs_variables.i_blkt_dual_coolant == 2:
                f_nuc_fwi = (
                    blanket_library.p_fw_inboard_nuclear_heat_mw
                    + fwbs_variables.psurffwi
                ) / (
                    blanket_library.p_fw_inboard_nuclear_heat_mw
                    + fwbs_variables.psurffwi
                    + pnucblkti_struct
                )
                f_nuc_fwo = (
                    blanket_library.p_fw_outboard_nuclear_heat_mw
                    + fwbs_variables.psurffwo
                ) / (
                    blanket_library.p_fw_outboard_nuclear_heat_mw
                    + fwbs_variables.psurffwo
                    + pnucblkto_struct
                )
            else:
                f_nuc_fwi = (
                    blanket_library.p_fw_inboard_nuclear_heat_mw
                    + fwbs_variables.psurffwi
                ) / (
                    blanket_library.p_fw_inboard_nuclear_heat_mw
                    + fwbs_variables.psurffwi
                    + blanket_library.p_blkt_nuclear_heat_inboard_mw
                )
                f_nuc_fwo = (
                    blanket_library.p_fw_outboard_nuclear_heat_mw
                    + fwbs_variables.psurffwo
                ) / (
                    blanket_library.p_fw_outboard_nuclear_heat_mw
                    + fwbs_variables.psurffwo
                    + blanket_library.p_blkt_nuclear_heat_outboard_mw
                )

            # Outlet FW/inlet BB temp (mass flow FW = mass flow BB)
            if fwbs_variables.i_blkt_inboard == 1:
                fwoutleti = (f_nuc_fwi * fwbs_variables.temp_blkt_coolant_out) + (
                    1 - f_nuc_fwi
                ) * fwbs_variables.temp_fw_coolant_in
                inlet_tempi = fwoutleti
            else:
                fwoutleti = fwbs_variables.temp_fw_coolant_out

            fwoutleto = (f_nuc_fwo * fwbs_variables.temp_blkt_coolant_out) + (
                1 - f_nuc_fwo
            ) * fwbs_variables.temp_fw_coolant_in
            inlet_tempo = fwoutleto

        elif fwbs_variables.i_fw_blkt_shared_coolant == 1:
            fwoutleti = fwbs_variables.temp_fw_coolant_out
            inlet_tempi = fwbs_variables.temp_blkt_coolant_in
            fwoutleto = fwbs_variables.temp_fw_coolant_out
            inlet_tempo = fwbs_variables.temp_blkt_coolant_in

        # Maximum FW temperature. (27/11/2015) Issue #348
        # First wall flow is just along the first wall, with no allowance for radial
        # pipes, manifolds etc. The outputs are mid quantities of inlet and outlet.
        # This subroutine recalculates cp and rhof.
        (
            blanket_library.temp_fw_inboard_peak,
            _,
            _,
            blanket_library.mflow_fw_inboard_coolant_channel,
        ) = self.fw.fw_temp(
            output,
            fwbs_variables.radius_fw_channel,
            build_variables.dr_fw_inboard,
            first_wall_variables.a_fw_inboard,
            fwbs_variables.psurffwi,
            blanket_library.p_fw_inboard_nuclear_heat_mw,
            "Inboard first wall",
        )
        (
            blanket_library.temp_fw_outboard_peak,
            _cf,
            _rhof,
            blanket_library.mflow_fw_outboard_coolant_channel,
        ) = self.fw.fw_temp(
            output,
            fwbs_variables.radius_fw_channel,
            build_variables.dr_fw_outboard,
            first_wall_variables.a_fw_outboard,
            fwbs_variables.psurffwo,
            blanket_library.p_fw_outboard_nuclear_heat_mw,
            "Outboard first wall",
        )

        # Peak first wall temperature (K)
        fwbs_variables.temp_fw_peak = max(
            blanket_library.temp_fw_inboard_peak, blanket_library.temp_fw_outboard_peak
        )

        # Total mass flow rate to remove inboard FW power (kg/s)
        blanket_library.mflow_fw_inboard_coolant_total = (
            1.0e6
            * (blanket_library.p_fw_inboard_nuclear_heat_mw + fwbs_variables.psurffwi)
            / (fwbs_variables.cp_fw * (fwoutleti - fwbs_variables.temp_fw_coolant_in))
        )
        # Total mass flow rate to remove outboard FW power (kg/s)
        blanket_library.mflow_fw_outboard_coolant_total = (
            1.0e6
            * (blanket_library.p_fw_outboard_nuclear_heat_mw + fwbs_variables.psurffwo)
            / (fwbs_variables.cp_fw * (fwoutleto - fwbs_variables.temp_fw_coolant_in))
        )

        # If the blanket is dual-coolant...
        if fwbs_variables.i_blkt_dual_coolant == 2:
            # Mass flow rates for outboard blanket coolants (kg/s)
            blanket_library.mflow_blkt_outboard_coolant = (
                1.0e6
                * (pnucblkto_struct)
                / (
                    fwbs_variables.cp_bl
                    * (fwbs_variables.temp_blkt_coolant_out - inlet_tempo)
                )
            )
            blanket_library.mfblkto_liq = (
                1.0e6
                * (pnucblkto_liq)
                / (
                    fwbs_variables.specific_heat_liq
                    * (fwbs_variables.outlet_temp_liq - fwbs_variables.inlet_temp_liq)
                )
            )

            # If there is an IB blanket...
            if fwbs_variables.i_blkt_inboard == 1:
                # Mass flow rates for inboard blanket coolants (kg/s)
                blanket_library.mflow_blkt_inboard_coolant = (
                    1.0e6
                    * (pnucblkti_struct)
                    / (
                        fwbs_variables.cp_bl
                        * (fwbs_variables.temp_blkt_coolant_out - inlet_tempi)
                    )
                )
                blanket_library.mfblkti_liq = (
                    1.0e6
                    * (pnucblkti_liq)
                    / (
                        fwbs_variables.specific_heat_liq
                        * (
                            fwbs_variables.outlet_temp_liq
                            - fwbs_variables.inlet_temp_liq
                        )
                    )
                )

        # If the blanket is single-coolant with liquid metal breeder...
        elif fwbs_variables.i_blkt_dual_coolant == 1:
            # Mass flow rate for outboard blanket coolant (kg/s)
            blanket_library.mflow_blkt_outboard_coolant = (
                1.0e6
                * (blanket_library.p_blkt_nuclear_heat_outboard_mw)
                / (
                    fwbs_variables.cp_bl
                    * (fwbs_variables.temp_blkt_coolant_out - inlet_tempo)
                )
            )

            # Get mass flow rate etc. for inboard blanket breeder flow for tritium extraction
            # Use the number of desired recirculations ([Aub2013]=10) and mass from dcll_masses
            # N.B. wht_liq is BZ mass, does not include manifold.
            blanket_library.mfblkto_liq = (
                fwbs_variables.n_liq_recirc * fwbs_variables.wht_liq_ob
            ) / (24 * 3600)

            # If there is an IB blanket...
            if fwbs_variables.i_blkt_inboard == 1:
                # Mass flow rate for inboard blanket coolant (kg/s)
                blanket_library.mflow_blkt_inboard_coolant = (
                    1.0e6
                    * (blanket_library.p_blkt_nuclear_heat_inboard_mw)
                    / (
                        fwbs_variables.cp_bl
                        * (fwbs_variables.temp_blkt_coolant_out - inlet_tempi)
                    )
                )
                # Mass flow rate for inboard breeder flow (kg/s)
                fwbs_variables.mfblkti_liq = (
                    fwbs_variables.n_liq_recirc * fwbs_variables.wht_liq_ib
                ) / (24 * 3600)

        # If the blanket is single-coolant with solid breeder...
        else:
            # Mass flow rate for inboard blanket coolant (kg/s)
            blanket_library.mflow_blkt_outboard_coolant = (
                1.0e6
                * (blanket_library.p_blkt_nuclear_heat_outboard_mw)
                / (
                    fwbs_variables.cp_bl
                    * (fwbs_variables.temp_blkt_coolant_out - inlet_tempo)
                )
            )

            # If there is an IB blanket...
            # Mass flow rate for inboard blanket coolant (kg/s)
            if fwbs_variables.i_blkt_inboard == 1:
                blanket_library.mflow_blkt_inboard_coolant = (
                    1.0e6
                    * (blanket_library.p_blkt_nuclear_heat_inboard_mw)
                    / (
                        fwbs_variables.cp_bl
                        * (fwbs_variables.temp_blkt_coolant_out - inlet_tempi)
                    )
                )

        ########################################################
        # Handling of pressure drops and coolant pumping power #
        ########################################################

        # load in pressures if primary pumping == 2
        if fwbs_variables.i_p_coolant_pumping == 2:
            deltap = self.thermo_hydraulic_model_pressure_drop_calculations(
                output=output
            )
            deltap_fwi = deltap[0]
            deltap_fwo = deltap[1]
            deltap_blo = deltap[2]
            if fwbs_variables.i_blkt_dual_coolant > 0:
                if fwbs_variables.i_blkt_inboard == 1:
                    deltap_bli = deltap[3]
                    deltap_blo_liq = deltap[4]
                    deltap_bli_liq = deltap[5]
                else:
                    deltap_blo_liq = deltap[3]
            else:
                if fwbs_variables.i_blkt_inboard == 1:
                    deltap_bli = deltap[3]

        # Pumping Power
        # If FW and BB have the same coolant...
        if fwbs_variables.i_fw_blkt_shared_coolant == 0:
            # Total pressure drop in the first wall/blanket  (Pa)
            if fwbs_variables.i_p_coolant_pumping == 2:
                if fwbs_variables.i_blkt_inboard == 1:
                    deltap_fw_blkt = deltap_fwi + deltap_bli + deltap_fwo + deltap_blo
                if fwbs_variables.i_blkt_inboard == 0:
                    deltap_fw_blkt = deltap_fwi + deltap_fwo + deltap_blo
            elif fwbs_variables.i_p_coolant_pumping == 3:
                deltap_fw_blkt = primary_pumping_variables.dp_fw_blkt
            # Total coolant mass flow rate in the first wall/blanket (kg/s)
            blanket_library.mftotal = (
                blanket_library.mflow_fw_inboard_coolant_total
                + blanket_library.mflow_fw_outboard_coolant_total
            )

            # Total mechanical pumping power (MW)
            primary_pumping_variables.p_fw_blkt_coolant_pump_mw = (
                self.coolant_pumping_power(
                    output=output,
                    i_liquid_breeder=1,
                    temp_coolant_pump_outlet=fwbs_variables.temp_fw_coolant_in,
                    temp_coolant_pump_inlet=fwbs_variables.temp_blkt_coolant_out,
                    pres_coolant_pump_inlet=fwbs_variables.pres_fw_coolant,
                    dpres_coolant=deltap_fw_blkt,
                    mflow_coolant_total=blanket_library.mftotal,
                    primary_coolant_switch=fwbs_variables.i_fw_coolant_type,
                    den_coolant=fwbs_variables.den_fw_coolant,
                    label="First Wall and Blanket",
                )
            )

        # If FW and BB have different coolants...
        elif fwbs_variables.i_fw_blkt_shared_coolant == 1:
            if fwbs_variables.i_p_coolant_pumping == 2:
                # Total pressure drop in the first wall (Pa)
                deltap_fw = deltap_fwi + deltap_fwo

                # Total pressure drop in the blanket (Pa)
                if fwbs_variables.i_blkt_inboard == 1:
                    deltap_blkt = deltap_bli + deltap_blo
                if fwbs_variables.i_blkt_inboard == 0:
                    deltap_blkt = deltap_blo
            elif fwbs_variables.i_p_coolant_pumping == 3:
                deltap_fw = primary_pumping_variables.dp_fw
                deltap_blkt = primary_pumping_variables.dp_blkt

            # Total coolant mass flow rate in the first wall (kg/s)
            blanket_library.mflow_fw_coolant_total = (
                blanket_library.mflow_fw_inboard_coolant_total
                + blanket_library.mflow_fw_outboard_coolant_total
            )
            # Total coolant mass flow rate in the blanket (kg/s)
            blanket_library.mflow_blkt_coolant_total = (
                blanket_library.mflow_blkt_inboard_coolant
                + blanket_library.mflow_blkt_outboard_coolant
            )

            # Mechanical pumping power for the first wall (MW)
            heat_transport_variables.p_fw_coolant_pump_mw = self.coolant_pumping_power(
                output=output,
                i_liquid_breeder=1,
                temp_coolant_pump_outlet=fwbs_variables.temp_fw_coolant_in,
                temp_coolant_pump_inlet=fwbs_variables.temp_fw_coolant_out,
                pres_coolant_pump_inlet=fwbs_variables.pres_fw_coolant,
                dpres_coolant=deltap_fw,
                mflow_coolant_total=blanket_library.mflow_fw_coolant_total,
                primary_coolant_switch=fwbs_variables.i_fw_coolant_type,
                den_coolant=fwbs_variables.den_fw_coolant,
                label="First Wall",
            )

            # Mechanical pumping power for the blanket (MW)
            heat_transport_variables.p_blkt_coolant_pump_mw = self.coolant_pumping_power(
                output=output,
                i_liquid_breeder=1,
                temp_coolant_pump_outlet=fwbs_variables.temp_blkt_coolant_in,
                temp_coolant_pump_inlet=fwbs_variables.temp_blkt_coolant_out,
                pres_coolant_pump_inlet=fwbs_variables.pres_blkt_coolant,
                dpres_coolant=deltap_blkt,
                mflow_coolant_total=blanket_library.mflow_blkt_coolant_total,
                primary_coolant_switch=(
                    "Helium" if fwbs_variables.i_blkt_coolant_type == 1 else "Water"
                ),
                den_coolant=fwbs_variables.den_blkt_coolant,
                label="Blanket",
            )

            # Total mechanical pumping power (MW)
            primary_pumping_variables.p_fw_blkt_coolant_pump_mw = (
                heat_transport_variables.p_fw_coolant_pump_mw
                + heat_transport_variables.p_blkt_coolant_pump_mw
            )

        # If the blanket has a liquid metal breeder...
        if fwbs_variables.i_blkt_dual_coolant > 0:
            # Total pressure drop in the blanket (Pa)
            if fwbs_variables.i_p_coolant_pumping == 2:
                if fwbs_variables.i_blkt_inboard == 1:
                    deltap_bl_liq = deltap_bli_liq + deltap_blo_liq
                if fwbs_variables.i_blkt_inboard == 0:
                    deltap_bl_liq = deltap_blo_liq
            elif fwbs_variables.i_p_coolant_pumping == 3:
                deltap_bl_liq = primary_pumping_variables.dp_liq
            # Total liquid metal breeder/coolant mass flow rate in the blanket (kg/s)
            blanket_library.mfblkt_liq = (
                blanket_library.mfblkti_liq + blanket_library.mfblkto_liq
            )

            # Mechanical pumping power for the blanket (MW)
            heat_transport_variables.p_blkt_breeder_pump_mw = self.coolant_pumping_power(
                output=output,
                i_liquid_breeder=2,
                temp_coolant_pump_outlet=fwbs_variables.inlet_temp_liq,
                temp_coolant_pump_inlet=fwbs_variables.outlet_temp_liq,
                pres_coolant_pump_inlet=fwbs_variables.blpressure_liq,
                dpres_coolant=deltap_bl_liq,
                mflow_coolant_total=blanket_library.mfblkt_liq,
                primary_coolant_switch=(
                    "Helium" if fwbs_variables.i_blkt_coolant_type == 1 else "Water"
                ),
                den_coolant=fwbs_variables.den_liq,
                label="Liquid Metal Breeder/Coolant",
            )

            heat_transport_variables.htpmw_blkt_tot = (
                primary_pumping_variables.p_fw_blkt_coolant_pump_mw
                + heat_transport_variables.p_blkt_breeder_pump_mw
            )

        if output:
            po.oheadr(self.outfile, "Summary of first wall and blanket thermohydraulics")

            # FW
            po.osubhd(self.outfile, "First wall: ")

            po.ovarst(
                self.outfile,
                "First wall coolant type",
                "(i_fw_coolant_type)",
                fwbs_variables.i_fw_coolant_type,
            )
            po.ovarre(
                self.outfile,
                "Wall thickness of first wall cooling channels (m)",
                "(dr_fw_wall)",
                fwbs_variables.dr_fw_wall,
            )
            po.ovarre(
                self.outfile,
                "Radius of first wall cooling channels (m)",
                "(radius_fw_channel)",
                fwbs_variables.radius_fw_channel,
            )
            po.ovarre(
                self.outfile,
                "Radius of blanket cooling channels (m)",
                "(radius_blkt_channel)",
                fwbs_variables.radius_blkt_channel,
            )
            po.ovarre(
                self.outfile,
                "Roughness of first wall cooling channels (m)",
                "(roughness_fw_channel)",
                fwbs_variables.roughness_fw_channel,
            )
            po.ovarrf(
                self.outfile,
                "Inlet temperature of first wall coolant (K)",
                "(temp_fw_coolant_in)",
                fwbs_variables.temp_fw_coolant_in,
            )
            po.ovarrf(
                self.outfile,
                "Outlet temperature of first wall coolant (K)",
                "(temp_fw_coolant_out)",
                fwbs_variables.temp_fw_coolant_out,
            )
            po.ovarre(
                self.outfile,
                "First wall coolant pressure (Pa)",
                "(pres_fw_coolant)",
                fwbs_variables.pres_fw_coolant,
            )
            if fwbs_variables.i_fw_blkt_shared_coolant == 1:
                po.ovarre(
                    self.outfile,
                    "First wall coolant mass flow rate (kg/s)",
                    "(mflow_fw_coolant_total)",
                    blanket_library.mflow_fw_coolant_total,
                    "OP ",
                )
            po.ovarrf(
                self.outfile,
                "Allowable temperature of first wall material, excluding armour (K)",
                "(temp_fw_max)",
                fwbs_variables.temp_fw_max,
            )
            po.ovarrf(
                self.outfile,
                "Actual peak temperature of first wall material (K)",
                "(temp_fw_peak)",
                fwbs_variables.temp_fw_peak,
                "OP ",
            )

            # BB
            po.osubhd(self.outfile, "Breeding Blanket (primary): ")
            po.ovarre(
                self.outfile,
                "Blanket half height (m)",
                "(dz_blkt_half)",
                blanket_library.dz_blkt_half,
            )
            po.ovarin(
                self.outfile,
                "Blanket coolant type (1=He, 2=H20)",
                "(i_blkt_coolant_type)",
                fwbs_variables.i_blkt_coolant_type,
            )
            po.ovarrf(
                self.outfile,
                "Inlet temperature of blanket coolant (K)",
                "(temp_blkt_coolant_in)",
                fwbs_variables.temp_blkt_coolant_in,
            )
            po.ovarrf(
                self.outfile,
                "Outlet temperature of blanket coolant (K)",
                "(temp_blkt_coolant_out)",
                fwbs_variables.temp_blkt_coolant_out,
            )
            po.ovarre(
                self.outfile,
                "Blanket (primary) coolant pressure (Pa)",
                "(pres_blkt_coolant)",
                fwbs_variables.pres_blkt_coolant,
            )
            if fwbs_variables.i_fw_blkt_shared_coolant == 1:
                po.ovarre(
                    self.outfile,
                    "Blanket coolant mass flow rate (kg/s)",
                    "(mflow_blkt_coolant_total)",
                    blanket_library.mflow_blkt_coolant_total,
                    "OP ",
                )

            # Total primary coolant mass flow rate (if they are the same coolant)
            if fwbs_variables.i_fw_blkt_shared_coolant == 0:
                po.ovarre(
                    self.outfile,
                    "Total (FW+BB) primary coolant mass flow rate(kg/s)",
                    "(mftotal)",
                    blanket_library.mftotal,
                    "OP ",
                )

            # BB Liquid Metal Breeder !
            if fwbs_variables.i_blkt_dual_coolant > 0:
                po.osubhd(self.outfile, "Breeding Blanket (breeder): ")

                po.ovarin(
                    self.outfile,
                    "Blanket liquid breeder type (0=PbLi, 1=Li)",
                    "(i_blkt_liquid_breeder_type)",
                    fwbs_variables.i_blkt_liquid_breeder_type,
                )
                if fwbs_variables.i_blkt_dual_coolant == 2:
                    po.ocmmnt(self.outfile, "Dual-coolant BB, i.e. self-cooled breeder.")
                    po.ovarrf(
                        self.outfile,
                        "Inlet temperature of blanket liquid breeder (K)",
                        "(inlet_temp_liq)",
                        fwbs_variables.inlet_temp_liq,
                    )
                    po.ovarrf(
                        self.outfile,
                        "Outlet temperature of blanket liquid breeder (K)",
                        "(outlet_temp_liq)",
                        fwbs_variables.outlet_temp_liq,
                    )
                    po.ovarre(
                        self.outfile,
                        "Blanket liquid breeder pressure (Pa)",
                        "(blpressure_liq)",
                        fwbs_variables.blpressure_liq,
                    )
                else:
                    po.ocmmnt(
                        self.outfile,
                        "single-coolant BB, breeder circulated for tritium extraction.",
                    )

                po.ovarre(
                    self.outfile,
                    "Blanket liquid breeder mass flow rate (kg/s)",
                    "(mfblkt_liq)",
                    blanket_library.mfblkt_liq,
                    "OP ",
                )

            # Pumping Power
            po.osubhd(self.outfile, "Mechanical pumping power: ")

            if fwbs_variables.i_fw_blkt_shared_coolant == 1:
                po.ovarre(
                    self.outfile,
                    "Mechanical pumping power for FW (MW)",
                    "(p_fw_coolant_pump_mw)",
                    heat_transport_variables.p_fw_coolant_pump_mw,
                    "OP ",
                )
                po.ovarre(
                    self.outfile,
                    "Mechanical pumping power for blanket (primary) coolant (MW)",
                    "(p_blkt_coolant_pump_mw)",
                    heat_transport_variables.p_blkt_coolant_pump_mw,
                    "OP ",
                )
            if fwbs_variables.i_blkt_dual_coolant > 0:
                po.ovarre(
                    self.outfile,
                    "Mechanical pumping power for blanket liquid breeder (MW)",
                    "(p_blkt_breeder_pump_mw)",
                    heat_transport_variables.p_blkt_breeder_pump_mw,
                    "OP ",
                )
            po.ovarre(
                self.outfile,
                "Total mechanical pumping power for FW and blanket (MW)",
                "(p_fw_blkt_coolant_pump_mw)",
                primary_pumping_variables.p_fw_blkt_coolant_pump_mw,
                "OP ",
            )
            if fwbs_variables.i_blkt_dual_coolant > 0:
                po.ovarre(
                    self.outfile,
                    "Total mechanical pumping power for FW, blanket and liquid metal breeder(MW)",
                    "(htpmw_blkt_tot)",
                    heat_transport_variables.htpmw_blkt_tot,
                    "OP ",
                )
            po.ovarre(
                self.outfile,
                "Pumping power for divertor (MW)",
                "(p_div_coolant_pump_mw)",
                heat_transport_variables.p_div_coolant_pump_mw,
                "OP ",
            )
            po.ovarre(
                self.outfile,
                "Pumping power for shield and vacuum vessel (MW)",
                "(p_shld_coolant_pump_mw)",
                heat_transport_variables.p_shld_coolant_pump_mw,
                "OP ",
            )

    def total_pressure_drop(
        self,
        output: bool,
        icoolpump: int,
        vel_coolant: float,
        len_pipe: float,
        n_pipe_90_deg_bends: int,
        n_pipe_180_deg_bends: int,
        den_coolant: float,
        visc_coolant_dynamic: float,
        coolant_electrical_conductivity: float,
        pol_channel_length: float,
        nopolchan: int,
        label: str,
    ) -> float:
        """Calculate the total pressure drop (Pa) for coolant flow in the first wall (FW) and breeding blanket (BZ).

        This includes frictional losses and, for liquid breeder coolants, magnetohydrodynamic (MHD) losses.

        Parameters
        ----------
        output : bool
            Whether to write output to file.
        icoolpump : int
            Switch for coolant type (1=primary He/H2O, 2=secondary PbLi/Li).
        flow_velocity : float
            Coolant flow velocity (m/s).
        len_pipe : float
            Total flow length along pipe (m).
        n_pipe_90_deg_bends : int
            Number of 90 degree bends in pipe.
        n_pipe_180_deg_bends : int
            Number of 180 degree bends in pipe.
        den_coolant : float
            Coolant density (kg/m³).
        visc_coolant_dynamic : float
            Coolant dynamic viscosity (Pa s).
        coolant_electrical_conductivity : float
            Coolant electrical conductivity (A V⁻¹ m⁻¹).
        pol_channel_length : float
            Length of poloidal channel section (m).
        nopolchan : int
            Number of poloidal channel sections.
        label : str
            Description label for output.

        Returns
        -------
        float
            Total pressure drop (Pa).
        """

        radius_pipe_90_deg_bend, radius_pipe_180_deg_bend = (
            self.calculate_pipe_bend_radius(i_ps=icoolpump)
        )

        # Friction - for all coolants
        dpres_friction = self.coolant_friction_pressure_drop(
            i_ps=icoolpump,
            radius_pipe_90_deg_bend=radius_pipe_90_deg_bend,
            radius_pipe_180_deg_bend=radius_pipe_180_deg_bend,
            n_pipe_90_deg_bends=n_pipe_90_deg_bends,
            n_pipe_180_deg_bends=n_pipe_180_deg_bends,
            len_pipe=len_pipe,
            den_coolant=den_coolant,
            visc_coolant=visc_coolant_dynamic,
            vel_coolant=vel_coolant,
            label=label,
            output=output,
        )

        if icoolpump == 2:
            dpres_mhd = self.liquid_breeder_mhd_pressure_drop(
                vel_coolant,
                visc_coolant_dynamic,
                coolant_electrical_conductivity,
                pol_channel_length,
                nopolchan,
                label,
                output=output,
            )
        else:
            dpres_mhd = 0

        # Total pressure drop (Pa)
        dpres_total = dpres_friction + dpres_mhd

        if output:
            po.osubhd(self.outfile, f"Total pressure drop for {label}")

            po.ocmmnt(self.outfile, "Friction drops plus MHD drops if applicaple")
            po.ovarre(
                self.outfile, "Total pressure drop (Pa)", "(deltap)", dpres_total, "OP "
            )
            po.ovarre(
                self.outfile,
                "Coolant flow velocity (m/s)",
                "(flow_velocity, formerly vv)",
                vel_coolant,
                "OP ",
            )

        return dpres_total

    def liquid_breeder_mhd_pressure_drop(
        self,
        vel: float,
        vsc: float,
        conduct_liq: float,
        l_channel: float,
        num_pol: int,
        label: str,
        output: bool = False,
    ):
        """Calculates the pressure drop in a liquid metal flow channel due to MHD effects. The total pressure
        drop is the sum of contributions. This is only used for secondary coolant/breeder so rectangular flow
        channels are assumed.



        Parameters
        ----------
        vel :
            liquid metal coolant/breeder flow velocity (m/s)
        vsc :
            liquid metal visosity
        conduct_liq :
            liquid metal conductivity
        l_channel :
            length long poloidal sections of channel
        num_pol :
            number long poloidal sections of channel
        label :
            description of calculation
        output: bool
             (Default value = False)

        References
        ----------

        [Miy1986]   Miyazaki et al. (1986), Magneto-Hydro-Dynamic Pressure Drop of Lithium
        Flow in Rectangular Ducts, Fusion Technology, 10:3P2A, 830-836, DOI: 10.13182/FST10-830

        [Mal1995]   Malang and Mattas (1995), Comparison of lithium and the eutectic
        lead-lithium alloy, two candidate liquid metal breeder materials
        for self-cooled blankets, Fusion Engineering and Design 27, 399-406

        [Iba2013]   Ibano et al (2013), Nutronics and pumping power analysis on the
        Tokamak reactor for the fusion-biomass hybrid concept,
        Fusion Engineering and Design, 88

        [Sho2018]   Shoki et al (2018), MHD pressure drop measurement of PbLi flow
        in double-bended pipe, Fusion Engineering and Design, 136, 17-23

        [Klu2019]   Kluber et al. (2019), Numerical simulations of 3D magnetohydrodynamic
        flows in dual-coolant lead lithium blankets, Fusion Engineering and Design,
        146, 684-687

        [Sua2021]   MHD effects in geometrical sigularities on high velocity breeding
        blanket designs. Part II, ENR-PRD.BB-T007-D002, EFDA_D_2PDT9U.
        Also, see asssociated paper: Suarez et al. (2021), On the use of CFD
        to obtain head loss coefficients in hydraulic systems and it's appliaction
        to liquid metal flows in nuclear fusion reactor blankets, Plasma. Phys.
        Control fusion, 63, 124002

        """
        # Magnetic feild strength in IB or OB blanket
        if label == "Inboard blanket breeder liquid":
            b_mag = fwbs_variables.b_mag_blkt[0]  # IB
        if label == "Outboard blanket breeder liquid":
            b_mag = fwbs_variables.b_mag_blkt[1]  # OB

        # Half-widths
        # N.B. a_bz_liq (width in the toroidal direction) is in B direction
        half_wth_a = fwbs_variables.a_bz_liq * 0.5
        half_wth_b = fwbs_variables.b_bz_liq * 0.5

        # If have thin conducting walls...
        if fwbs_variables.i_blkt_liquid_breeder_channel_type != 1:
            # Caculate resistances of fluid and walls
            r_i = half_wth_b / (conduct_liq * half_wth_a)
            r_w = half_wth_b / (
                fwbs_variables.bz_channel_conduct_liq * fwbs_variables.th_wall_secondary
            )
            big_c = r_i / r_w
            #  Calculate pressure drop for conducting wall [Miy1986]
            kp = big_c / (1 + half_wth_a / (3 * half_wth_b) + big_c)
            mhd_pressure_drop = kp * conduct_liq * vel * (b_mag**2) * l_channel

        # If have perfcetly insulating FCIs...
        else:
            # Calculate pressure drop for (perfectly) insulating FCI [Mal1995]
            mhd_pressure_drop = (
                vel * b_mag * l_channel * np.sqrt(conduct_liq * vsc / half_wth_a)
            )

        # Total (Pa)
        liquid_breeder_pressure_drop_mhd = num_pol * mhd_pressure_drop

        if output:
            po.osubhd(
                self.outfile,
                f"Liquid metal breeder/coolant MHD pressure drop for {label}",
            )

            if fwbs_variables.i_blkt_liquid_breeder_channel_type == 0:
                po.ocmmnt(
                    self.outfile,
                    "Flow channels have thin conducting walls (i_blkt_liquid_breeder_channel_type==0)",
                )
                po.ovarre(
                    self.outfile,
                    "Wall conductance (A V-1 m-1)",
                    "(bz_channel_conduct_liq)",
                    fwbs_variables.bz_channel_conduct_liq,
                    "OP ",
                )
            elif fwbs_variables.i_blkt_liquid_breeder_channel_type == 2:
                po.ocmmnt(
                    self.outfile,
                    "Flow Channel Inserts (FCIs) used (i_blkt_liquid_breeder_channel_type==2)",
                )
                po.ovarre(
                    self.outfile,
                    "FCI conductance (A V-1 m-1)",
                    "(bz_channel_conduct_liq)",
                    fwbs_variables.bz_channel_conduct_liq,
                    "OP ",
                )
            else:
                po.ocmmnt(
                    self.outfile,
                    "Flow Channel Inserts - assumed perfect insulator (i_blkt_liquid_breeder_channel_type==1)",
                )

            po.ovarre(
                self.outfile,
                "Length of long poloidal secion of channel (m)",
                "(l_channel)",
                l_channel,
                "OP ",
            )
            po.ovarin(
                self.outfile,
                "Number of long poloidal secions of channel",
                "(num_pol)",
                num_pol,
                "OP ",
            )
            po.ovarre(
                self.outfile,
                "MHD pressure drop (Pa)",
                "(liquid_breeder_pressure_drop_mhd)",
                liquid_breeder_pressure_drop_mhd,
                "OP ",
            )

        return liquid_breeder_pressure_drop_mhd

    def calculate_pipe_bend_radius(self, i_ps: int):
        """Set the pipe bend radius based on the coolant type.

        Parameters
        ----------
        i_ps :
            switch for primary or secondary coolant
        i_ps: int :

        """
        # If primary coolant or secondary coolant (See DCLL)
        radius_pipe_90_deg_bend = (
            (3 * fwbs_variables.radius_fw_channel)
            if (i_ps == 1)
            else fwbs_variables.b_bz_liq
        )
        radius_pipe_180_deg_bend = radius_pipe_90_deg_bend / 2

        return radius_pipe_90_deg_bend, radius_pipe_180_deg_bend

    def coolant_friction_pressure_drop(
        self,
        i_ps: int,
        radius_pipe_90_deg_bend: float,
        radius_pipe_180_deg_bend: float,
        n_pipe_90_deg_bends: float,
        n_pipe_180_deg_bends: float,
        len_pipe: float,
        den_coolant: float,
        visc_coolant: float,
        vel_coolant: float,
        label: str,
        output: bool = False,
    ):
        """Pressure drops are calculated for a pipe with a number of 90
        and 180 degree bends. The pressure drop due to frictional forces along
        the total straight length of the pipe is calculated, then the pressure
        drop due to the bends is calculated. The total pressure drop is the sum
        of all contributions.

        Parameters
        ----------
        i_ps :
            switch for primary or secondary coolant
        radius_pipe_90_deg_bend :
            radius of 90 degree bend in pipe (m)
        radius_pipe_180_deg_bend :
            radius of 180 degree bend in pipe (m)
        n_pipe_90_deg_bends :
            number of 90 degree bends in the pipe
        n_pipe_180_deg_bends :
            number of 180 degree bends in the pipe
        len_pipe :
            total flow length along pipe (m)
        den_coolant :
            coolant density (kg/m³)
        visc_coolant :
            coolant viscosity (Pa s)
        vel_coolant :
            coolant flow velocity (m/s)
        label :
            component name
        output :
            boolean of whether to write data to output file

        :Notes:
            Darcy-Weisbach Equation (straight pipe):

            ΔP = λ * L/D * (p 〈v〉²) / 2

            λ - Darcy friction factor, L - pipe length, D - hydraulic diameter,
            p - fluid density, 〈v〉 - fluid flow average velocity

            This function also calculates pressure drop equations for elbow bends,
            with modified coefficients.

            N.B. Darcy friction factor is estimated from the Haaland approximation.
        """

        # Calculate hydraulic dimater for round or retancular pipe (m)
        dia_pipe = self.pipe_hydraulic_diameter(i_ps)

        # Reynolds number
        reynolds_number = den_coolant * vel_coolant * dia_pipe / visc_coolant

        # Calculate Darcy friction factor
        # N.B. friction function Uses Haaland approx. which assumes a filled circular pipe.
        # Use dh which allows us to do fluid calculations for non-cicular tubes
        # (dh is estimate appropriate for fully developed flow).

        darcy_friction_factor = self.fw.darcy_friction_haaland(
            reynolds_number,
            fwbs_variables.roughness_fw_channel,
            fwbs_variables.radius_fw_channel,
        )

        # Pressure drop coefficient

        # Straight section
        f_straight = darcy_friction_factor * len_pipe / dia_pipe

        # 90 degree elbow pressure drop coefficient
        f_elbow_90 = self.elbow_coeff(
            radius_pipe_elbow=radius_pipe_90_deg_bend,
            deg_pipe_elbow=90.0,
            darcy_friction=darcy_friction_factor,
            dia_pipe=dia_pipe,
        )

        # 180 degree elbow pressure drop coefficient
        f_elbow_180 = self.elbow_coeff(
            radius_pipe_elbow=radius_pipe_180_deg_bend,
            deg_pipe_elbow=180.0,
            darcy_friction=darcy_friction_factor,
            dia_pipe=dia_pipe,
        )

        # Pressure drop due to friction in straight sections
        dpres_straight = f_straight * 0.5 * den_coolant * vel_coolant**2

        # Pressure drop due to 90 and 180 degree bends
        dpres_90 = n_pipe_90_deg_bends * f_elbow_90 * 0.5 * den_coolant * vel_coolant**2
        dpres_180 = (
            n_pipe_180_deg_bends * f_elbow_180 * 0.5 * den_coolant * vel_coolant**2
        )

        # Total pressure drop (Pa)
        dpres_total = dpres_straight + dpres_90 + dpres_180

        if output:
            po.osubhd(self.outfile, f"Pressure drop (friction) for {label}")
            po.ovarre(self.outfile, "Reynolds number", "(reyn)", reynolds_number, "OP ")
            po.ovarre(
                self.outfile,
                "Darcy friction factor",
                "(lambda)",
                darcy_friction_factor,
                "OP ",
            )
            po.ovarre(
                self.outfile,
                "Pressure drop (Pa)",
                "(pressure_drop)",
                dpres_total,
                "OP ",
            )
            po.ocmmnt(self.outfile, "This is the sum of the following:")
            po.ovarre(
                self.outfile,
                "            Straight sections (Pa)",
                "(pdropstraight)",
                dpres_straight,
                "OP ",
            )
            po.ovarre(
                self.outfile,
                "            90 degree bends (Pa)",
                "(pdrop90)",
                dpres_90,
                "OP ",
            )
            po.ovarre(
                self.outfile,
                "            180 degree bends (Pa)",
                "(pdrop180)",
                dpres_180,
                "OP ",
            )

            # TN: always write verbose stuff, it has no harm
            po.ovarre(
                self.outfile,
                "Straight section pressure drop coefficient",
                "(kstrght)",
                f_straight,
                "OP ",
            )
            po.ovarre(
                self.outfile,
                "90 degree elbow coefficient",
                "(kelbwn)",
                f_elbow_90,
                "OP ",
            )
            po.ovarre(
                self.outfile,
                "180 degree elbow coefficient coefficient",
                "(kelbwt)",
                f_elbow_180,
                "OP ",
            )

        return dpres_total

    def pipe_hydraulic_diameter(self, i_channel_shape):
        """Caculate the hydraulic diameter (m) for a given coolant pipe size/shape.


        Parameters
        ----------
        i_channel_shape :
            switch for circular or rectangular channel crossection.
            Shape depends on whether primary or secondary coolant
        """
        # If primary coolant then circular channels assumed
        if i_channel_shape == 1:
            return 2.0 * fwbs_variables.radius_fw_channel

        # If secondary coolant then rectangular channels assumed
        if i_channel_shape == 2:
            return (
                2
                * fwbs_variables.a_bz_liq
                * fwbs_variables.b_bz_liq
                / (fwbs_variables.a_bz_liq + fwbs_variables.b_bz_liq)
            )

        raise ProcessValueError(
            f"i_channel_shape ={i_channel_shape} is an invalid option."
        )

    def elbow_coeff(
        self,
        radius_pipe_elbow: float,
        deg_pipe_elbow: float,
        darcy_friction: float,
        dia_pipe: float,
    ) -> float:
        """Calculates elbow bend coefficients for pressure drop calculations.

        Parameters
        ----------
        radius_pipe_elbow : float
            Pipe elbow radius (m)
        deg_pipe_elbow : float
            Pipe elbow angle (degrees)
        darcy_friction : float
            Darcy friction factor
        dia_pipe : float
            Pipe diameter (m)

        Returns
        -------
        float
            Elbow coefficient for pressure drop calculation

        References
        ----------
        - [Ide1969] Idel'Cik, I. E. (1969), Memento des pertes de charge,
        Collection de la Direction des Etudes et Recherches d'Electricité de France.
        """

        if deg_pipe_elbow == 90:
            a = 1.0
        elif deg_pipe_elbow < 70:
            a = 0.9 * np.sin(deg_pipe_elbow * np.pi / 180.0)
        elif deg_pipe_elbow > 100:
            a = 0.7 + (0.35 * np.sin((deg_pipe_elbow / 90.0) * (np.pi / 180.0)))
        else:
            raise ProcessValueError(
                "No formula for 70 <= elbow angle(deg) <= 100, only 90 deg option available in this range."
            )

        r_ratio = radius_pipe_elbow / dia_pipe

        if r_ratio > 1:
            b = 0.21 / r_ratio**0.5
        elif r_ratio < 1:
            b = 0.21 / r_ratio**2.5
        else:
            b = 0.21

        # Singularity
        ximt = a * b

        # Friction
        xift = (
            (np.pi / 180.0)
            * darcy_friction
            * (radius_pipe_elbow / dia_pipe)
            * deg_pipe_elbow
        )

        # Elbow Coefficient
        return ximt + xift

    def coolant_pumping_power(
        self,
        output: bool,
        i_liquid_breeder: int,
        temp_coolant_pump_outlet: float,
        temp_coolant_pump_inlet: float,
        pres_coolant_pump_inlet: float,
        dpres_coolant: float,
        mflow_coolant_total: float,
        primary_coolant_switch: str,
        den_coolant: float,
        label: str,
    ) -> float:
        """Calculate the coolant pumping power in MW for the first wall (FW) or breeding blanket (BZ) coolant.

        Parameters
        ----------
        output : bool
            Whether to write data to output file.
        i_liquid_breeder : int
            Switch for primary coolant or secondary coolant/breeder (1=primary He/H2O, 2=secondary PbLi/Li).
        temp_coolant_pump_outlet : float
            Pump outlet temperature (K).
        temp_coolant_pump_inlet : float
            Pump inlet temperature (K).
        pressure : float
            Outlet (pump inlet) coolant pressure (Pa).
        dpres_coolant : float
            Coolant pressure drop (Pa).
        mflow_coolant_total : float
            Total coolant mass flow rate in (kg/s).
        primary_coolant_switch : str
            Name of FW/blanket coolant (e.g., "Helium" or "Water") if icoolpump=1.
        den_coolant : float
            Density of coolant or liquid breeder (kg/m³).
        label : str
            Description label for output.

        Returns
        -------
        float
            Pumping power in MW.

        References
        ----------
            - Idel'Cik, I. E. (1969), Memento des pertes de charge
            - S.P. Sukhatme (2005), A Textbook on Heat Transfer
        """

        # Pump outlet pressure (Pa)
        # The pump adds the pressure lost going through the coolant channels back
        pres_coolant_pump_outlet = pres_coolant_pump_inlet + dpres_coolant

        # Adiabatic index for helium or water
        gamma = (5 / 3) if fwbs_variables.i_blkt_coolant_type == 1 else (4 / 3)

        # If calculating for primary coolant
        if i_liquid_breeder == 1:
            # The pumping power is be calculated in the most general way,
            # using enthalpies before and after the pump.

            pump_outlet_fluid_properties = FluidProperties.of(
                fluid_name=primary_coolant_switch,
                temperature=temp_coolant_pump_outlet,
                pressure=pres_coolant_pump_outlet,
            )

            # Assume isentropic pump so that s1 = s2
            s1 = pump_outlet_fluid_properties.entropy

            # Get specific enthalpy at the outlet (J/kg) before pump using pressure and entropy s1
            pump_inlet_fluid_properties = FluidProperties.of(
                fluid_name=primary_coolant_switch,
                pressure=pres_coolant_pump_inlet,
                entropy=s1,
            )

            # Pumping power (MW) is given by enthalpy change, with a correction for
            # the isentropic efficiency of the pump.
            fp = (
                temp_coolant_pump_outlet
                * (
                    1
                    - (pres_coolant_pump_outlet / pres_coolant_pump_inlet)
                    ** -((gamma - 1) / gamma)
                )
                / (
                    fwbs_variables.etaiso
                    * (temp_coolant_pump_inlet - temp_coolant_pump_outlet)
                )
            )
            pumppower = (
                1e-6
                * mflow_coolant_total
                * (
                    pump_outlet_fluid_properties.enthalpy
                    - pump_inlet_fluid_properties.enthalpy
                )
                / fwbs_variables.etaiso
            ) / (1 - fp)

        # If calculating for secondary coolant/breeder...
        else:
            # Calculate specific volume
            spec_vol = 1 / den_coolant

            # Pumping power (MW) is given by pressure change, with a correction for
            # the isentropic efficiency of the pump.
            fp = (
                temp_coolant_pump_outlet
                * (
                    1
                    - (pres_coolant_pump_outlet / pres_coolant_pump_inlet)
                    ** -((gamma - 1) / gamma)
                )
                / (
                    fwbs_variables.etaiso_liq
                    * (temp_coolant_pump_inlet - temp_coolant_pump_outlet)
                )
            )
            pumppower = (
                1e-6
                * mflow_coolant_total
                * spec_vol
                * dpres_coolant
                / fwbs_variables.etaiso_liq
            ) / (1 - fp)

        # Error for dpres_coolant too large
        if fp >= 1:
            raise ProcessValueError(
                "Pressure drops in coolant are too large to be feasible"
            )

        if output:
            po.oheadr(self.outfile, "Mechanical Pumping Power for " + label)
            po.osubhd(self.outfile, "Pumping power for " + label)

            po.ovarre(
                self.outfile, "Pumping power (MW)", "(pumppower)", pumppower, "OP "
            )
            po.ovarre(
                self.outfile,
                "FW or Blanket inlet (pump oulet) pressure (Pa)",
                "(coolpin)",
                pres_coolant_pump_outlet,
                "OP ",
            )
            po.ovarre(
                self.outfile,
                "FW or Blanket oulet (pump inlet) pressure (Pa)",
                "(pres_coolant_pump_inlet)",
                pres_coolant_pump_inlet,
                "OP ",
            )
            po.ovarre(
                self.outfile,
                "FW or Blanket total pressure drop (Pa)",
                "(dpres_coolant)",
                dpres_coolant,
                "OP ",
            )
            po.ovarre(
                self.outfile,
                "Mass flow rate in (kg/s) = ",
                "(mf)",
                mflow_coolant_total,
                "OP ",
            )

        return pumppower

outfile = constants.NOUT instance-attribute

fw = fw instance-attribute

component_volumes()

Calculate the blanket, shield, vacuum vessel and cryostat volumes

Calculate the blanket, shield, vacuum vessel and cryostat volumes

Source code in process/models/blankets/blanket_library.py
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
def component_volumes(self):
    """Calculate the blanket, shield, vacuum vessel and cryostat volumes

    Calculate the blanket, shield, vacuum vessel and cryostat volumes
    """
    # N.B. icomponent is a switch used to specify selected component: blanket=0, shield=1, vacuum vessel=2
    # Replaced separate subroutines for blnkt, shld and vv with fuction/subroutine with icomponent switch.

    # Calculate half-height
    # Blanket
    blanket_library.dz_blkt_half = self.component_half_height(icomponent=0)

    # D-shaped blanket and shield
    if physics_variables.itart == 1 or fwbs_variables.i_fw_blkt_vv_shape == 1:
        self.dshaped_component()

    # Elliptical blanket and shield
    else:
        self.elliptical_component()

    # Apply coverage factors to volumes and surface areas
    self.apply_coverage_factors()

component_half_height(icomponent)

Calculate the blanket, shield or vacuum vessel half-height Based on blanket_half_height, shield_half_height, vv_half_height

Parameters:

Name Type Description Default
icomponent int
required
Source code in process/models/blankets/blanket_library.py
 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
def component_half_height(self, icomponent: int):
    """Calculate the blanket, shield or vacuum vessel half-height
    Based on blanket_half_height, shield_half_height, vv_half_height

    Parameters
    ----------
    icomponent: int :

    """
    # Calculate component internal lower half-height (m)
    # Blanket
    if icomponent == 0:
        hbot = (
            build_variables.z_plasma_xpoint_lower
            + build_variables.dz_xpoint_divertor
            + divertor_variables.dz_divertor
            - build_variables.dz_blkt_upper
        )

    # Calculate component internal upper half-height (m)
    # If a double null machine then symmetric
    if divertor_variables.n_divertors == 2:
        htop = hbot
    else:
        # Blanket
        htop = build_variables.z_plasma_xpoint_upper + 0.5 * (
            build_variables.dr_fw_plasma_gap_inboard
            + build_variables.dr_fw_plasma_gap_outboard
            + build_variables.dr_fw_inboard
            + build_variables.dr_fw_outboard
        )

    # Average of top and bottom (m)
    return 0.5 * (htop + hbot)

dshaped_component()

Calculate component surface area and volume using dshaped scheme Based on dshaped_blanket, dshaped_shield, dshaped_vv

Source code in process/models/blankets/blanket_library.py
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
def dshaped_component(self):
    """Calculate component surface area and volume using dshaped scheme
    Based on dshaped_blanket, dshaped_shield, dshaped_vv
    """
    # Calculate major radius to outer edge of inboard ...
    # ... section (m)
    r1 = build_variables.r_shld_inboard_inner

    # ... blanket (m)

    r1 = r1 + build_variables.dr_shld_inboard + build_variables.dr_blkt_inboard

    # Horizontal distance between inside edges (m)
    # i.e. outer radius of inboard part to inner radius of outboard part
    # Blanket
    r2 = (
        build_variables.dr_fw_inboard
        + build_variables.dr_fw_plasma_gap_inboard
        + 2.0 * physics_variables.rminor
        + build_variables.dr_fw_plasma_gap_outboard
        + build_variables.dr_fw_outboard
    )

    (
        build_variables.a_blkt_inboard_surface,
        build_variables.a_blkt_outboard_surface,
        build_variables.a_blkt_total_surface,
    ) = dshellarea(r1, r2, blanket_library.dz_blkt_half)

    (
        fwbs_variables.vol_blkt_inboard,
        fwbs_variables.vol_blkt_outboard,
        fwbs_variables.vol_blkt_total,
    ) = dshellvol(
        r1,
        r2,
        blanket_library.dz_blkt_half,
        build_variables.dr_blkt_inboard,
        build_variables.dr_blkt_outboard,
        build_variables.dz_blkt_upper,
    )

elliptical_component()

Calculate component surface area and volume using elliptical scheme Based on elliptical_blanket, elliptical_shield, elliptical_vv

Source code in process/models/blankets/blanket_library.py
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
def elliptical_component(self):
    """Calculate component surface area and volume using elliptical scheme
    Based on elliptical_blanket, elliptical_shield, elliptical_vv
    """
    # Major radius to centre of inboard and outboard ellipses (m)
    # (coincident in radius with top of plasma)
    r1 = (
        physics_variables.rmajor
        - physics_variables.rminor * physics_variables.triang
    )

    # Calculate distance between r1 and outer edge of inboard ...
    # ... section (m)
    r2 = r1 - build_variables.r_shld_inboard_inner

    r2 = r2 - build_variables.dr_shld_inboard - build_variables.dr_blkt_inboard

    # Calculate distance between r1 and inner edge of outboard ...
    # ... section (m)
    r3 = build_variables.r_shld_outboard_outer - r1

    r3 = r3 - build_variables.dr_shld_outboard - build_variables.dr_blkt_outboard

    # Calculate surface area, assuming 100% coverage

    (
        build_variables.a_blkt_inboard_surface,
        build_variables.a_blkt_outboard_surface,
        build_variables.a_blkt_total_surface,
    ) = eshellarea(r1, r2, r3, blanket_library.dz_blkt_half)

    # Calculate volumes, assuming 100% coverage

    (
        fwbs_variables.vol_blkt_inboard,
        fwbs_variables.vol_blkt_outboard,
        fwbs_variables.vol_blkt_total,
    ) = eshellvol(
        r1,
        r2,
        r3,
        blanket_library.dz_blkt_half,
        build_variables.dr_blkt_inboard,
        build_variables.dr_blkt_outboard,
        build_variables.dz_blkt_upper,
    )

apply_coverage_factors()

Apply coverage factors to volumes

Apply coverage factors to volumes

Source code in process/models/blankets/blanket_library.py
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
def apply_coverage_factors(self):
    """Apply coverage factors to volumes

    Apply coverage factors to volumes
    """
    # Apply blanket coverage factors
    if divertor_variables.n_divertors == 2:
        # double null configuration
        build_variables.a_blkt_outboard_surface = (
            build_variables.a_blkt_total_surface
            * (
                1.0
                - 2.0 * fwbs_variables.f_ster_div_single
                - fwbs_variables.f_a_fw_outboard_hcd
            )
            - build_variables.a_blkt_inboard_surface
        )
    else:
        # single null configuration
        build_variables.a_blkt_outboard_surface = (
            build_variables.a_blkt_total_surface
            * (
                1.0
                - fwbs_variables.f_ster_div_single
                - fwbs_variables.f_a_fw_outboard_hcd
            )
            - build_variables.a_blkt_inboard_surface
        )

    build_variables.a_blkt_total_surface = (
        build_variables.a_blkt_inboard_surface
        + build_variables.a_blkt_outboard_surface
    )

    fwbs_variables.vol_blkt_outboard = (
        fwbs_variables.vol_blkt_total
        * (
            1.0
            - fwbs_variables.f_ster_div_single
            - fwbs_variables.f_a_fw_outboard_hcd
        )
        - fwbs_variables.vol_blkt_inboard
    )
    fwbs_variables.vol_blkt_total = (
        fwbs_variables.vol_blkt_inboard + fwbs_variables.vol_blkt_outboard
    )

primary_coolant_properties(output)

Calculates the fluid properties of the Primary Coolant in the FW and BZ. Uses middle value of input and output temperatures of coolant. Curently have H20 and He options.

References: see pumppower function description

Parameters:

Name Type Description Default
output bool
required
Source code in process/models/blankets/blanket_library.py
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
def primary_coolant_properties(self, output: bool):
    """Calculates the fluid properties of the Primary Coolant in the FW and BZ.
    Uses middle value of input and output temperatures of coolant.
    Curently have H20 and He options.

    References: see pumppower function description

    Parameters
    ----------
    output: bool

    """

    # Make sure that, if the inputs for the FW and blanket inputs are different,
    # the i_fw_blkt_shared_coolant variable is appropriately set for separate coolants
    if (
        fwbs_variables.i_fw_coolant_type == "Helium"
        and fwbs_variables.i_blkt_coolant_type == 2
    ):
        fwbs_variables.i_fw_blkt_shared_coolant = 1
    if (
        fwbs_variables.i_fw_coolant_type == "Water"
        and fwbs_variables.i_blkt_coolant_type == 1
    ):
        fwbs_variables.i_fw_blkt_shared_coolant = 1

    # If FW and BB have same coolant...
    if fwbs_variables.i_fw_blkt_shared_coolant == 0:
        # Use FW inlet temp and BB outlet temp
        mid_temp = (
            fwbs_variables.temp_fw_coolant_in + fwbs_variables.temp_blkt_coolant_out
        ) * 0.5
        # FW/BB
        fw_bb_fluid_properties = FluidProperties.of(
            fwbs_variables.i_fw_coolant_type,
            temperature=mid_temp,
            pressure=fwbs_variables.pres_fw_coolant,
        )
        fwbs_variables.den_fw_coolant = fw_bb_fluid_properties.density
        fwbs_variables.cp_fw = fw_bb_fluid_properties.specific_heat_const_p
        fwbs_variables.cv_fw = fw_bb_fluid_properties.specific_heat_const_v
        fwbs_variables.visc_fw_coolant = fw_bb_fluid_properties.viscosity

        fwbs_variables.den_blkt_coolant = fwbs_variables.den_fw_coolant
        fwbs_variables.visc_blkt_coolant = fwbs_variables.visc_fw_coolant
        fwbs_variables.cp_bl = fwbs_variables.cp_fw
        fwbs_variables.cv_bl = fwbs_variables.cv_fw

    # If FW and BB have different coolants...
    else:
        # FW
        mid_temp_fw = (
            fwbs_variables.temp_fw_coolant_in + fwbs_variables.temp_fw_coolant_out
        ) * 0.5
        fw_fluid_properties = FluidProperties.of(
            fwbs_variables.i_fw_coolant_type,
            temperature=mid_temp_fw,
            pressure=fwbs_variables.pres_fw_coolant,
        )
        fwbs_variables.den_fw_coolant = fw_fluid_properties.density
        fwbs_variables.cp_fw = fw_fluid_properties.specific_heat_const_p
        fwbs_variables.cv_fw = fw_fluid_properties.specific_heat_const_v
        fwbs_variables.visc_fw_coolant = fw_fluid_properties.viscosity

        # BB
        mid_temp_bl = (
            fwbs_variables.temp_blkt_coolant_in
            + fwbs_variables.temp_blkt_coolant_out
        ) * 0.5
        bb_fluid_properties = FluidProperties.of(
            "Helium" if fwbs_variables.i_blkt_coolant_type == 1 else "Water",
            temperature=mid_temp_bl,
            pressure=fwbs_variables.pres_blkt_coolant,
        )
        fwbs_variables.den_blkt_coolant = bb_fluid_properties.density
        fwbs_variables.cp_bl = bb_fluid_properties.specific_heat_const_p
        fwbs_variables.cv_bl = bb_fluid_properties.specific_heat_const_v
        fwbs_variables.visc_blkt_coolant = bb_fluid_properties.viscosity

    if (
        fwbs_variables.den_fw_coolant > 1e9
        or fwbs_variables.den_fw_coolant <= 0
        or np.isnan(fwbs_variables.den_fw_coolant)
    ):
        raise ProcessValueError(
            f"Error in primary_coolant_properties. {fwbs_variables.den_fw_coolant = }"
        )
    if (
        fwbs_variables.den_blkt_coolant > 1e9
        or fwbs_variables.den_blkt_coolant <= 0
        or np.isnan(fwbs_variables.den_blkt_coolant)
    ):
        raise ProcessValueError(
            f"Error in primary_coolant_properties. {fwbs_variables.den_blkt_coolant = }"
        )

    if output:
        po.oheadr(
            self.outfile, "First wall and blanket : (Primary) Coolant Properties"
        )
        po.ocmmnt(
            self.outfile,
            "Calculated using mid temp(s) of system (or systems if use different collant types).",
        )

        # FW (or FW/BB)
        if fwbs_variables.i_fw_blkt_shared_coolant == 1:
            po.osubhd(self.outfile, "First Wall :")

        po.ovarst(
            self.outfile,
            "Coolant type",
            "(i_fw_coolant_type)",
            f'"{fwbs_variables.i_fw_coolant_type}"',
        )
        po.ovarrf(
            self.outfile,
            "Density (kg m-3)",
            "(den_fw_coolant)",
            fwbs_variables.den_fw_coolant,
            "OP ",
        )
        po.ovarrf(
            self.outfile,
            "Viscosity (Pa s)",
            "(visc_fw_coolant)",
            fwbs_variables.visc_fw_coolant,
            "OP ",
        )

        po.ovarre(
            self.outfile,
            "Inlet Temperature (Celcius)",
            "(temp_fw_coolant_in)",
            fwbs_variables.temp_fw_coolant_in,
            "OP ",
        )

        if fwbs_variables.i_fw_blkt_shared_coolant == 0:
            po.ovarre(
                self.outfile,
                "Outlet Temperature (Celcius)",
                "(temp_blkt_coolant_out)",
                fwbs_variables.temp_blkt_coolant_out,
                "OP ",
            )

        else:
            po.ovarre(
                self.outfile,
                "Outlet Temperature (Celcius)",
                "(temp_fw_coolant_out)",
                fwbs_variables.temp_fw_coolant_out,
                "OP ",
            )

        # BB
        if fwbs_variables.i_fw_blkt_shared_coolant == 1:
            po.osubhd(self.outfile, "Breeding Blanket :")

            if fwbs_variables.i_blkt_coolant_type == 1:
                po.ocmmnt(
                    self.outfile, "Coolant type (i_blkt_coolant_type=1), Helium"
                )
            if fwbs_variables.i_blkt_coolant_type == 2:
                po.ocmmnt(
                    self.outfile, "Coolant type (i_blkt_coolant_type=2), Water"
                )
            po.ovarrf(
                self.outfile,
                "Density (kg m-3)",
                "(den_blkt_coolant)",
                fwbs_variables.den_blkt_coolant,
                "OP ",
            )
            po.ovarrf(
                self.outfile,
                "Viscosity (Pa s)",
                "(visc_blkt_coolant)",
                fwbs_variables.visc_blkt_coolant,
                "OP ",
            )

            po.ovarre(
                self.outfile,
                "Inlet Temperature (Celcius)",
                "(temp_blkt_coolant_in)",
                fwbs_variables.temp_blkt_coolant_in,
                "OP ",
            )
            po.ovarre(
                self.outfile,
                "Outlet Temperature (Celcius)",
                "(temp_blkt_coolant_out)",
                fwbs_variables.temp_blkt_coolant_out,
                "OP ",
            )

set_blanket_module_geometry()

Sets the geometry parameters for blanket modules, including coolant channel dimensions, module segmentation, and flow lengths, based on the current configuration and input variables.

The method performs the following steps: - Determines inboard and outboard coolant channel radial lengths based on blanket type. - Segments the blanket modules poloidally and toroidally according to input segmentation settings. - Calculates the toroidal segment lengths for inboard and outboard blanket modules. - Computes the poloidal height of blanket modules. - For dual coolant blankets, calculates the minimum available space for liquid breeder pipes in radial, toroidal, and poloidal directions, and checks for geometric constraints. - Calculates total flow lengths for primary coolant channels, used in pressure drop calculations.

Raises:

Type Description
Error

If the poloidal segment length is less than three times the minimum liquid breeder pipe width.

Source code in process/models/blankets/blanket_library.py
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
def set_blanket_module_geometry(self):
    """Sets the geometry parameters for blanket modules, including coolant channel dimensions,
    module segmentation, and flow lengths, based on the current configuration and input variables.

    The method performs the following steps:
    - Determines inboard and outboard coolant channel radial lengths based on blanket type.
    - Segments the blanket modules poloidally and toroidally according to input segmentation settings.
    - Calculates the toroidal segment lengths for inboard and outboard blanket modules.
    - Computes the poloidal height of blanket modules.
    - For dual coolant blankets, calculates the minimum available space for liquid breeder pipes
      in radial, toroidal, and poloidal directions, and checks for geometric constraints.
    - Calculates total flow lengths for primary coolant channels, used in pressure drop calculations.

    Raises
    ------
    Error
        If the poloidal segment length is less than three times the minimum liquid breeder pipe width.
    """

    if fwbs_variables.i_blanket_type == 5:
        # Unless DCLL then we will use BZ
        blanket_library.len_blkt_inboard_coolant_channel_radial = (
            build_variables.blbuith
        )
        blanket_library.len_blkt_outboard_coolant_channel_radial = (
            build_variables.blbuoth
        )
    else:
        blanket_library.len_blkt_inboard_coolant_channel_radial = (
            0.8e0 * build_variables.dr_blkt_inboard
        )
        blanket_library.len_blkt_outboard_coolant_channel_radial = (
            0.8e0 * build_variables.dr_blkt_outboard
        )

    # Using the total perimeter of the machine, segment the outboard
    # blanket into nblktmodp*nblktmodt modules, all assumed to be the same size

    # If SMS blanket then do not have separate poloidal modules....
    # Should not need this as n_blkt_inboard_modules_poloidal is input but make sure here.
    if fwbs_variables.i_blkt_module_segmentation == 1:
        fwbs_variables.n_blkt_inboard_modules_poloidal = 1
        fwbs_variables.n_blkt_outboard_modules_poloidal = 1

    if physics_variables.itart == 1 or fwbs_variables.i_fw_blkt_vv_shape == 1:
        blanket_library.len_blkt_inboard_segment_poloidal = self.calculate_dshaped_inboard_blkt_segment_poloidal(
            dz_blkt_half=blanket_library.dz_blkt_half,
            n_blkt_inboard_modules_poloidal=fwbs_variables.n_blkt_inboard_modules_poloidal,
        )

        blanket_library.len_blkt_outboard_segment_poloidal = self.calculate_dshaped_outboard_blkt_segment_poloidal(
            n_blkt_outboard_modules_poloidal=fwbs_variables.n_blkt_outboard_modules_poloidal,
            dr_fw_plasma_gap_inboard=build_variables.dr_fw_plasma_gap_inboard,
            rminor=physics_variables.rminor,
            dr_fw_plasma_gap_outboard=build_variables.dr_fw_plasma_gap_outboard,
            dz_blkt_half=blanket_library.dz_blkt_half,
            n_divertors=divertor_variables.n_divertors,
            f_ster_div_single=fwbs_variables.f_ster_div_single,
        )
    else:
        blanket_library.len_blkt_inboard_segment_poloidal = self.calculate_elliptical_inboard_blkt_segment_poloidal(
            rmajor=physics_variables.rmajor,
            rminor=physics_variables.rminor,
            triang=physics_variables.triang,
            dr_fw_plasma_gap_inboard=build_variables.dr_fw_plasma_gap_inboard,
            dz_blkt_half=blanket_library.dz_blkt_half,
            n_blkt_inboard_modules_poloidal=fwbs_variables.n_blkt_inboard_modules_poloidal,
            n_divertors=divertor_variables.n_divertors,
            f_ster_div_single=fwbs_variables.f_ster_div_single,
        )

        blanket_library.len_blkt_outboard_segment_poloidal = self.calculate_elliptical_outboard_blkt_segment_poloidal(
            rmajor=physics_variables.rmajor,
            rminor=physics_variables.rminor,
            triang=physics_variables.triang,
            dz_blkt_half=blanket_library.dz_blkt_half,
            dr_fw_plasma_gap_outboard=build_variables.dr_fw_plasma_gap_outboard,
            n_blkt_outboard_modules_poloidal=fwbs_variables.n_blkt_outboard_modules_poloidal,
            n_divertors=divertor_variables.n_divertors,
            f_ster_div_single=fwbs_variables.f_ster_div_single,
        )

    # If liquid breeder or dual coolant blanket then calculate
    if fwbs_variables.i_blkt_dual_coolant > 0:
        # Use smallest space available to pipes for pipe sizes in pumping calculations (worst case)
        if fwbs_variables.i_blkt_inboard == 1:
            # Radial direction
            fwbs_variables.b_bz_liq = (
                min(
                    (
                        blanket_library.len_blkt_inboard_coolant_channel_radial
                        * fwbs_variables.r_f_liq_ib
                    ),
                    (
                        blanket_library.len_blkt_outboard_coolant_channel_radial
                        * fwbs_variables.r_f_liq_ob
                    ),
                )
                / fwbs_variables.nopol
            )
            # Toroidal direction
            fwbs_variables.a_bz_liq = (
                min(
                    (
                        blanket_library.len_blkt_inboard_segment_toroidal
                        * fwbs_variables.w_f_liq_ib
                    ),
                    (
                        blanket_library.len_blkt_outboard_segment_toroidal
                        * fwbs_variables.w_f_liq_ob
                    ),
                )
                / fwbs_variables.nopipes
            )
            # Poloidal
            if (
                blanket_library.len_blkt_inboard_segment_poloidal
                < (fwbs_variables.b_bz_liq * 3)
            ) or (
                blanket_library.len_blkt_outboard_segment_poloidal
                < (fwbs_variables.b_bz_liq * 3)
            ):
                logger.error(
                    "Your blanket modules are too small for the Liquid Metal pipes"
                )

        # Unless there is no IB blanket...
        else:
            # Radial direction
            fwbs_variables.b_bz_liq = (
                blanket_library.len_blkt_outboard_coolant_channel_radial
                * fwbs_variables.r_f_liq_ob
            ) / fwbs_variables.nopol
            # Toroidal direction
            fwbs_variables.a_bz_liq = (
                blanket_library.len_blkt_outboard_segment_toroidal
                * fwbs_variables.w_f_liq_ob
            ) / fwbs_variables.nopipes
            # Poloidal
            if blanket_library.len_blkt_outboard_segment_poloidal < (
                fwbs_variables.b_bz_liq * 3
            ):
                logger.error(
                    "Your blanket modules are too small for the Liquid Metal pipes"
                )

    # Calculate total flow lengths, used for pressure drop calculation
    # Blanket primary coolant flow
    blanket_library.len_blkt_inboard_channel_total = (
        fwbs_variables.n_blkt_inboard_module_coolant_sections_radial
        * blanket_library.len_blkt_inboard_coolant_channel_radial
        + fwbs_variables.n_blkt_inboard_module_coolant_sections_poloidal
        * blanket_library.len_blkt_inboard_segment_poloidal
    )
    blanket_library.len_blkt_outboard_channel_total = (
        fwbs_variables.n_blkt_outboard_module_coolant_sections_radial
        * blanket_library.len_blkt_outboard_coolant_channel_radial
        + fwbs_variables.n_blkt_outboard_module_coolant_sections_poloidal
        * blanket_library.len_blkt_outboard_segment_poloidal
    )

thermo_hydraulic_model_pressure_drop_calculations(output)

Function that calculates the pressure drops for the thermo-hydraulic model when i_p_coolant_pumping = 2.

Within are calculations necessary for the deltap_tot function but not required for other calculations within the thermo-hydraulic model as then they are just included there.

Returns the pressure drops as a list with the number of entries dependent upon the switches i_blkt_dual_coolant and i_blkt_inboard.

Parameters:

Name Type Description Default
output bool
required
Source code in process/models/blankets/blanket_library.py
 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
def thermo_hydraulic_model_pressure_drop_calculations(self, output: bool):
    """Function that calculates the pressure drops for the thermo-hydraulic model
    when i_p_coolant_pumping = 2.

    Within are calculations necessary for the deltap_tot function but not required
    for other calculations within the thermo-hydraulic model as then they are just
    included there.

    Returns the pressure drops as a list with the number of entries dependent upon
    the switches i_blkt_dual_coolant and i_blkt_inboard.

    Parameters
    ----------
    output: bool

    """
    npoltoti = 0
    npoltoto = 0
    npblkti_liq = 0
    npblkto_liq = 0

    # Blanket secondary coolant/breeder flow
    pollengi = blanket_library.len_blkt_inboard_segment_poloidal
    pollengo = blanket_library.len_blkt_outboard_segment_poloidal
    fwbs_variables.nopol = 2
    fwbs_variables.nopipes = 4
    bzfllengi_liq = (
        fwbs_variables.bzfllengi_n_rad_liq
        * blanket_library.len_blkt_inboard_coolant_channel_radial
        + fwbs_variables.bzfllengi_n_pol_liq
        * blanket_library.len_blkt_inboard_segment_poloidal
    )
    bzfllengo_liq = (
        fwbs_variables.bzfllengo_n_rad_liq
        * blanket_library.len_blkt_outboard_coolant_channel_radial
        + fwbs_variables.bzfllengo_n_pol_liq
        * blanket_library.len_blkt_outboard_segment_poloidal
    )

    # ======================================================================

    # Coolant channel bends

    # Number of angle turns in FW and blanket flow channels, n.b. these are the
    # same for CCFE HCPB and KIT DCLL. FW is also be the same for DCLL MMS ans SMS.

    N_FW_PIPE_90_DEG_BENDS = 2
    N_FW_PIPE_180_DEG_BENDS = 0

    # N.B. This is for BZ only, does not include MF/BSS.
    if fwbs_variables.i_blkt_dual_coolant in (1, 2):
        N_BLKT_PIPE_90_DEG_BENDS = 4
        N_BLKT_PIPE_180_DEG_BENDS = 1
        no90bz_liq = 2
        no180bz_liq = 1
    else:
        N_BLKT_PIPE_90_DEG_BENDS = 4
        N_BLKT_PIPE_180_DEG_BENDS = 1

    # ======================================================================

    # FW Pipe Flow and Velocity

    # Mass flow rate per FW coolant pipe (kg/s):
    blanket_library.mflow_fw_inboard_coolant_channel = (
        blanket_library.mflow_fw_inboard_coolant_total
        / blanket_library.n_fw_inboard_channels
    )
    blanket_library.mflow_fw_outboard_coolant_channel = (
        blanket_library.mflow_fw_outboard_coolant_total
        / blanket_library.n_fw_outboard_channels
    )

    # Coolant velocity in FW (m/s)
    vel_fw_inboard_coolant = self.flow_velocity(
        i_channel_shape=1,
        mass_flow_rate=blanket_library.mflow_fw_inboard_coolant_channel,
        flow_density=fwbs_variables.den_fw_coolant,
    )
    vel_fw_outboard_coolant = self.flow_velocity(
        i_channel_shape=1,
        mass_flow_rate=blanket_library.mflow_fw_outboard_coolant_channel,
        flow_density=fwbs_variables.den_fw_coolant,
    )

    # If the blanket is dual-coolant...
    if fwbs_variables.i_blkt_dual_coolant == 2:
        # Calc total num of pipes (in all inboard modules) from
        # coolant frac and channel dimensions
        # Assumes up/down flow, two 90 deg bends per length
        blanket_library.n_blkt_outboard_channels = (
            fwbs_variables.f_a_blkt_cooling_channels
            * fwbs_variables.vol_blkt_outboard
        ) / (
            np.pi
            * fwbs_variables.radius_fw_channel
            * fwbs_variables.radius_fw_channel
            * blanket_library.len_blkt_outboard_channel_total
        )
        npblkto_liq = (
            fwbs_variables.nopipes
            * fwbs_variables.n_blkt_outboard_modules_toroidal
            * fwbs_variables.n_blkt_outboard_modules_poloidal
        )

        # Mass flow rate per coolant pipe
        blanket_library.mfblktpo = (
            blanket_library.mflow_blkt_outboard_coolant
            / blanket_library.n_blkt_outboard_channels
        )
        mfblktpo_liq = blanket_library.mfblkto_liq / npblkto_liq
        # Coolant velocites in blanket (m/s)
        # Assume BZ structure has same channel width as FW
        blanket_library.vel_blkt_outboard_coolant = self.flow_velocity(
            i_channel_shape=1,
            mass_flow_rate=blanket_library.mfblktpo,
            flow_density=fwbs_variables.den_blkt_coolant,
        )
        velblkto_liq = self.flow_velocity(
            i_channel_shape=2,
            mass_flow_rate=mfblktpo_liq,
            flow_density=fwbs_variables.den_liq,
        )

        if fwbs_variables.i_blkt_inboard == 1:
            # Calc total num of pipes (in all inboard modules) from
            # coolant frac and channel dimensions
            # Assumes up/down flow, two 90 deg bends per length
            blanket_library.n_blkt_inboard_channels = (
                fwbs_variables.f_a_blkt_cooling_channels
                * fwbs_variables.vol_blkt_inboard
            ) / (
                np.pi
                * fwbs_variables.radius_fw_channel
                * fwbs_variables.radius_fw_channel
                * blanket_library.len_blkt_inboard_channel_total
            )
            # Have DEMO DCLL set here for now
            npblkti_liq = (
                fwbs_variables.nopipes
                * fwbs_variables.n_blkt_inboard_modules_toroidal
                * fwbs_variables.n_blkt_inboard_modules_poloidal
            )

            # Mass flow rate per coolant pipe
            blanket_library.mfblktpi = (
                blanket_library.mflow_blkt_inboard_coolant
                / blanket_library.n_blkt_inboard_channels
            )
            blanket_library.mfblktpi_liq = blanket_library.mfblkti_liq / npblkti_liq

            # Coolant velocites in blanket (m/s)
            # Assume BZ structure has same channel width as FW
            blanket_library.vel_blkt_inboard_coolant = self.flow_velocity(
                i_channel_shape=1,
                mass_flow_rate=blanket_library.mfblktpi,
                flow_density=fwbs_variables.den_blkt_coolant,
            )
            velblkti_liq = self.flow_velocity(
                i_channel_shape=2,
                mass_flow_rate=blanket_library.mfblktpi_liq,
                flow_density=fwbs_variables.den_liq,
            )

    # If the blanket is single-coolant with liquid metal breeder...
    elif fwbs_variables.i_blkt_dual_coolant == 1:
        # Calc total num of pipes (in all inboard modules) from
        # coolant frac and channel dimensions
        # Assumes up/down flow, two 90 deg bends per length
        blanket_library.n_blkt_outboard_channels = (
            fwbs_variables.f_a_blkt_cooling_channels
            * fwbs_variables.vol_blkt_outboard
        ) / (
            np.pi
            * fwbs_variables.radius_fw_channel
            * fwbs_variables.radius_fw_channel
            * blanket_library.len_blkt_outboard_channel_total
        )
        npblkto_liq = (
            fwbs_variables.nopipes
            * fwbs_variables.n_blkt_outboard_modules_toroidal
            * fwbs_variables.n_blkt_outboard_modules_poloidal
        )

        # Mass flow rate per coolant pipe
        blanket_library.mfblktpo = (
            blanket_library.mflow_blkt_outboard_coolant
            / blanket_library.n_blkt_outboard_channels
        )

        # Coolant velocity in blanket (m/s)
        # Assume BZ structure has same channel width as FW
        blanket_library.vel_blkt_outboard_coolant = self.flow_velocity(
            i_channel_shape=1,
            mass_flow_rate=blanket_library.mfblktpo,
            flow_density=fwbs_variables.den_blkt_coolant,
        )

        # Get mass flow rate etc. for inboard blanket breeder flow for tritium extraction
        # Use the number of desired recirculations ([Aub2013]=10) and mass from dcll_masses
        # N.B. wht_liq is BZ mass, does not include manifold.
        blanket_library.mfblkto_liq = (
            fwbs_variables.n_liq_recirc * fwbs_variables.wht_liq_ob
        ) / (24 * 3600)
        blanket_library.mfblktpo_liq = blanket_library.mfblkto_liq / npblkto_liq
        velblkto_liq = self.flow_velocity(
            i_channel_shape=2,
            mass_flow_rate=blanket_library.mfblktpo_liq,
            flow_density=fwbs_variables.den_liq,
        )

        if fwbs_variables.i_blkt_inboard == 1:
            # Calc total num of pipes (in all inboard modules) from
            # coolant frac and channel dimensions
            # Assumes up/down flow, two 90 deg bends per length
            blanket_library.n_blkt_inboard_channels = (
                fwbs_variables.f_a_blkt_cooling_channels
                * fwbs_variables.vol_blkt_inboard
            ) / (
                np.pi
                * fwbs_variables.radius_fw_channel
                * fwbs_variables.radius_fw_channel
                * blanket_library.len_blkt_inboard_channel_total
            )
            # Have DEMO DCLL set here for now
            npblkti_liq = (
                fwbs_variables.nopipes
                * fwbs_variables.n_blkt_inboard_modules_toroidal
                * fwbs_variables.n_blkt_inboard_modules_poloidal
            )

            # Mass flow rate per coolant pipe
            blanket_library.mfblktpi = (
                blanket_library.mflow_blkt_inboard_coolant
                / blanket_library.n_blkt_inboard_channels
            )

            # Coolant velocity in blanket (m/s)
            # Assume BZ structure has same channel width as FW
            blanket_library.vel_blkt_inboard_coolant = self.flow_velocity(
                i_channel_shape=1,
                mass_flow_rate=blanket_library.mfblktpi,
                flow_density=fwbs_variables.den_blkt_coolant,
            )

            # Get mass flow rate etc. for inboard blanket breeder flow for tritium extraction
            # Use the number of desired recirculations ([Aub2013]=10) and mass from dcll_masses
            # N.B. wht_liq is BZ mass, does not include manifold.
            blanket_library.mfblkti_liq = (
                fwbs_variables.n_liq_recirc * fwbs_variables.wht_liq_ib
            ) / (24 * 3600)
            blanket_library.mfblktpi_liq = blanket_library.mfblkti_liq / npblkti_liq
            velblkti_liq = self.flow_velocity(
                i_channel_shape=2,
                mass_flow_rate=blanket_library.mfblktpi_liq,
                flow_density=fwbs_variables.den_liq,
            )

    # If the blanket is single-coolant with solid breeder...
    else:
        # Calculate total number of pipes (in all outboard modules) from coolant fraction and
        # channel dimensions (assumes up/down flow, two 90 deg bends per length)
        blanket_library.n_blkt_outboard_channels = (
            fwbs_variables.f_a_blkt_cooling_channels
            * fwbs_variables.vol_blkt_outboard
        ) / (
            np.pi
            * fwbs_variables.radius_fw_channel
            * fwbs_variables.radius_fw_channel
            * blanket_library.len_blkt_outboard_channel_total
        )

        # Mass flow rate per coolant pipe
        blanket_library.mfblktpo = (
            blanket_library.mflow_blkt_outboard_coolant
            / blanket_library.n_blkt_outboard_channels
        )

        # Coolant velocity in blanket (m/s)
        # Assume BZ structure has same channel width as FW
        blanket_library.vel_blkt_outboard_coolant = self.flow_velocity(
            i_channel_shape=1,
            mass_flow_rate=blanket_library.mfblktpo,
            flow_density=fwbs_variables.den_blkt_coolant,
        )

        if fwbs_variables.i_blkt_inboard == 1:
            # Calc total num of pipes (in all inboard modules) from
            # coolant frac and channel dimensions
            # Assumes up/down flow, two 90 deg bends per length
            blanket_library.n_blkt_inboard_channels = (
                fwbs_variables.f_a_blkt_cooling_channels
                * fwbs_variables.vol_blkt_inboard
            ) / (
                np.pi
                * fwbs_variables.radius_fw_channel
                * fwbs_variables.radius_fw_channel
                * blanket_library.len_blkt_inboard_channel_total
            )

            # Mass flow rate per coolant pipe
            blanket_library.mfblktpi = (
                blanket_library.mflow_blkt_inboard_coolant
                / blanket_library.n_blkt_inboard_channels
            )

            # Coolant velocity in blanket (m/s)
            # Assume BZ structure has same channel width as FW
            blanket_library.vel_blkt_inboard_coolant = self.flow_velocity(
                i_channel_shape=1,
                mass_flow_rate=blanket_library.mfblktpi,
                flow_density=fwbs_variables.den_blkt_coolant,
            )

    # FW Presure Drops ###############

    (
        fwbs_variables.radius_blkt_channel_90_bend,
        fwbs_variables.radius_blkt_channel_180_bend,
    ) = self.calculate_pipe_bend_radius(i_ps=1)

    dpres_fw_inboard_coolant = self.total_pressure_drop(
        output,
        icoolpump=1,
        vel_coolant=vel_fw_inboard_coolant,
        len_pipe=fwbs_variables.len_fw_channel,
        n_pipe_90_deg_bends=N_FW_PIPE_90_DEG_BENDS,
        n_pipe_180_deg_bends=N_FW_PIPE_180_DEG_BENDS,
        den_coolant=fwbs_variables.den_fw_coolant,
        visc_coolant_dynamic=fwbs_variables.visc_fw_coolant,
        coolant_electrical_conductivity=0.0e0,
        pol_channel_length=pollengi,
        nopolchan=npoltoti,
        label="Inboard first wall",
    )

    dpres_fw_outboard_coolant = self.total_pressure_drop(
        output,
        icoolpump=1,
        vel_coolant=vel_fw_outboard_coolant,
        len_pipe=fwbs_variables.len_fw_channel,
        n_pipe_90_deg_bends=N_FW_PIPE_90_DEG_BENDS,
        n_pipe_180_deg_bends=N_FW_PIPE_180_DEG_BENDS,
        den_coolant=fwbs_variables.den_fw_coolant,
        visc_coolant_dynamic=fwbs_variables.visc_fw_coolant,
        coolant_electrical_conductivity=0.0e0,
        pol_channel_length=pollengo,
        nopolchan=npoltoto,
        label="Outboard first wall",
    )

    # BB Presure Drops ###############
    (
        fwbs_variables.radius_blkt_channel_90_bend,
        fwbs_variables.radius_blkt_channel_180_bend,
    ) = self.calculate_pipe_bend_radius(i_ps=1)

    # Long polodal flows
    if fwbs_variables.i_blkt_inboard == 1:
        npoltoti = fwbs_variables.nopol * npblkti_liq
    npoltoto = fwbs_variables.nopol * npblkto_liq

    dpres_blkt_outboard_coolant = self.total_pressure_drop(
        output,
        icoolpump=1,
        vel_coolant=blanket_library.vel_blkt_outboard_coolant,
        len_pipe=blanket_library.len_blkt_outboard_channel_total,
        n_pipe_90_deg_bends=N_BLKT_PIPE_90_DEG_BENDS,
        n_pipe_180_deg_bends=N_BLKT_PIPE_180_DEG_BENDS,
        den_coolant=fwbs_variables.den_blkt_coolant,
        visc_coolant_dynamic=fwbs_variables.visc_blkt_coolant,
        coolant_electrical_conductivity=0.0e0,
        pol_channel_length=pollengo,
        nopolchan=npoltoto,
        label="Outboard blanket",
    )

    if fwbs_variables.i_blkt_inboard == 1:
        dpres_blkt_inboard_coolant = self.total_pressure_drop(
            output,
            icoolpump=1,
            vel_coolant=blanket_library.vel_blkt_inboard_coolant,
            len_pipe=blanket_library.len_blkt_inboard_channel_total,
            n_pipe_90_deg_bends=N_BLKT_PIPE_90_DEG_BENDS,
            n_pipe_180_deg_bends=N_BLKT_PIPE_180_DEG_BENDS,
            den_coolant=fwbs_variables.den_blkt_coolant,
            visc_coolant_dynamic=fwbs_variables.visc_blkt_coolant,
            coolant_electrical_conductivity=0.0e0,
            pol_channel_length=pollengi,
            nopolchan=npoltoti,
            label="Inboard blanket",
        )

    # If the blanket has a liquid metal breeder...
    if fwbs_variables.i_blkt_dual_coolant > 0:
        deltap_blo_liq = self.total_pressure_drop(
            output,
            icoolpump=2,
            vel_coolant=velblkto_liq,
            len_pipe=bzfllengo_liq,
            n_pipe_90_deg_bends=no90bz_liq,
            n_pipe_180_deg_bends=no180bz_liq,
            den_coolant=fwbs_variables.den_liq,
            visc_coolant_dynamic=fwbs_variables.dynamic_viscosity_liq,
            coolant_electrical_conductivity=fwbs_variables.electrical_conductivity_liq,
            pol_channel_length=pollengo,
            nopolchan=npoltoto,
            label="Outboard blanket breeder liquid",
        )
        if fwbs_variables.i_blkt_inboard == 1:
            deltap_bli_liq = self.total_pressure_drop(
                output,
                icoolpump=2,
                vel_coolant=velblkti_liq,
                len_pipe=bzfllengi_liq,
                n_pipe_90_deg_bends=no90bz_liq,
                n_pipe_180_deg_bends=no180bz_liq,
                den_coolant=fwbs_variables.den_liq,
                visc_coolant_dynamic=fwbs_variables.dynamic_viscosity_liq,
                coolant_electrical_conductivity=fwbs_variables.electrical_conductivity_liq,
                pol_channel_length=pollengi,
                nopolchan=npoltoti,
                label="Inboard blanket breeder liquid",
            )

            return [
                dpres_fw_inboard_coolant,
                dpres_fw_outboard_coolant,
                dpres_blkt_outboard_coolant,
                dpres_blkt_inboard_coolant,
                deltap_blo_liq,
                deltap_bli_liq,
            ]
        return [
            dpres_fw_inboard_coolant,
            dpres_fw_outboard_coolant,
            dpres_blkt_outboard_coolant,
            deltap_blo_liq,
        ]

    if fwbs_variables.i_blkt_inboard == 1:
        return [
            dpres_fw_inboard_coolant,
            dpres_fw_outboard_coolant,
            dpres_blkt_outboard_coolant,
            dpres_blkt_inboard_coolant,
        ]
    return [
        dpres_fw_inboard_coolant,
        dpres_fw_outboard_coolant,
        dpres_blkt_outboard_coolant,
    ]

calculate_dshaped_inboard_blkt_segment_poloidal(dz_blkt_half, n_blkt_inboard_modules_poloidal) staticmethod

Calculations for D-shaped inboard blanket module poloidal segment length

:param dz_blkt_half: Half-height of the blanket module (m) :type dz_blkt_half: float :param n_blkt_inboard_modules_poloidal: Number of inboard blanket modules in poloidal direction :type n_blkt_inboard_modules_poloidal: int

:return: Segment length of inboard blanket module in poloidal direction (m) :rtype: float

Source code in process/models/blankets/blanket_library.py
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
@staticmethod
def calculate_dshaped_inboard_blkt_segment_poloidal(
    dz_blkt_half: float, n_blkt_inboard_modules_poloidal: int
) -> float:
    """Calculations for D-shaped inboard blanket module poloidal segment length

    :param dz_blkt_half: Half-height of the blanket module (m)
    :type dz_blkt_half: float
    :param n_blkt_inboard_modules_poloidal: Number of inboard blanket modules in poloidal direction
    :type n_blkt_inboard_modules_poloidal: int

    :return: Segment length of inboard blanket module in poloidal direction (m)
    :rtype: float

    """

    # D-shaped machine
    # Segment vertical inboard surface (m)
    return (2.0 * dz_blkt_half) / n_blkt_inboard_modules_poloidal

calculate_dshaped_outboard_blkt_segment_poloidal(n_blkt_outboard_modules_poloidal, dr_fw_plasma_gap_inboard, rminor, dr_fw_plasma_gap_outboard, dz_blkt_half, n_divertors, f_ster_div_single) staticmethod

Calculations for D-shaped outboard blanket module poloidal segment length

:param n_blkt_outboard_modules_poloidal: Number of outboard blanket modules in poloidal direction :type n_blkt_outboard_modules_poloidal: int :param dr_fw_plasma_gap_inboard: Radial gap between inboard first wall and plasma (m) :type dr_fw_plasma_gap_inboard: float :param rminor: Minor radius of the plasma (m) :type rminor: float :param dr_fw_plasma_gap_outboard: Radial gap between outboard first wall and plasma (m) :type dr_fw_plasma_gap_outboard: float :param dz_blkt_half: Half-height of the blanket module (m) :type dz_blkt_half: float :param n_divertors: Number of divertors (1 for single null, 2 for double null) :type n_divertors: int :param f_ster_div_single: Fractional poloidal length of the divertor in single null configuration :type f_ster_div_single: float

:return: Segment length of outboard blanket module in poloidal direction (m) :rtype: float

Source code in process/models/blankets/blanket_library.py
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
@staticmethod
def calculate_dshaped_outboard_blkt_segment_poloidal(
    n_blkt_outboard_modules_poloidal: int,
    dr_fw_plasma_gap_inboard: float,
    rminor: float,
    dr_fw_plasma_gap_outboard: float,
    dz_blkt_half: float,
    n_divertors: int,
    f_ster_div_single: float,
) -> float:
    """
    Calculations for D-shaped outboard blanket module poloidal segment length

    :param n_blkt_outboard_modules_poloidal: Number of outboard blanket modules in poloidal direction
    :type n_blkt_outboard_modules_poloidal: int
    :param dr_fw_plasma_gap_inboard: Radial gap between inboard first wall and plasma (m)
    :type dr_fw_plasma_gap_inboard: float
    :param rminor: Minor radius of the plasma (m)
    :type rminor: float
    :param dr_fw_plasma_gap_outboard: Radial gap between outboard first wall and plasma (m)
    :type dr_fw_plasma_gap_outboard: float
    :param dz_blkt_half: Half-height of the blanket module (m)
    :type dz_blkt_half: float
    :param n_divertors: Number of divertors (1 for single null, 2 for double null)
    :type n_divertors: int
    :param f_ster_div_single: Fractional poloidal length of the divertor in single null configuration
    :type f_ster_div_single: float

    :return: Segment length of outboard blanket module in poloidal direction (m)
    :rtype: float


    """

    # Calculate perimeter of ellipse that defines the internal
    # surface of the outboard first wall / blanket

    # Mid-plane distance from inboard to outboard side (m)
    a = dr_fw_plasma_gap_inboard + 2.0 * rminor + dr_fw_plasma_gap_outboard

    # Internal half-height of blanket (m)
    b = dz_blkt_half

    # Calculate ellipse circumference using Ramanujan approximation (m)
    ptor = np.pi * (3.0 * (a + b) - np.sqrt((3.0 * a + b) * (a + 3.0 * b)))

    # Calculate blanket poloidal length and segment, subtracting divertor length (m)
    # kit hcll version only had the single null option
    if n_divertors == 2:
        # Double null configuration
        len_blkt_outboard_segment_poloidal = (
            0.5
            * ptor
            * (1.0 - 2.0 * f_ster_div_single)
            / n_blkt_outboard_modules_poloidal
        )
    else:
        # single null configuration
        len_blkt_outboard_segment_poloidal = (
            0.5 * ptor * (1.0 - f_ster_div_single) / n_blkt_outboard_modules_poloidal
        )

    return len_blkt_outboard_segment_poloidal

calculate_elliptical_inboard_blkt_segment_poloidal(rmajor, rminor, triang, dr_fw_plasma_gap_inboard, dz_blkt_half, n_blkt_inboard_modules_poloidal, n_divertors, f_ster_div_single) staticmethod

Calculations for elliptical inboard blanket module poloidal segment length

:param rmajor: Major radius of the plasma (m) :type rmajor: float :param rminor: Minor radius of the plasma (m) :type rminor: float :param triang: Triangularity of the plasma :type triang: float :param dr_fw_plasma_gap_inboard: Radial gap between inboard first wall and plasma (m) :type dr_fw_plasma_gap_inboard: float :param dz_blkt_half: Half-height of the blanket module (m) :type dz_blkt_half: float :param n_blkt_inboard_modules_poloidal: Number of inboard blanket modules in poloidal direction :type n_blkt_inboard_modules_poloidal: int :param n_divertors: Number of divertors (1 for single null, 2 for double null) :type n_divertors: int :param f_ster_div_single: Fractional poloidal length of the divertor in single null configuration :type f_ster_div_single: float

:return: Segment length of inboard blanket module in poloidal direction (m) :rtype: float

Source code in process/models/blankets/blanket_library.py
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
@staticmethod
def calculate_elliptical_inboard_blkt_segment_poloidal(
    rmajor: float,
    rminor: float,
    triang: float,
    dr_fw_plasma_gap_inboard: float,
    dz_blkt_half: float,
    n_blkt_inboard_modules_poloidal: int,
    n_divertors: int,
    f_ster_div_single: float,
) -> float:
    """
    Calculations for elliptical inboard blanket module poloidal segment length

    :param rmajor: Major radius of the plasma (m)
    :type rmajor: float
    :param rminor: Minor radius of the plasma (m)
    :type rminor: float
    :param triang: Triangularity of the plasma
    :type triang: float
    :param dr_fw_plasma_gap_inboard: Radial gap between inboard first wall and plasma (m)
    :type dr_fw_plasma_gap_inboard: float
    :param dz_blkt_half: Half-height of the blanket module (m)
    :type dz_blkt_half: float
    :param n_blkt_inboard_modules_poloidal: Number of inboard blanket modules in poloidal direction
    :type n_blkt_inboard_modules_poloidal: int
    :param n_divertors: Number of divertors (1 for single null, 2 for double null)
    :type n_divertors: int
    :param f_ster_div_single: Fractional poloidal length of the divertor in single null configuration
    :type f_ster_div_single: float

    :return: Segment length of inboard blanket module in poloidal direction (m)
    :rtype: float

    """

    # Major radius where half-ellipses 'meet' (m)
    r1 = rmajor - rminor * triang

    # Internal half-height of blanket (m)
    b = dz_blkt_half

    # Distance between r1 and nearest edge of inboard first wall / blanket (m)
    a = r1 - (rmajor - rminor - dr_fw_plasma_gap_inboard)

    # Calculate ellipse circumference using Ramanujan approximation (m)
    ptor = np.pi * (3.0 * (a + b) - np.sqrt((3.0 * a + b) * (a + 3.0 * b)))

    # Calculate inboard blanket poloidal length and segment, subtracting divertor length (m)
    # Assume divertor lies between the two ellipses, so fraction f_ster_div_single still applies

    # kit hcll version only had the single null option
    if n_divertors == 2:
        # Double null configuration
        len_blkt_inboard_segment_poloidal = (
            0.5
            * ptor
            * (1.0 - 2.0 * f_ster_div_single)
            / n_blkt_inboard_modules_poloidal
        )
    else:
        # single null configuration
        len_blkt_inboard_segment_poloidal = (
            0.5 * ptor * (1.0 - f_ster_div_single) / n_blkt_inboard_modules_poloidal
        )

    return len_blkt_inboard_segment_poloidal

calculate_elliptical_outboard_blkt_segment_poloidal(rmajor, rminor, triang, dz_blkt_half, dr_fw_plasma_gap_outboard, n_blkt_outboard_modules_poloidal, n_divertors, f_ster_div_single) staticmethod

Calculations for elliptical outboard blanket module poloidal segment length

:param rmajor: Major radius of the plasma (m) :type rmajor: float :param rminor: Minor radius of the plasma (m) :type rminor: float :param triang: Triangularity of the plasma :type triang: float :param dz_blkt_half: Half-height of the blanket module (m) :type dz_blkt_half: float :param dr_fw_plasma_gap_outboard: Radial gap between outboard first wall and plasma (m) :type dr_fw_plasma_gap_outboard: float :param n_blkt_outboard_modules_poloidal: Number of outboard blanket modules in poloidal direction :type n_blkt_outboard_modules_poloidal: int :param n_divertors: Number of divertors (1 for single null, 2 for double null) :type n_divertors: int :param f_ster_div_single: Fractional poloidal length of the divertor in single null configuration :type f_ster_div_single: float

:return: Segment length of outboard blanket module in poloidal direction (m) :rtype: float

Source code in process/models/blankets/blanket_library.py
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
@staticmethod
def calculate_elliptical_outboard_blkt_segment_poloidal(
    rmajor: float,
    rminor: float,
    triang: float,
    dz_blkt_half: float,
    dr_fw_plasma_gap_outboard: float,
    n_blkt_outboard_modules_poloidal: int,
    n_divertors: int,
    f_ster_div_single: float,
) -> float:
    """
    Calculations for elliptical outboard blanket module poloidal segment length

    :param rmajor: Major radius of the plasma (m)
    :type rmajor: float
    :param rminor: Minor radius of the plasma (m)
    :type rminor: float
    :param triang: Triangularity of the plasma
    :type triang: float
    :param dz_blkt_half: Half-height of the blanket module (m)
    :type dz_blkt_half: float
    :param dr_fw_plasma_gap_outboard: Radial gap between outboard first wall and plasma (m)
    :type dr_fw_plasma_gap_outboard: float
    :param n_blkt_outboard_modules_poloidal: Number of outboard blanket modules in poloidal direction
    :type n_blkt_outboard_modules_poloidal: int
    :param n_divertors: Number of divertors (1 for single null, 2 for double null)
    :type n_divertors: int
    :param f_ster_div_single: Fractional poloidal length of the divertor in single null configuration
    :type f_ster_div_single: float

    :return: Segment length of outboard blanket module in poloidal direction (m)
    :rtype: float


    """

    # Major radius where half-ellipses 'meet' (m)
    r1 = rmajor - rminor * triang

    # Internal half-height of blanket (m)
    b = dz_blkt_half

    # Distance between r1 and inner edge of outboard first wall / blanket (m)
    a = rmajor + rminor + dr_fw_plasma_gap_outboard - r1

    # Calculate ellipse circumference using Ramanujan approximation (m)
    ptor = np.pi * (3.0 * (a + b) - np.sqrt((3.0 * a + b) * (a + 3.0 * b)))

    # kit hcll version only had the single null option
    # Calculate outboard blanket poloidal length and segment, subtracting divertor length (m)
    if n_divertors == 2:
        # Double null configuration
        len_blkt_outboard_segment_poloidal = (
            0.5
            * ptor
            * (1.0 - 2.0 * f_ster_div_single)
            / n_blkt_outboard_modules_poloidal
        )
    else:
        # single null configuration
        len_blkt_outboard_segment_poloidal = (
            0.5 * ptor * (1.0 - f_ster_div_single) / n_blkt_outboard_modules_poloidal
        )
    return len_blkt_outboard_segment_poloidal

liquid_breeder_properties(output=False)

Calculates the fluid properties of the Liquid Metal Breeder/Coolant in the Blanket BZ Uses middle value of input and output temperatures of Liquid Metal Breeder/Coolant Curently have PbLi but can expand with e.g., Lithium

References:

 [Mal1995]   Malang and Mattas (1995), Comparison of lithium and the eutectic
             lead-lithium alloy, two candidate liquid metal breeder materials
             for self-cooled blankets, Fusion Engineering and Design 27, 399-406.

 [Mas2008]   Mas de les Valles et al. (2008), Lead-lithium material database for
             nuclear fusion technology, Journal of Nuclear Materials, Vol. 376(6).

 [Mar2019]   Martelli et al. (2019), Literature review of lead-lithium
             thermophysical properties, Fusion Engineering and Design, 138, 183-195.

Parameters:

Name Type Description Default
output bool

(Default value = False)

False
Source code in process/models/blankets/blanket_library.py
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
def liquid_breeder_properties(self, output: bool = False):
    """Calculates the fluid properties of the Liquid Metal Breeder/Coolant in the Blanket BZ
    Uses middle value of input and output temperatures of Liquid Metal Breeder/Coolant
    Curently have PbLi but can expand with e.g., Lithium



    References:

         [Mal1995]   Malang and Mattas (1995), Comparison of lithium and the eutectic
                     lead-lithium alloy, two candidate liquid metal breeder materials
                     for self-cooled blankets, Fusion Engineering and Design 27, 399-406.

         [Mas2008]   Mas de les Valles et al. (2008), Lead-lithium material database for
                     nuclear fusion technology, Journal of Nuclear Materials, Vol. 376(6).

         [Mar2019]   Martelli et al. (2019), Literature review of lead-lithium
                     thermophysical properties, Fusion Engineering and Design, 138, 183-195.

    Parameters
    ----------
    output: bool
         (Default value = False)
    """

    # Use mid temp
    if fwbs_variables.inlet_temp_liq == fwbs_variables.outlet_temp_liq:
        mid_temp_liq = fwbs_variables.outlet_temp_liq
    else:
        mid_temp_liq = (
            fwbs_variables.inlet_temp_liq + fwbs_variables.outlet_temp_liq
        ) * 0.5

    # If the liquid metal is PbLi...
    if fwbs_variables.i_blkt_liquid_breeder_type == 0:
        # PbLi from [Mar2019]
        # Constant pressure ~ 17 atmospheres ~ 1.7D6 Pa
        # Li content is ~ 17%
        #
        # density                      kg m-3          T in Kelvin     range = 508-880 K
        #
        # specific_heat                J kg-1 K-1      T in Kelvin     range = 508-880 K
        #
        # thermal_conductivity         W m-1 K-1       T in Celcius    range = 508-773 K
        #
        # dynamic_viscosity            Pa s            T in Celcius    range = 508-873 K
        #
        # electrical_conductivity      A V-1 m-1       T in Kelvin     range = 600-800 K

        # Caculate properties
        fwbs_variables.den_liq = 1.052e4 * (1 - mid_temp_liq * 1.13e-4)

        fwbs_variables.specific_heat_liq = 1.95e2 - mid_temp_liq * 9.116e-3

        fwbs_variables.thermal_conductivity_liq = (
            1.95 + (mid_temp_liq - 273.15) * 1.96e-2
        )

        fwbs_variables.dynamic_viscosity_liq = (
            6.11e-3
            - (2.257e-5 * (mid_temp_liq - 273.15))
            + (3.766e-8 * (mid_temp_liq - 273.15) ** 2)
            - (2.289e-11 * (mid_temp_liq - 273.15) ** 3)
        )

        t_ranges = np.zeros((5, 2))

        t_ranges[:4, 0] = 508.0
        t_ranges[:4, 1] = 880.0

        fwbs_variables.electrical_conductivity_liq = 1.0 / (
            1.03e-6 - (6.75e-11 * mid_temp_liq) + (4.18e-13 * mid_temp_liq**2)
        )

        t_ranges[4, 0] = 600.0
        t_ranges[4, 1] = 800.0

    # If the liquid metal is Li...
    elif fwbs_variables.i_blkt_liquid_breeder_type == 1:
        # Temporary - should be updated with information from Li reviews conducted at CCFE once completed
        # Li Properties from [Mal1995] at 300 Celcius
        # den_liq = 505                            kg/m3
        # specific_heat_liq = 4260                 J kg-1 K-1
        # thermal_conductivity_liq = 46            W m-1 K-1
        # dynamic_viscosity_liq = 1.0D-6           m2 s-1
        # electrical_conductivity_liq = 3.03D6     A V-1 m-1

        # New from 'Application of lithium in systems of fusion reactors. 1. Physical and chemical properties of lithium'
        # Lyublinski et al., 2009, Plasma Devicec and Operations
        fwbs_variables.den_liq = (
            504.43
            - (0.2729 * mid_temp_liq)
            - (8.0035e-5 * mid_temp_liq**2)
            + (3.799e-8 * mid_temp_liq**3)
        )
        fwbs_variables.specific_heat_liq = (
            31.227
            + (0.205e6 * mid_temp_liq ** (-2))
            - (5.265e-3 * mid_temp_liq)
            + (2.628e6 * mid_temp_liq ** (-2))
        )
        # thermal_conductivity_liq also in paper
        fwbs_variables.dynamic_viscosity_liq = np.exp(
            -4.16e0 - (0.64 * np.log(mid_temp_liq)) + (262.1 / mid_temp_liq)
        )
        fwbs_variables.electrical_conductivity_liq = (
            (0.9249e9 * mid_temp_liq) + 2.3167e6 - (0.7131e3 * mid_temp_liq)
        )

    # Magnetic feild strength in T for Hartmann calculation
    # IB
    if fwbs_variables.i_blkt_inboard == 1:
        fwbs_variables.b_mag_blkt[0] = (
            physics_variables.b_plasma_toroidal_on_axis
            * physics_variables.rmajor
            / (
                physics_variables.rmajor
                - (physics_variables.rmajor / physics_variables.aspect)
                - (build_variables.dr_blkt_inboard / 2)
            )
        )
    # We do not use this if there is no IB blanket, but will use edge as fill value
    if fwbs_variables.i_blkt_inboard == 0:
        fwbs_variables.b_mag_blkt[0] = (
            physics_variables.b_plasma_toroidal_on_axis
            * physics_variables.rmajor
            / (
                physics_variables.rmajor
                - (physics_variables.rmajor / physics_variables.aspect)
            )
        )
    # OB
    fwbs_variables.b_mag_blkt[1] = (
        physics_variables.b_plasma_toroidal_on_axis
        * physics_variables.rmajor
        / (
            physics_variables.rmajor
            + (physics_variables.rmajor / physics_variables.aspect)
            + (build_variables.dr_blkt_outboard / 2)
        )
    )

    # Calculate Hartmann number
    con_vsc_rat = (
        fwbs_variables.electrical_conductivity_liq
        / fwbs_variables.dynamic_viscosity_liq
    )
    # Use toroidal width of the rectangular cooling channel as characteristic length scale
    fwbs_variables.hartmann_liq = (
        np.asarray(fwbs_variables.b_mag_blkt)
        * fwbs_variables.a_bz_liq
        / 2.0
        * np.sqrt(con_vsc_rat)
    )

    # Error for temperature range of breeder property realtions
    if fwbs_variables.i_blkt_liquid_breeder_type == 0 and (
        (t_ranges[:, 0] > mid_temp_liq).any()
        or (t_ranges[:, 1] < mid_temp_liq).any()
    ):
        logger.error(
            "Outside temperature limit for one or more liquid metal breeder properties"
        )

        if output:
            po.ocmmnt(
                self.outfile,
                "Outside temperature limit for one or more liquid metal breeder properties.",
            )
            po.ovarrf(
                self.outfile,
                "Liquid metal temperature (K)",
                "(mid_temp_liq)",
                mid_temp_liq,
                "OP ",
            )
            po.ocmmnt(self.outfile, "Density: Max T = 880 K, Min T = 508 K")
            po.ocmmnt(self.outfile, "Specific heat: Max T = 880 K, Min T = 508 K")
            po.ocmmnt(
                self.outfile, "Thermal conductivity: Max T = 880 K, Min T = 508 K"
            )
            po.ocmmnt(
                self.outfile, "Dynamic viscosity : Max T = 880 K, Min T = 508 K"
            )
            po.ocmmnt(
                self.outfile,
                "Electrical conductivity: Max T = 800 K, Min T = 600 K",
            )

    if not output:
        return

    po.oheadr(self.outfile, "Blanket : Liquid Breeder Properties")

    if fwbs_variables.i_blkt_dual_coolant == 1:
        po.ocmmnt(
            self.outfile,
            "Single coolant: liquid metal circulted for tritium extraction.",
        )
    if fwbs_variables.i_blkt_dual_coolant == 2:
        po.ocmmnt(self.outfile, "Dual coolant: self-cooled liquid metal breeder.")

    if fwbs_variables.i_blkt_liquid_breeder_type == 0:
        po.ocmmnt(
            self.outfile,
            "Blanket breeder type (i_blkt_liquid_breeder_type=0), PbLi (~ 17% Li)",
        )
    if fwbs_variables.i_blkt_liquid_breeder_type == 1:
        po.ocmmnt(
            self.outfile, "Blanket breeder type (i_blkt_liquid_breeder_type=1), Li"
        )

    po.ovarrf(
        self.outfile, "Density (kg m-3)", "(den_liq)", fwbs_variables.den_liq, "OP "
    )
    po.ovarrf(
        self.outfile,
        "Viscosity (Pa s)",
        "(dynamic_viscosity_liq)",
        fwbs_variables.dynamic_viscosity_liq,
        "OP ",
    )
    po.ovarrf(
        self.outfile,
        "Electrical Conductivity (A V-1 m-1)",
        "(electrical_conductivity_liq)",
        fwbs_variables.electrical_conductivity_liq,
        "OP ",
    )
    po.ovarrf(
        self.outfile,
        "Hartmann Number IB",
        "(hartmann_liq)",
        fwbs_variables.hartmann_liq[0],
        "OP ",
    )
    po.ovarrf(
        self.outfile,
        "Hartmann Number OB",
        "(hartmann_liq)",
        fwbs_variables.hartmann_liq[0],
        "OP ",
    )

    po.ovarre(
        self.outfile,
        "Inlet Temperature (Celcius)",
        "(inlet_temp_liq)",
        fwbs_variables.inlet_temp_liq,
        "OP ",
    )
    po.ovarre(
        self.outfile,
        "Outlet Temperature (Celcius)",
        "(outlet_temp_liq)",
        fwbs_variables.outlet_temp_liq,
        "OP ",
    )

flow_velocity(i_channel_shape, mass_flow_rate, flow_density)

Calculate the coolant flow velocity (m/s) for given pipe mass flow rate and pipe size/shape. N.B. Assumed that primary BB and FW coolants have same pipe radius (= radius_fw_channel).

Parameters:

Name Type Description Default
i_channel_shape

Switch for circular or rectangular channel crossection. Shape depends on whether primary or secondary coolant. 1: circle (primary) 2: rectangle (secondary)

required
mass_flow_rate

Coolant mass flow rate per pipe (kg/s)

required
flow_density

Coolant density

required
Source code in process/models/blankets/blanket_library.py
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
def flow_velocity(self, i_channel_shape, mass_flow_rate, flow_density):
    """Calculate the coolant flow velocity (m/s) for given pipe mass flow rate and pipe size/shape.
    N.B. Assumed that primary BB and FW coolants have same pipe radius (= radius_fw_channel).


    Parameters
    ----------
    i_channel_shape :
        Switch for circular or rectangular channel crossection.
        Shape depends on whether primary or secondary coolant.
        1: circle (primary)
        2: rectangle (secondary)
    mass_flow_rate :
        Coolant mass flow rate per pipe (kg/s)
    flow_density :
        Coolant density
    """

    if i_channel_shape == 1:
        return mass_flow_rate / (
            flow_density
            * np.pi
            * fwbs_variables.radius_fw_channel
            * fwbs_variables.radius_fw_channel
        )

    # If secondary coolant then rectangular channels assumed
    if i_channel_shape == 2:
        return mass_flow_rate / (
            flow_density * fwbs_variables.a_bz_liq * fwbs_variables.b_bz_liq
        )

    raise ProcessValueError(
        f"i_channel_shape ={i_channel_shape} is an invalid option."
    )

thermo_hydraulic_model(output)

Thermo-hydraulic model for first wall and blanket ONLY CALLED if i_p_coolant_pumping = 2 or 3

Calculations for detailed powerflow model i_thermal_electric_conversion > 1

Dual-coolant modifications and generalisation refactor: G. Graham, CCFE

Three options: 1. Solid breeder - nuclear heating in the blanket is exctrated by the primary coolant. 2. Liquid metal breeder, single-coolant - nuclear heating in the blanket is exctrated by the primary coolant. - liquid metal is circulated for tritium extraction, specified by number of circulations/day. 3. Liquid metal breeder, dual-coolant - - nuclear heating in the liquid breeder/coolant is extracted by the liquid breeder/coolant. - nuclear heating in the blanket structure is extracted by the primary coolant

Flow Channel and Coolant Input Info:

N.B. Primary coolant applies to single-coolant BB, or structural cooling of dual-coolant BB.
Secondary coolant applies to self-cooled breeder material.

Coolant Channels            FW                      BB primary          BB Liquid Breeder/Coolant

length (m)                  len_fw_channel
width (m)                   radius_fw_channel (radius, cicular)   radius_fw_channel                 a_bz_liq, b_bz_liq (rectangular)
wall thickness (m)          dr_fw_wall                 dr_fw_wall             th_wall_secondary
dx_fw_module (m)                   dx_fw_module
roughness epsilon           roughness_fw_channel
peak FW temp (K)            temp_fw_peak
maximum temp (K)            temp_fw_max
FCI switch                  ---                     ---                 i_blkt_liquid_breeder_channel_type

Coolant                     FW                      BB primary          BB secondary

primary coolant switch      i_fw_coolant_type               i_blkt_coolant_type              ---
secondary coolant switch    ---                     ---                 i_blkt_liquid_breeder_type
inlet temp (K)              temp_fw_coolant_in                 temp_blkt_coolant_in          inlet_temp_liq
outlet temp (K)             temp_fw_coolant_out                temp_blkt_coolant_out         outlet_temp_liq
pressure (Pa)               pres_fw_coolant              pres_blkt_coolant          blpressure_liq

Parameters:

Name Type Description Default
output bool
required
Source code in process/models/blankets/blanket_library.py
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
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
def thermo_hydraulic_model(self, output: bool):
    """Thermo-hydraulic model for first wall and blanket
    ONLY CALLED if i_p_coolant_pumping = 2 or 3

    Calculations for detailed powerflow model i_thermal_electric_conversion > 1

    Dual-coolant modifications and generalisation refactor: G. Graham, CCFE

    Three options:
    1.   Solid breeder - nuclear heating in the blanket is exctrated by the primary coolant.
    2.   Liquid metal breeder, single-coolant
             - nuclear heating in the blanket is exctrated by the primary coolant.
             - liquid metal is circulated for tritium extraction, specified by number of circulations/day.
    3.   Liquid metal breeder, dual-coolant -
             - nuclear heating in the liquid breeder/coolant is extracted by the liquid breeder/coolant.
             - nuclear heating in the blanket structure is extracted by the primary coolant

    Flow Channel and Coolant Input Info:

        N.B. Primary coolant applies to single-coolant BB, or structural cooling of dual-coolant BB.
        Secondary coolant applies to self-cooled breeder material.

        Coolant Channels            FW                      BB primary          BB Liquid Breeder/Coolant

        length (m)                  len_fw_channel
        width (m)                   radius_fw_channel (radius, cicular)   radius_fw_channel                 a_bz_liq, b_bz_liq (rectangular)
        wall thickness (m)          dr_fw_wall                 dr_fw_wall             th_wall_secondary
        dx_fw_module (m)                   dx_fw_module
        roughness epsilon           roughness_fw_channel
        peak FW temp (K)            temp_fw_peak
        maximum temp (K)            temp_fw_max
        FCI switch                  ---                     ---                 i_blkt_liquid_breeder_channel_type

        Coolant                     FW                      BB primary          BB secondary

        primary coolant switch      i_fw_coolant_type               i_blkt_coolant_type              ---
        secondary coolant switch    ---                     ---                 i_blkt_liquid_breeder_type
        inlet temp (K)              temp_fw_coolant_in                 temp_blkt_coolant_in          inlet_temp_liq
        outlet temp (K)             temp_fw_coolant_out                temp_blkt_coolant_out         outlet_temp_liq
        pressure (Pa)               pres_fw_coolant              pres_blkt_coolant          blpressure_liq

    Parameters
    ----------
    output: bool

    """
    ######################################################
    # Pre calculations needed for thermo-hydraulic model #
    ######################################################
    # IB/OB FW (MW)
    blanket_library.p_fw_inboard_nuclear_heat_mw = (
        fwbs_variables.p_fw_nuclear_heat_total_mw
        * first_wall_variables.a_fw_inboard
        / first_wall_variables.a_fw_total
    )
    blanket_library.p_fw_outboard_nuclear_heat_mw = (
        fwbs_variables.p_fw_nuclear_heat_total_mw
        * first_wall_variables.a_fw_outboard
        / first_wall_variables.a_fw_total
    )

    # IB/OB Blanket (MW)

    # Neutron power deposited in inboard blanket (MW)
    if fwbs_variables.i_blkt_inboard == 1:
        blanket_library.p_blkt_nuclear_heat_inboard_mw = (
            fwbs_variables.p_blkt_nuclear_heat_total_mw
            * fwbs_variables.vol_blkt_inboard
            / fwbs_variables.vol_blkt_total
        )

    # Neutron power deposited in outboard blanket (MW)
    blanket_library.p_blkt_nuclear_heat_outboard_mw = (
        fwbs_variables.p_blkt_nuclear_heat_total_mw
        * fwbs_variables.vol_blkt_outboard
        / fwbs_variables.vol_blkt_total
    )

    # For a dual-coolant blanket, some fraction of the power goes into the
    # structure of the BZ and is cooled by the primary coolant, and some fraction
    # goes into the liquid breeder to be cooled by itself.

    # If the blanket is dual-coolant...
    if fwbs_variables.i_blkt_dual_coolant == 2:
        f_nuc_pow_bz_liq = 1 - fwbs_variables.f_nuc_pow_bz_struct

        # Inboard blanket calc. Will return 0 if no inboard dr_shld_inboard thickness
        pnucblkti_struct = (
            fwbs_variables.p_blkt_nuclear_heat_total_mw
            * fwbs_variables.f_nuc_pow_bz_struct
        ) * (fwbs_variables.vol_blkt_inboard / fwbs_variables.vol_blkt_total)
        pnucblkti_liq = (
            fwbs_variables.p_blkt_nuclear_heat_total_mw * f_nuc_pow_bz_liq
        ) * (fwbs_variables.vol_blkt_inboard / fwbs_variables.vol_blkt_total)
        pnucblkto_struct = (
            fwbs_variables.p_blkt_nuclear_heat_total_mw
            * fwbs_variables.f_nuc_pow_bz_struct
        ) * (fwbs_variables.vol_blkt_outboard / fwbs_variables.vol_blkt_total)
        pnucblkto_liq = (
            fwbs_variables.p_blkt_nuclear_heat_total_mw * f_nuc_pow_bz_liq
        ) * (fwbs_variables.vol_blkt_outboard / fwbs_variables.vol_blkt_total)

    # FW and BB Mass Flow ###########

    # Make sure that, if the inputs for the FW and blanket inputs are different,
    # the i_fw_blkt_shared_coolant variable is appropriately set for separate coolants
    if (
        fwbs_variables.i_fw_coolant_type == "Helium"
        and fwbs_variables.i_blkt_coolant_type == 2
    ):
        fwbs_variables.i_fw_blkt_shared_coolant = 1
    if (
        fwbs_variables.i_fw_coolant_type == "Water"
        and fwbs_variables.i_blkt_coolant_type == 1
    ):
        fwbs_variables.i_fw_blkt_shared_coolant = 1

    # If FW and BB have the same coolant...
    if fwbs_variables.i_fw_blkt_shared_coolant == 0:
        # Fraction of heat to be removed by IB/OB FW
        if fwbs_variables.i_blkt_dual_coolant == 2:
            f_nuc_fwi = (
                blanket_library.p_fw_inboard_nuclear_heat_mw
                + fwbs_variables.psurffwi
            ) / (
                blanket_library.p_fw_inboard_nuclear_heat_mw
                + fwbs_variables.psurffwi
                + pnucblkti_struct
            )
            f_nuc_fwo = (
                blanket_library.p_fw_outboard_nuclear_heat_mw
                + fwbs_variables.psurffwo
            ) / (
                blanket_library.p_fw_outboard_nuclear_heat_mw
                + fwbs_variables.psurffwo
                + pnucblkto_struct
            )
        else:
            f_nuc_fwi = (
                blanket_library.p_fw_inboard_nuclear_heat_mw
                + fwbs_variables.psurffwi
            ) / (
                blanket_library.p_fw_inboard_nuclear_heat_mw
                + fwbs_variables.psurffwi
                + blanket_library.p_blkt_nuclear_heat_inboard_mw
            )
            f_nuc_fwo = (
                blanket_library.p_fw_outboard_nuclear_heat_mw
                + fwbs_variables.psurffwo
            ) / (
                blanket_library.p_fw_outboard_nuclear_heat_mw
                + fwbs_variables.psurffwo
                + blanket_library.p_blkt_nuclear_heat_outboard_mw
            )

        # Outlet FW/inlet BB temp (mass flow FW = mass flow BB)
        if fwbs_variables.i_blkt_inboard == 1:
            fwoutleti = (f_nuc_fwi * fwbs_variables.temp_blkt_coolant_out) + (
                1 - f_nuc_fwi
            ) * fwbs_variables.temp_fw_coolant_in
            inlet_tempi = fwoutleti
        else:
            fwoutleti = fwbs_variables.temp_fw_coolant_out

        fwoutleto = (f_nuc_fwo * fwbs_variables.temp_blkt_coolant_out) + (
            1 - f_nuc_fwo
        ) * fwbs_variables.temp_fw_coolant_in
        inlet_tempo = fwoutleto

    elif fwbs_variables.i_fw_blkt_shared_coolant == 1:
        fwoutleti = fwbs_variables.temp_fw_coolant_out
        inlet_tempi = fwbs_variables.temp_blkt_coolant_in
        fwoutleto = fwbs_variables.temp_fw_coolant_out
        inlet_tempo = fwbs_variables.temp_blkt_coolant_in

    # Maximum FW temperature. (27/11/2015) Issue #348
    # First wall flow is just along the first wall, with no allowance for radial
    # pipes, manifolds etc. The outputs are mid quantities of inlet and outlet.
    # This subroutine recalculates cp and rhof.
    (
        blanket_library.temp_fw_inboard_peak,
        _,
        _,
        blanket_library.mflow_fw_inboard_coolant_channel,
    ) = self.fw.fw_temp(
        output,
        fwbs_variables.radius_fw_channel,
        build_variables.dr_fw_inboard,
        first_wall_variables.a_fw_inboard,
        fwbs_variables.psurffwi,
        blanket_library.p_fw_inboard_nuclear_heat_mw,
        "Inboard first wall",
    )
    (
        blanket_library.temp_fw_outboard_peak,
        _cf,
        _rhof,
        blanket_library.mflow_fw_outboard_coolant_channel,
    ) = self.fw.fw_temp(
        output,
        fwbs_variables.radius_fw_channel,
        build_variables.dr_fw_outboard,
        first_wall_variables.a_fw_outboard,
        fwbs_variables.psurffwo,
        blanket_library.p_fw_outboard_nuclear_heat_mw,
        "Outboard first wall",
    )

    # Peak first wall temperature (K)
    fwbs_variables.temp_fw_peak = max(
        blanket_library.temp_fw_inboard_peak, blanket_library.temp_fw_outboard_peak
    )

    # Total mass flow rate to remove inboard FW power (kg/s)
    blanket_library.mflow_fw_inboard_coolant_total = (
        1.0e6
        * (blanket_library.p_fw_inboard_nuclear_heat_mw + fwbs_variables.psurffwi)
        / (fwbs_variables.cp_fw * (fwoutleti - fwbs_variables.temp_fw_coolant_in))
    )
    # Total mass flow rate to remove outboard FW power (kg/s)
    blanket_library.mflow_fw_outboard_coolant_total = (
        1.0e6
        * (blanket_library.p_fw_outboard_nuclear_heat_mw + fwbs_variables.psurffwo)
        / (fwbs_variables.cp_fw * (fwoutleto - fwbs_variables.temp_fw_coolant_in))
    )

    # If the blanket is dual-coolant...
    if fwbs_variables.i_blkt_dual_coolant == 2:
        # Mass flow rates for outboard blanket coolants (kg/s)
        blanket_library.mflow_blkt_outboard_coolant = (
            1.0e6
            * (pnucblkto_struct)
            / (
                fwbs_variables.cp_bl
                * (fwbs_variables.temp_blkt_coolant_out - inlet_tempo)
            )
        )
        blanket_library.mfblkto_liq = (
            1.0e6
            * (pnucblkto_liq)
            / (
                fwbs_variables.specific_heat_liq
                * (fwbs_variables.outlet_temp_liq - fwbs_variables.inlet_temp_liq)
            )
        )

        # If there is an IB blanket...
        if fwbs_variables.i_blkt_inboard == 1:
            # Mass flow rates for inboard blanket coolants (kg/s)
            blanket_library.mflow_blkt_inboard_coolant = (
                1.0e6
                * (pnucblkti_struct)
                / (
                    fwbs_variables.cp_bl
                    * (fwbs_variables.temp_blkt_coolant_out - inlet_tempi)
                )
            )
            blanket_library.mfblkti_liq = (
                1.0e6
                * (pnucblkti_liq)
                / (
                    fwbs_variables.specific_heat_liq
                    * (
                        fwbs_variables.outlet_temp_liq
                        - fwbs_variables.inlet_temp_liq
                    )
                )
            )

    # If the blanket is single-coolant with liquid metal breeder...
    elif fwbs_variables.i_blkt_dual_coolant == 1:
        # Mass flow rate for outboard blanket coolant (kg/s)
        blanket_library.mflow_blkt_outboard_coolant = (
            1.0e6
            * (blanket_library.p_blkt_nuclear_heat_outboard_mw)
            / (
                fwbs_variables.cp_bl
                * (fwbs_variables.temp_blkt_coolant_out - inlet_tempo)
            )
        )

        # Get mass flow rate etc. for inboard blanket breeder flow for tritium extraction
        # Use the number of desired recirculations ([Aub2013]=10) and mass from dcll_masses
        # N.B. wht_liq is BZ mass, does not include manifold.
        blanket_library.mfblkto_liq = (
            fwbs_variables.n_liq_recirc * fwbs_variables.wht_liq_ob
        ) / (24 * 3600)

        # If there is an IB blanket...
        if fwbs_variables.i_blkt_inboard == 1:
            # Mass flow rate for inboard blanket coolant (kg/s)
            blanket_library.mflow_blkt_inboard_coolant = (
                1.0e6
                * (blanket_library.p_blkt_nuclear_heat_inboard_mw)
                / (
                    fwbs_variables.cp_bl
                    * (fwbs_variables.temp_blkt_coolant_out - inlet_tempi)
                )
            )
            # Mass flow rate for inboard breeder flow (kg/s)
            fwbs_variables.mfblkti_liq = (
                fwbs_variables.n_liq_recirc * fwbs_variables.wht_liq_ib
            ) / (24 * 3600)

    # If the blanket is single-coolant with solid breeder...
    else:
        # Mass flow rate for inboard blanket coolant (kg/s)
        blanket_library.mflow_blkt_outboard_coolant = (
            1.0e6
            * (blanket_library.p_blkt_nuclear_heat_outboard_mw)
            / (
                fwbs_variables.cp_bl
                * (fwbs_variables.temp_blkt_coolant_out - inlet_tempo)
            )
        )

        # If there is an IB blanket...
        # Mass flow rate for inboard blanket coolant (kg/s)
        if fwbs_variables.i_blkt_inboard == 1:
            blanket_library.mflow_blkt_inboard_coolant = (
                1.0e6
                * (blanket_library.p_blkt_nuclear_heat_inboard_mw)
                / (
                    fwbs_variables.cp_bl
                    * (fwbs_variables.temp_blkt_coolant_out - inlet_tempi)
                )
            )

    ########################################################
    # Handling of pressure drops and coolant pumping power #
    ########################################################

    # load in pressures if primary pumping == 2
    if fwbs_variables.i_p_coolant_pumping == 2:
        deltap = self.thermo_hydraulic_model_pressure_drop_calculations(
            output=output
        )
        deltap_fwi = deltap[0]
        deltap_fwo = deltap[1]
        deltap_blo = deltap[2]
        if fwbs_variables.i_blkt_dual_coolant > 0:
            if fwbs_variables.i_blkt_inboard == 1:
                deltap_bli = deltap[3]
                deltap_blo_liq = deltap[4]
                deltap_bli_liq = deltap[5]
            else:
                deltap_blo_liq = deltap[3]
        else:
            if fwbs_variables.i_blkt_inboard == 1:
                deltap_bli = deltap[3]

    # Pumping Power
    # If FW and BB have the same coolant...
    if fwbs_variables.i_fw_blkt_shared_coolant == 0:
        # Total pressure drop in the first wall/blanket  (Pa)
        if fwbs_variables.i_p_coolant_pumping == 2:
            if fwbs_variables.i_blkt_inboard == 1:
                deltap_fw_blkt = deltap_fwi + deltap_bli + deltap_fwo + deltap_blo
            if fwbs_variables.i_blkt_inboard == 0:
                deltap_fw_blkt = deltap_fwi + deltap_fwo + deltap_blo
        elif fwbs_variables.i_p_coolant_pumping == 3:
            deltap_fw_blkt = primary_pumping_variables.dp_fw_blkt
        # Total coolant mass flow rate in the first wall/blanket (kg/s)
        blanket_library.mftotal = (
            blanket_library.mflow_fw_inboard_coolant_total
            + blanket_library.mflow_fw_outboard_coolant_total
        )

        # Total mechanical pumping power (MW)
        primary_pumping_variables.p_fw_blkt_coolant_pump_mw = (
            self.coolant_pumping_power(
                output=output,
                i_liquid_breeder=1,
                temp_coolant_pump_outlet=fwbs_variables.temp_fw_coolant_in,
                temp_coolant_pump_inlet=fwbs_variables.temp_blkt_coolant_out,
                pres_coolant_pump_inlet=fwbs_variables.pres_fw_coolant,
                dpres_coolant=deltap_fw_blkt,
                mflow_coolant_total=blanket_library.mftotal,
                primary_coolant_switch=fwbs_variables.i_fw_coolant_type,
                den_coolant=fwbs_variables.den_fw_coolant,
                label="First Wall and Blanket",
            )
        )

    # If FW and BB have different coolants...
    elif fwbs_variables.i_fw_blkt_shared_coolant == 1:
        if fwbs_variables.i_p_coolant_pumping == 2:
            # Total pressure drop in the first wall (Pa)
            deltap_fw = deltap_fwi + deltap_fwo

            # Total pressure drop in the blanket (Pa)
            if fwbs_variables.i_blkt_inboard == 1:
                deltap_blkt = deltap_bli + deltap_blo
            if fwbs_variables.i_blkt_inboard == 0:
                deltap_blkt = deltap_blo
        elif fwbs_variables.i_p_coolant_pumping == 3:
            deltap_fw = primary_pumping_variables.dp_fw
            deltap_blkt = primary_pumping_variables.dp_blkt

        # Total coolant mass flow rate in the first wall (kg/s)
        blanket_library.mflow_fw_coolant_total = (
            blanket_library.mflow_fw_inboard_coolant_total
            + blanket_library.mflow_fw_outboard_coolant_total
        )
        # Total coolant mass flow rate in the blanket (kg/s)
        blanket_library.mflow_blkt_coolant_total = (
            blanket_library.mflow_blkt_inboard_coolant
            + blanket_library.mflow_blkt_outboard_coolant
        )

        # Mechanical pumping power for the first wall (MW)
        heat_transport_variables.p_fw_coolant_pump_mw = self.coolant_pumping_power(
            output=output,
            i_liquid_breeder=1,
            temp_coolant_pump_outlet=fwbs_variables.temp_fw_coolant_in,
            temp_coolant_pump_inlet=fwbs_variables.temp_fw_coolant_out,
            pres_coolant_pump_inlet=fwbs_variables.pres_fw_coolant,
            dpres_coolant=deltap_fw,
            mflow_coolant_total=blanket_library.mflow_fw_coolant_total,
            primary_coolant_switch=fwbs_variables.i_fw_coolant_type,
            den_coolant=fwbs_variables.den_fw_coolant,
            label="First Wall",
        )

        # Mechanical pumping power for the blanket (MW)
        heat_transport_variables.p_blkt_coolant_pump_mw = self.coolant_pumping_power(
            output=output,
            i_liquid_breeder=1,
            temp_coolant_pump_outlet=fwbs_variables.temp_blkt_coolant_in,
            temp_coolant_pump_inlet=fwbs_variables.temp_blkt_coolant_out,
            pres_coolant_pump_inlet=fwbs_variables.pres_blkt_coolant,
            dpres_coolant=deltap_blkt,
            mflow_coolant_total=blanket_library.mflow_blkt_coolant_total,
            primary_coolant_switch=(
                "Helium" if fwbs_variables.i_blkt_coolant_type == 1 else "Water"
            ),
            den_coolant=fwbs_variables.den_blkt_coolant,
            label="Blanket",
        )

        # Total mechanical pumping power (MW)
        primary_pumping_variables.p_fw_blkt_coolant_pump_mw = (
            heat_transport_variables.p_fw_coolant_pump_mw
            + heat_transport_variables.p_blkt_coolant_pump_mw
        )

    # If the blanket has a liquid metal breeder...
    if fwbs_variables.i_blkt_dual_coolant > 0:
        # Total pressure drop in the blanket (Pa)
        if fwbs_variables.i_p_coolant_pumping == 2:
            if fwbs_variables.i_blkt_inboard == 1:
                deltap_bl_liq = deltap_bli_liq + deltap_blo_liq
            if fwbs_variables.i_blkt_inboard == 0:
                deltap_bl_liq = deltap_blo_liq
        elif fwbs_variables.i_p_coolant_pumping == 3:
            deltap_bl_liq = primary_pumping_variables.dp_liq
        # Total liquid metal breeder/coolant mass flow rate in the blanket (kg/s)
        blanket_library.mfblkt_liq = (
            blanket_library.mfblkti_liq + blanket_library.mfblkto_liq
        )

        # Mechanical pumping power for the blanket (MW)
        heat_transport_variables.p_blkt_breeder_pump_mw = self.coolant_pumping_power(
            output=output,
            i_liquid_breeder=2,
            temp_coolant_pump_outlet=fwbs_variables.inlet_temp_liq,
            temp_coolant_pump_inlet=fwbs_variables.outlet_temp_liq,
            pres_coolant_pump_inlet=fwbs_variables.blpressure_liq,
            dpres_coolant=deltap_bl_liq,
            mflow_coolant_total=blanket_library.mfblkt_liq,
            primary_coolant_switch=(
                "Helium" if fwbs_variables.i_blkt_coolant_type == 1 else "Water"
            ),
            den_coolant=fwbs_variables.den_liq,
            label="Liquid Metal Breeder/Coolant",
        )

        heat_transport_variables.htpmw_blkt_tot = (
            primary_pumping_variables.p_fw_blkt_coolant_pump_mw
            + heat_transport_variables.p_blkt_breeder_pump_mw
        )

    if output:
        po.oheadr(self.outfile, "Summary of first wall and blanket thermohydraulics")

        # FW
        po.osubhd(self.outfile, "First wall: ")

        po.ovarst(
            self.outfile,
            "First wall coolant type",
            "(i_fw_coolant_type)",
            fwbs_variables.i_fw_coolant_type,
        )
        po.ovarre(
            self.outfile,
            "Wall thickness of first wall cooling channels (m)",
            "(dr_fw_wall)",
            fwbs_variables.dr_fw_wall,
        )
        po.ovarre(
            self.outfile,
            "Radius of first wall cooling channels (m)",
            "(radius_fw_channel)",
            fwbs_variables.radius_fw_channel,
        )
        po.ovarre(
            self.outfile,
            "Radius of blanket cooling channels (m)",
            "(radius_blkt_channel)",
            fwbs_variables.radius_blkt_channel,
        )
        po.ovarre(
            self.outfile,
            "Roughness of first wall cooling channels (m)",
            "(roughness_fw_channel)",
            fwbs_variables.roughness_fw_channel,
        )
        po.ovarrf(
            self.outfile,
            "Inlet temperature of first wall coolant (K)",
            "(temp_fw_coolant_in)",
            fwbs_variables.temp_fw_coolant_in,
        )
        po.ovarrf(
            self.outfile,
            "Outlet temperature of first wall coolant (K)",
            "(temp_fw_coolant_out)",
            fwbs_variables.temp_fw_coolant_out,
        )
        po.ovarre(
            self.outfile,
            "First wall coolant pressure (Pa)",
            "(pres_fw_coolant)",
            fwbs_variables.pres_fw_coolant,
        )
        if fwbs_variables.i_fw_blkt_shared_coolant == 1:
            po.ovarre(
                self.outfile,
                "First wall coolant mass flow rate (kg/s)",
                "(mflow_fw_coolant_total)",
                blanket_library.mflow_fw_coolant_total,
                "OP ",
            )
        po.ovarrf(
            self.outfile,
            "Allowable temperature of first wall material, excluding armour (K)",
            "(temp_fw_max)",
            fwbs_variables.temp_fw_max,
        )
        po.ovarrf(
            self.outfile,
            "Actual peak temperature of first wall material (K)",
            "(temp_fw_peak)",
            fwbs_variables.temp_fw_peak,
            "OP ",
        )

        # BB
        po.osubhd(self.outfile, "Breeding Blanket (primary): ")
        po.ovarre(
            self.outfile,
            "Blanket half height (m)",
            "(dz_blkt_half)",
            blanket_library.dz_blkt_half,
        )
        po.ovarin(
            self.outfile,
            "Blanket coolant type (1=He, 2=H20)",
            "(i_blkt_coolant_type)",
            fwbs_variables.i_blkt_coolant_type,
        )
        po.ovarrf(
            self.outfile,
            "Inlet temperature of blanket coolant (K)",
            "(temp_blkt_coolant_in)",
            fwbs_variables.temp_blkt_coolant_in,
        )
        po.ovarrf(
            self.outfile,
            "Outlet temperature of blanket coolant (K)",
            "(temp_blkt_coolant_out)",
            fwbs_variables.temp_blkt_coolant_out,
        )
        po.ovarre(
            self.outfile,
            "Blanket (primary) coolant pressure (Pa)",
            "(pres_blkt_coolant)",
            fwbs_variables.pres_blkt_coolant,
        )
        if fwbs_variables.i_fw_blkt_shared_coolant == 1:
            po.ovarre(
                self.outfile,
                "Blanket coolant mass flow rate (kg/s)",
                "(mflow_blkt_coolant_total)",
                blanket_library.mflow_blkt_coolant_total,
                "OP ",
            )

        # Total primary coolant mass flow rate (if they are the same coolant)
        if fwbs_variables.i_fw_blkt_shared_coolant == 0:
            po.ovarre(
                self.outfile,
                "Total (FW+BB) primary coolant mass flow rate(kg/s)",
                "(mftotal)",
                blanket_library.mftotal,
                "OP ",
            )

        # BB Liquid Metal Breeder !
        if fwbs_variables.i_blkt_dual_coolant > 0:
            po.osubhd(self.outfile, "Breeding Blanket (breeder): ")

            po.ovarin(
                self.outfile,
                "Blanket liquid breeder type (0=PbLi, 1=Li)",
                "(i_blkt_liquid_breeder_type)",
                fwbs_variables.i_blkt_liquid_breeder_type,
            )
            if fwbs_variables.i_blkt_dual_coolant == 2:
                po.ocmmnt(self.outfile, "Dual-coolant BB, i.e. self-cooled breeder.")
                po.ovarrf(
                    self.outfile,
                    "Inlet temperature of blanket liquid breeder (K)",
                    "(inlet_temp_liq)",
                    fwbs_variables.inlet_temp_liq,
                )
                po.ovarrf(
                    self.outfile,
                    "Outlet temperature of blanket liquid breeder (K)",
                    "(outlet_temp_liq)",
                    fwbs_variables.outlet_temp_liq,
                )
                po.ovarre(
                    self.outfile,
                    "Blanket liquid breeder pressure (Pa)",
                    "(blpressure_liq)",
                    fwbs_variables.blpressure_liq,
                )
            else:
                po.ocmmnt(
                    self.outfile,
                    "single-coolant BB, breeder circulated for tritium extraction.",
                )

            po.ovarre(
                self.outfile,
                "Blanket liquid breeder mass flow rate (kg/s)",
                "(mfblkt_liq)",
                blanket_library.mfblkt_liq,
                "OP ",
            )

        # Pumping Power
        po.osubhd(self.outfile, "Mechanical pumping power: ")

        if fwbs_variables.i_fw_blkt_shared_coolant == 1:
            po.ovarre(
                self.outfile,
                "Mechanical pumping power for FW (MW)",
                "(p_fw_coolant_pump_mw)",
                heat_transport_variables.p_fw_coolant_pump_mw,
                "OP ",
            )
            po.ovarre(
                self.outfile,
                "Mechanical pumping power for blanket (primary) coolant (MW)",
                "(p_blkt_coolant_pump_mw)",
                heat_transport_variables.p_blkt_coolant_pump_mw,
                "OP ",
            )
        if fwbs_variables.i_blkt_dual_coolant > 0:
            po.ovarre(
                self.outfile,
                "Mechanical pumping power for blanket liquid breeder (MW)",
                "(p_blkt_breeder_pump_mw)",
                heat_transport_variables.p_blkt_breeder_pump_mw,
                "OP ",
            )
        po.ovarre(
            self.outfile,
            "Total mechanical pumping power for FW and blanket (MW)",
            "(p_fw_blkt_coolant_pump_mw)",
            primary_pumping_variables.p_fw_blkt_coolant_pump_mw,
            "OP ",
        )
        if fwbs_variables.i_blkt_dual_coolant > 0:
            po.ovarre(
                self.outfile,
                "Total mechanical pumping power for FW, blanket and liquid metal breeder(MW)",
                "(htpmw_blkt_tot)",
                heat_transport_variables.htpmw_blkt_tot,
                "OP ",
            )
        po.ovarre(
            self.outfile,
            "Pumping power for divertor (MW)",
            "(p_div_coolant_pump_mw)",
            heat_transport_variables.p_div_coolant_pump_mw,
            "OP ",
        )
        po.ovarre(
            self.outfile,
            "Pumping power for shield and vacuum vessel (MW)",
            "(p_shld_coolant_pump_mw)",
            heat_transport_variables.p_shld_coolant_pump_mw,
            "OP ",
        )

total_pressure_drop(output, icoolpump, vel_coolant, len_pipe, n_pipe_90_deg_bends, n_pipe_180_deg_bends, den_coolant, visc_coolant_dynamic, coolant_electrical_conductivity, pol_channel_length, nopolchan, label)

Calculate the total pressure drop (Pa) for coolant flow in the first wall (FW) and breeding blanket (BZ).

This includes frictional losses and, for liquid breeder coolants, magnetohydrodynamic (MHD) losses.

Parameters:

Name Type Description Default
output bool

Whether to write output to file.

required
icoolpump int

Switch for coolant type (1=primary He/H2O, 2=secondary PbLi/Li).

required
flow_velocity float

Coolant flow velocity (m/s).

required
len_pipe float

Total flow length along pipe (m).

required
n_pipe_90_deg_bends int

Number of 90 degree bends in pipe.

required
n_pipe_180_deg_bends int

Number of 180 degree bends in pipe.

required
den_coolant float

Coolant density (kg/m³).

required
visc_coolant_dynamic float

Coolant dynamic viscosity (Pa s).

required
coolant_electrical_conductivity float

Coolant electrical conductivity (A V⁻¹ m⁻¹).

required
pol_channel_length float

Length of poloidal channel section (m).

required
nopolchan int

Number of poloidal channel sections.

required
label str

Description label for output.

required

Returns:

Type Description
float

Total pressure drop (Pa).

Source code in process/models/blankets/blanket_library.py
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
def total_pressure_drop(
    self,
    output: bool,
    icoolpump: int,
    vel_coolant: float,
    len_pipe: float,
    n_pipe_90_deg_bends: int,
    n_pipe_180_deg_bends: int,
    den_coolant: float,
    visc_coolant_dynamic: float,
    coolant_electrical_conductivity: float,
    pol_channel_length: float,
    nopolchan: int,
    label: str,
) -> float:
    """Calculate the total pressure drop (Pa) for coolant flow in the first wall (FW) and breeding blanket (BZ).

    This includes frictional losses and, for liquid breeder coolants, magnetohydrodynamic (MHD) losses.

    Parameters
    ----------
    output : bool
        Whether to write output to file.
    icoolpump : int
        Switch for coolant type (1=primary He/H2O, 2=secondary PbLi/Li).
    flow_velocity : float
        Coolant flow velocity (m/s).
    len_pipe : float
        Total flow length along pipe (m).
    n_pipe_90_deg_bends : int
        Number of 90 degree bends in pipe.
    n_pipe_180_deg_bends : int
        Number of 180 degree bends in pipe.
    den_coolant : float
        Coolant density (kg/m³).
    visc_coolant_dynamic : float
        Coolant dynamic viscosity (Pa s).
    coolant_electrical_conductivity : float
        Coolant electrical conductivity (A V⁻¹ m⁻¹).
    pol_channel_length : float
        Length of poloidal channel section (m).
    nopolchan : int
        Number of poloidal channel sections.
    label : str
        Description label for output.

    Returns
    -------
    float
        Total pressure drop (Pa).
    """

    radius_pipe_90_deg_bend, radius_pipe_180_deg_bend = (
        self.calculate_pipe_bend_radius(i_ps=icoolpump)
    )

    # Friction - for all coolants
    dpres_friction = self.coolant_friction_pressure_drop(
        i_ps=icoolpump,
        radius_pipe_90_deg_bend=radius_pipe_90_deg_bend,
        radius_pipe_180_deg_bend=radius_pipe_180_deg_bend,
        n_pipe_90_deg_bends=n_pipe_90_deg_bends,
        n_pipe_180_deg_bends=n_pipe_180_deg_bends,
        len_pipe=len_pipe,
        den_coolant=den_coolant,
        visc_coolant=visc_coolant_dynamic,
        vel_coolant=vel_coolant,
        label=label,
        output=output,
    )

    if icoolpump == 2:
        dpres_mhd = self.liquid_breeder_mhd_pressure_drop(
            vel_coolant,
            visc_coolant_dynamic,
            coolant_electrical_conductivity,
            pol_channel_length,
            nopolchan,
            label,
            output=output,
        )
    else:
        dpres_mhd = 0

    # Total pressure drop (Pa)
    dpres_total = dpres_friction + dpres_mhd

    if output:
        po.osubhd(self.outfile, f"Total pressure drop for {label}")

        po.ocmmnt(self.outfile, "Friction drops plus MHD drops if applicaple")
        po.ovarre(
            self.outfile, "Total pressure drop (Pa)", "(deltap)", dpres_total, "OP "
        )
        po.ovarre(
            self.outfile,
            "Coolant flow velocity (m/s)",
            "(flow_velocity, formerly vv)",
            vel_coolant,
            "OP ",
        )

    return dpres_total

liquid_breeder_mhd_pressure_drop(vel, vsc, conduct_liq, l_channel, num_pol, label, output=False)

Calculates the pressure drop in a liquid metal flow channel due to MHD effects. The total pressure drop is the sum of contributions. This is only used for secondary coolant/breeder so rectangular flow channels are assumed.

Parameters:

Name Type Description Default
vel float

liquid metal coolant/breeder flow velocity (m/s)

required
vsc float

liquid metal visosity

required
conduct_liq float

liquid metal conductivity

required
l_channel float

length long poloidal sections of channel

required
num_pol int

number long poloidal sections of channel

required
label str

description of calculation

required
output bool

(Default value = False)

False
References

[Miy1986] Miyazaki et al. (1986), Magneto-Hydro-Dynamic Pressure Drop of Lithium Flow in Rectangular Ducts, Fusion Technology, 10:3P2A, 830-836, DOI: 10.13182/FST10-830

[Mal1995] Malang and Mattas (1995), Comparison of lithium and the eutectic lead-lithium alloy, two candidate liquid metal breeder materials for self-cooled blankets, Fusion Engineering and Design 27, 399-406

[Iba2013] Ibano et al (2013), Nutronics and pumping power analysis on the Tokamak reactor for the fusion-biomass hybrid concept, Fusion Engineering and Design, 88

[Sho2018] Shoki et al (2018), MHD pressure drop measurement of PbLi flow in double-bended pipe, Fusion Engineering and Design, 136, 17-23

[Klu2019] Kluber et al. (2019), Numerical simulations of 3D magnetohydrodynamic flows in dual-coolant lead lithium blankets, Fusion Engineering and Design, 146, 684-687

[Sua2021] MHD effects in geometrical sigularities on high velocity breeding blanket designs. Part II, ENR-PRD.BB-T007-D002, EFDA_D_2PDT9U. Also, see asssociated paper: Suarez et al. (2021), On the use of CFD to obtain head loss coefficients in hydraulic systems and it's appliaction to liquid metal flows in nuclear fusion reactor blankets, Plasma. Phys. Control fusion, 63, 124002

Source code in process/models/blankets/blanket_library.py
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
def liquid_breeder_mhd_pressure_drop(
    self,
    vel: float,
    vsc: float,
    conduct_liq: float,
    l_channel: float,
    num_pol: int,
    label: str,
    output: bool = False,
):
    """Calculates the pressure drop in a liquid metal flow channel due to MHD effects. The total pressure
    drop is the sum of contributions. This is only used for secondary coolant/breeder so rectangular flow
    channels are assumed.



    Parameters
    ----------
    vel :
        liquid metal coolant/breeder flow velocity (m/s)
    vsc :
        liquid metal visosity
    conduct_liq :
        liquid metal conductivity
    l_channel :
        length long poloidal sections of channel
    num_pol :
        number long poloidal sections of channel
    label :
        description of calculation
    output: bool
         (Default value = False)

    References
    ----------

    [Miy1986]   Miyazaki et al. (1986), Magneto-Hydro-Dynamic Pressure Drop of Lithium
    Flow in Rectangular Ducts, Fusion Technology, 10:3P2A, 830-836, DOI: 10.13182/FST10-830

    [Mal1995]   Malang and Mattas (1995), Comparison of lithium and the eutectic
    lead-lithium alloy, two candidate liquid metal breeder materials
    for self-cooled blankets, Fusion Engineering and Design 27, 399-406

    [Iba2013]   Ibano et al (2013), Nutronics and pumping power analysis on the
    Tokamak reactor for the fusion-biomass hybrid concept,
    Fusion Engineering and Design, 88

    [Sho2018]   Shoki et al (2018), MHD pressure drop measurement of PbLi flow
    in double-bended pipe, Fusion Engineering and Design, 136, 17-23

    [Klu2019]   Kluber et al. (2019), Numerical simulations of 3D magnetohydrodynamic
    flows in dual-coolant lead lithium blankets, Fusion Engineering and Design,
    146, 684-687

    [Sua2021]   MHD effects in geometrical sigularities on high velocity breeding
    blanket designs. Part II, ENR-PRD.BB-T007-D002, EFDA_D_2PDT9U.
    Also, see asssociated paper: Suarez et al. (2021), On the use of CFD
    to obtain head loss coefficients in hydraulic systems and it's appliaction
    to liquid metal flows in nuclear fusion reactor blankets, Plasma. Phys.
    Control fusion, 63, 124002

    """
    # Magnetic feild strength in IB or OB blanket
    if label == "Inboard blanket breeder liquid":
        b_mag = fwbs_variables.b_mag_blkt[0]  # IB
    if label == "Outboard blanket breeder liquid":
        b_mag = fwbs_variables.b_mag_blkt[1]  # OB

    # Half-widths
    # N.B. a_bz_liq (width in the toroidal direction) is in B direction
    half_wth_a = fwbs_variables.a_bz_liq * 0.5
    half_wth_b = fwbs_variables.b_bz_liq * 0.5

    # If have thin conducting walls...
    if fwbs_variables.i_blkt_liquid_breeder_channel_type != 1:
        # Caculate resistances of fluid and walls
        r_i = half_wth_b / (conduct_liq * half_wth_a)
        r_w = half_wth_b / (
            fwbs_variables.bz_channel_conduct_liq * fwbs_variables.th_wall_secondary
        )
        big_c = r_i / r_w
        #  Calculate pressure drop for conducting wall [Miy1986]
        kp = big_c / (1 + half_wth_a / (3 * half_wth_b) + big_c)
        mhd_pressure_drop = kp * conduct_liq * vel * (b_mag**2) * l_channel

    # If have perfcetly insulating FCIs...
    else:
        # Calculate pressure drop for (perfectly) insulating FCI [Mal1995]
        mhd_pressure_drop = (
            vel * b_mag * l_channel * np.sqrt(conduct_liq * vsc / half_wth_a)
        )

    # Total (Pa)
    liquid_breeder_pressure_drop_mhd = num_pol * mhd_pressure_drop

    if output:
        po.osubhd(
            self.outfile,
            f"Liquid metal breeder/coolant MHD pressure drop for {label}",
        )

        if fwbs_variables.i_blkt_liquid_breeder_channel_type == 0:
            po.ocmmnt(
                self.outfile,
                "Flow channels have thin conducting walls (i_blkt_liquid_breeder_channel_type==0)",
            )
            po.ovarre(
                self.outfile,
                "Wall conductance (A V-1 m-1)",
                "(bz_channel_conduct_liq)",
                fwbs_variables.bz_channel_conduct_liq,
                "OP ",
            )
        elif fwbs_variables.i_blkt_liquid_breeder_channel_type == 2:
            po.ocmmnt(
                self.outfile,
                "Flow Channel Inserts (FCIs) used (i_blkt_liquid_breeder_channel_type==2)",
            )
            po.ovarre(
                self.outfile,
                "FCI conductance (A V-1 m-1)",
                "(bz_channel_conduct_liq)",
                fwbs_variables.bz_channel_conduct_liq,
                "OP ",
            )
        else:
            po.ocmmnt(
                self.outfile,
                "Flow Channel Inserts - assumed perfect insulator (i_blkt_liquid_breeder_channel_type==1)",
            )

        po.ovarre(
            self.outfile,
            "Length of long poloidal secion of channel (m)",
            "(l_channel)",
            l_channel,
            "OP ",
        )
        po.ovarin(
            self.outfile,
            "Number of long poloidal secions of channel",
            "(num_pol)",
            num_pol,
            "OP ",
        )
        po.ovarre(
            self.outfile,
            "MHD pressure drop (Pa)",
            "(liquid_breeder_pressure_drop_mhd)",
            liquid_breeder_pressure_drop_mhd,
            "OP ",
        )

    return liquid_breeder_pressure_drop_mhd

calculate_pipe_bend_radius(i_ps)

Set the pipe bend radius based on the coolant type.

Parameters:

Name Type Description Default
i_ps int

switch for primary or secondary coolant

required
i_ps int
required
Source code in process/models/blankets/blanket_library.py
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
def calculate_pipe_bend_radius(self, i_ps: int):
    """Set the pipe bend radius based on the coolant type.

    Parameters
    ----------
    i_ps :
        switch for primary or secondary coolant
    i_ps: int :

    """
    # If primary coolant or secondary coolant (See DCLL)
    radius_pipe_90_deg_bend = (
        (3 * fwbs_variables.radius_fw_channel)
        if (i_ps == 1)
        else fwbs_variables.b_bz_liq
    )
    radius_pipe_180_deg_bend = radius_pipe_90_deg_bend / 2

    return radius_pipe_90_deg_bend, radius_pipe_180_deg_bend

coolant_friction_pressure_drop(i_ps, radius_pipe_90_deg_bend, radius_pipe_180_deg_bend, n_pipe_90_deg_bends, n_pipe_180_deg_bends, len_pipe, den_coolant, visc_coolant, vel_coolant, label, output=False)

Pressure drops are calculated for a pipe with a number of 90 and 180 degree bends. The pressure drop due to frictional forces along the total straight length of the pipe is calculated, then the pressure drop due to the bends is calculated. The total pressure drop is the sum of all contributions.

Parameters:

Name Type Description Default
i_ps int

switch for primary or secondary coolant

required
radius_pipe_90_deg_bend float

radius of 90 degree bend in pipe (m)

required
radius_pipe_180_deg_bend float

radius of 180 degree bend in pipe (m)

required
n_pipe_90_deg_bends float

number of 90 degree bends in the pipe

required
n_pipe_180_deg_bends float

number of 180 degree bends in the pipe

required
len_pipe float

total flow length along pipe (m)

required
den_coolant float

coolant density (kg/m³)

required
visc_coolant float

coolant viscosity (Pa s)

required
vel_coolant float

coolant flow velocity (m/s)

required
label str

component name

required
output bool

boolean of whether to write data to output file

False
Source code in process/models/blankets/blanket_library.py
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
def coolant_friction_pressure_drop(
    self,
    i_ps: int,
    radius_pipe_90_deg_bend: float,
    radius_pipe_180_deg_bend: float,
    n_pipe_90_deg_bends: float,
    n_pipe_180_deg_bends: float,
    len_pipe: float,
    den_coolant: float,
    visc_coolant: float,
    vel_coolant: float,
    label: str,
    output: bool = False,
):
    """Pressure drops are calculated for a pipe with a number of 90
    and 180 degree bends. The pressure drop due to frictional forces along
    the total straight length of the pipe is calculated, then the pressure
    drop due to the bends is calculated. The total pressure drop is the sum
    of all contributions.

    Parameters
    ----------
    i_ps :
        switch for primary or secondary coolant
    radius_pipe_90_deg_bend :
        radius of 90 degree bend in pipe (m)
    radius_pipe_180_deg_bend :
        radius of 180 degree bend in pipe (m)
    n_pipe_90_deg_bends :
        number of 90 degree bends in the pipe
    n_pipe_180_deg_bends :
        number of 180 degree bends in the pipe
    len_pipe :
        total flow length along pipe (m)
    den_coolant :
        coolant density (kg/m³)
    visc_coolant :
        coolant viscosity (Pa s)
    vel_coolant :
        coolant flow velocity (m/s)
    label :
        component name
    output :
        boolean of whether to write data to output file

    :Notes:
        Darcy-Weisbach Equation (straight pipe):

        ΔP = λ * L/D * (p 〈v〉²) / 2

        λ - Darcy friction factor, L - pipe length, D - hydraulic diameter,
        p - fluid density, 〈v〉 - fluid flow average velocity

        This function also calculates pressure drop equations for elbow bends,
        with modified coefficients.

        N.B. Darcy friction factor is estimated from the Haaland approximation.
    """

    # Calculate hydraulic dimater for round or retancular pipe (m)
    dia_pipe = self.pipe_hydraulic_diameter(i_ps)

    # Reynolds number
    reynolds_number = den_coolant * vel_coolant * dia_pipe / visc_coolant

    # Calculate Darcy friction factor
    # N.B. friction function Uses Haaland approx. which assumes a filled circular pipe.
    # Use dh which allows us to do fluid calculations for non-cicular tubes
    # (dh is estimate appropriate for fully developed flow).

    darcy_friction_factor = self.fw.darcy_friction_haaland(
        reynolds_number,
        fwbs_variables.roughness_fw_channel,
        fwbs_variables.radius_fw_channel,
    )

    # Pressure drop coefficient

    # Straight section
    f_straight = darcy_friction_factor * len_pipe / dia_pipe

    # 90 degree elbow pressure drop coefficient
    f_elbow_90 = self.elbow_coeff(
        radius_pipe_elbow=radius_pipe_90_deg_bend,
        deg_pipe_elbow=90.0,
        darcy_friction=darcy_friction_factor,
        dia_pipe=dia_pipe,
    )

    # 180 degree elbow pressure drop coefficient
    f_elbow_180 = self.elbow_coeff(
        radius_pipe_elbow=radius_pipe_180_deg_bend,
        deg_pipe_elbow=180.0,
        darcy_friction=darcy_friction_factor,
        dia_pipe=dia_pipe,
    )

    # Pressure drop due to friction in straight sections
    dpres_straight = f_straight * 0.5 * den_coolant * vel_coolant**2

    # Pressure drop due to 90 and 180 degree bends
    dpres_90 = n_pipe_90_deg_bends * f_elbow_90 * 0.5 * den_coolant * vel_coolant**2
    dpres_180 = (
        n_pipe_180_deg_bends * f_elbow_180 * 0.5 * den_coolant * vel_coolant**2
    )

    # Total pressure drop (Pa)
    dpres_total = dpres_straight + dpres_90 + dpres_180

    if output:
        po.osubhd(self.outfile, f"Pressure drop (friction) for {label}")
        po.ovarre(self.outfile, "Reynolds number", "(reyn)", reynolds_number, "OP ")
        po.ovarre(
            self.outfile,
            "Darcy friction factor",
            "(lambda)",
            darcy_friction_factor,
            "OP ",
        )
        po.ovarre(
            self.outfile,
            "Pressure drop (Pa)",
            "(pressure_drop)",
            dpres_total,
            "OP ",
        )
        po.ocmmnt(self.outfile, "This is the sum of the following:")
        po.ovarre(
            self.outfile,
            "            Straight sections (Pa)",
            "(pdropstraight)",
            dpres_straight,
            "OP ",
        )
        po.ovarre(
            self.outfile,
            "            90 degree bends (Pa)",
            "(pdrop90)",
            dpres_90,
            "OP ",
        )
        po.ovarre(
            self.outfile,
            "            180 degree bends (Pa)",
            "(pdrop180)",
            dpres_180,
            "OP ",
        )

        # TN: always write verbose stuff, it has no harm
        po.ovarre(
            self.outfile,
            "Straight section pressure drop coefficient",
            "(kstrght)",
            f_straight,
            "OP ",
        )
        po.ovarre(
            self.outfile,
            "90 degree elbow coefficient",
            "(kelbwn)",
            f_elbow_90,
            "OP ",
        )
        po.ovarre(
            self.outfile,
            "180 degree elbow coefficient coefficient",
            "(kelbwt)",
            f_elbow_180,
            "OP ",
        )

    return dpres_total

pipe_hydraulic_diameter(i_channel_shape)

Caculate the hydraulic diameter (m) for a given coolant pipe size/shape.

Parameters:

Name Type Description Default
i_channel_shape

switch for circular or rectangular channel crossection. Shape depends on whether primary or secondary coolant

required
Source code in process/models/blankets/blanket_library.py
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
def pipe_hydraulic_diameter(self, i_channel_shape):
    """Caculate the hydraulic diameter (m) for a given coolant pipe size/shape.


    Parameters
    ----------
    i_channel_shape :
        switch for circular or rectangular channel crossection.
        Shape depends on whether primary or secondary coolant
    """
    # If primary coolant then circular channels assumed
    if i_channel_shape == 1:
        return 2.0 * fwbs_variables.radius_fw_channel

    # If secondary coolant then rectangular channels assumed
    if i_channel_shape == 2:
        return (
            2
            * fwbs_variables.a_bz_liq
            * fwbs_variables.b_bz_liq
            / (fwbs_variables.a_bz_liq + fwbs_variables.b_bz_liq)
        )

    raise ProcessValueError(
        f"i_channel_shape ={i_channel_shape} is an invalid option."
    )

elbow_coeff(radius_pipe_elbow, deg_pipe_elbow, darcy_friction, dia_pipe)

Calculates elbow bend coefficients for pressure drop calculations.

Parameters:

Name Type Description Default
radius_pipe_elbow float

Pipe elbow radius (m)

required
deg_pipe_elbow float

Pipe elbow angle (degrees)

required
darcy_friction float

Darcy friction factor

required
dia_pipe float

Pipe diameter (m)

required

Returns:

Type Description
float

Elbow coefficient for pressure drop calculation

References
  • [Ide1969] Idel'Cik, I. E. (1969), Memento des pertes de charge, Collection de la Direction des Etudes et Recherches d'Electricité de France.
Source code in process/models/blankets/blanket_library.py
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
def elbow_coeff(
    self,
    radius_pipe_elbow: float,
    deg_pipe_elbow: float,
    darcy_friction: float,
    dia_pipe: float,
) -> float:
    """Calculates elbow bend coefficients for pressure drop calculations.

    Parameters
    ----------
    radius_pipe_elbow : float
        Pipe elbow radius (m)
    deg_pipe_elbow : float
        Pipe elbow angle (degrees)
    darcy_friction : float
        Darcy friction factor
    dia_pipe : float
        Pipe diameter (m)

    Returns
    -------
    float
        Elbow coefficient for pressure drop calculation

    References
    ----------
    - [Ide1969] Idel'Cik, I. E. (1969), Memento des pertes de charge,
    Collection de la Direction des Etudes et Recherches d'Electricité de France.
    """

    if deg_pipe_elbow == 90:
        a = 1.0
    elif deg_pipe_elbow < 70:
        a = 0.9 * np.sin(deg_pipe_elbow * np.pi / 180.0)
    elif deg_pipe_elbow > 100:
        a = 0.7 + (0.35 * np.sin((deg_pipe_elbow / 90.0) * (np.pi / 180.0)))
    else:
        raise ProcessValueError(
            "No formula for 70 <= elbow angle(deg) <= 100, only 90 deg option available in this range."
        )

    r_ratio = radius_pipe_elbow / dia_pipe

    if r_ratio > 1:
        b = 0.21 / r_ratio**0.5
    elif r_ratio < 1:
        b = 0.21 / r_ratio**2.5
    else:
        b = 0.21

    # Singularity
    ximt = a * b

    # Friction
    xift = (
        (np.pi / 180.0)
        * darcy_friction
        * (radius_pipe_elbow / dia_pipe)
        * deg_pipe_elbow
    )

    # Elbow Coefficient
    return ximt + xift

coolant_pumping_power(output, i_liquid_breeder, temp_coolant_pump_outlet, temp_coolant_pump_inlet, pres_coolant_pump_inlet, dpres_coolant, mflow_coolant_total, primary_coolant_switch, den_coolant, label)

Calculate the coolant pumping power in MW for the first wall (FW) or breeding blanket (BZ) coolant.

Parameters:

Name Type Description Default
output bool

Whether to write data to output file.

required
i_liquid_breeder int

Switch for primary coolant or secondary coolant/breeder (1=primary He/H2O, 2=secondary PbLi/Li).

required
temp_coolant_pump_outlet float

Pump outlet temperature (K).

required
temp_coolant_pump_inlet float

Pump inlet temperature (K).

required
pressure float

Outlet (pump inlet) coolant pressure (Pa).

required
dpres_coolant float

Coolant pressure drop (Pa).

required
mflow_coolant_total float

Total coolant mass flow rate in (kg/s).

required
primary_coolant_switch str

Name of FW/blanket coolant (e.g., "Helium" or "Water") if icoolpump=1.

required
den_coolant float

Density of coolant or liquid breeder (kg/m³).

required
label str

Description label for output.

required

Returns:

Type Description
float

Pumping power in MW.

References
- Idel'Cik, I. E. (1969), Memento des pertes de charge
- S.P. Sukhatme (2005), A Textbook on Heat Transfer
Source code in process/models/blankets/blanket_library.py
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
def coolant_pumping_power(
    self,
    output: bool,
    i_liquid_breeder: int,
    temp_coolant_pump_outlet: float,
    temp_coolant_pump_inlet: float,
    pres_coolant_pump_inlet: float,
    dpres_coolant: float,
    mflow_coolant_total: float,
    primary_coolant_switch: str,
    den_coolant: float,
    label: str,
) -> float:
    """Calculate the coolant pumping power in MW for the first wall (FW) or breeding blanket (BZ) coolant.

    Parameters
    ----------
    output : bool
        Whether to write data to output file.
    i_liquid_breeder : int
        Switch for primary coolant or secondary coolant/breeder (1=primary He/H2O, 2=secondary PbLi/Li).
    temp_coolant_pump_outlet : float
        Pump outlet temperature (K).
    temp_coolant_pump_inlet : float
        Pump inlet temperature (K).
    pressure : float
        Outlet (pump inlet) coolant pressure (Pa).
    dpres_coolant : float
        Coolant pressure drop (Pa).
    mflow_coolant_total : float
        Total coolant mass flow rate in (kg/s).
    primary_coolant_switch : str
        Name of FW/blanket coolant (e.g., "Helium" or "Water") if icoolpump=1.
    den_coolant : float
        Density of coolant or liquid breeder (kg/m³).
    label : str
        Description label for output.

    Returns
    -------
    float
        Pumping power in MW.

    References
    ----------
        - Idel'Cik, I. E. (1969), Memento des pertes de charge
        - S.P. Sukhatme (2005), A Textbook on Heat Transfer
    """

    # Pump outlet pressure (Pa)
    # The pump adds the pressure lost going through the coolant channels back
    pres_coolant_pump_outlet = pres_coolant_pump_inlet + dpres_coolant

    # Adiabatic index for helium or water
    gamma = (5 / 3) if fwbs_variables.i_blkt_coolant_type == 1 else (4 / 3)

    # If calculating for primary coolant
    if i_liquid_breeder == 1:
        # The pumping power is be calculated in the most general way,
        # using enthalpies before and after the pump.

        pump_outlet_fluid_properties = FluidProperties.of(
            fluid_name=primary_coolant_switch,
            temperature=temp_coolant_pump_outlet,
            pressure=pres_coolant_pump_outlet,
        )

        # Assume isentropic pump so that s1 = s2
        s1 = pump_outlet_fluid_properties.entropy

        # Get specific enthalpy at the outlet (J/kg) before pump using pressure and entropy s1
        pump_inlet_fluid_properties = FluidProperties.of(
            fluid_name=primary_coolant_switch,
            pressure=pres_coolant_pump_inlet,
            entropy=s1,
        )

        # Pumping power (MW) is given by enthalpy change, with a correction for
        # the isentropic efficiency of the pump.
        fp = (
            temp_coolant_pump_outlet
            * (
                1
                - (pres_coolant_pump_outlet / pres_coolant_pump_inlet)
                ** -((gamma - 1) / gamma)
            )
            / (
                fwbs_variables.etaiso
                * (temp_coolant_pump_inlet - temp_coolant_pump_outlet)
            )
        )
        pumppower = (
            1e-6
            * mflow_coolant_total
            * (
                pump_outlet_fluid_properties.enthalpy
                - pump_inlet_fluid_properties.enthalpy
            )
            / fwbs_variables.etaiso
        ) / (1 - fp)

    # If calculating for secondary coolant/breeder...
    else:
        # Calculate specific volume
        spec_vol = 1 / den_coolant

        # Pumping power (MW) is given by pressure change, with a correction for
        # the isentropic efficiency of the pump.
        fp = (
            temp_coolant_pump_outlet
            * (
                1
                - (pres_coolant_pump_outlet / pres_coolant_pump_inlet)
                ** -((gamma - 1) / gamma)
            )
            / (
                fwbs_variables.etaiso_liq
                * (temp_coolant_pump_inlet - temp_coolant_pump_outlet)
            )
        )
        pumppower = (
            1e-6
            * mflow_coolant_total
            * spec_vol
            * dpres_coolant
            / fwbs_variables.etaiso_liq
        ) / (1 - fp)

    # Error for dpres_coolant too large
    if fp >= 1:
        raise ProcessValueError(
            "Pressure drops in coolant are too large to be feasible"
        )

    if output:
        po.oheadr(self.outfile, "Mechanical Pumping Power for " + label)
        po.osubhd(self.outfile, "Pumping power for " + label)

        po.ovarre(
            self.outfile, "Pumping power (MW)", "(pumppower)", pumppower, "OP "
        )
        po.ovarre(
            self.outfile,
            "FW or Blanket inlet (pump oulet) pressure (Pa)",
            "(coolpin)",
            pres_coolant_pump_outlet,
            "OP ",
        )
        po.ovarre(
            self.outfile,
            "FW or Blanket oulet (pump inlet) pressure (Pa)",
            "(pres_coolant_pump_inlet)",
            pres_coolant_pump_inlet,
            "OP ",
        )
        po.ovarre(
            self.outfile,
            "FW or Blanket total pressure drop (Pa)",
            "(dpres_coolant)",
            dpres_coolant,
            "OP ",
        )
        po.ovarre(
            self.outfile,
            "Mass flow rate in (kg/s) = ",
            "(mf)",
            mflow_coolant_total,
            "OP ",
        )

    return pumppower

OutboardBlanket

Bases: BlanketLibrary

Source code in process/models/blankets/blanket_library.py
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
class OutboardBlanket(BlanketLibrary):
    def calculate_basic_geometry(self):
        self.component_volumes()

        dia_blkt_channel = self.pipe_hydraulic_diameter(i_channel_shape=1)
        fwbs_variables.radius_blkt_channel = dia_blkt_channel / 2
        (
            fwbs_variables.radius_blkt_channel_90_bend,
            fwbs_variables.radius_blkt_channel_180_bend,
        ) = self.calculate_pipe_bend_radius(i_ps=1)

    def calculate_blanket_outboard_module_geometry(
        self,
        n_blkt_outboard_modules_toroidal: int,
        rmajor: float,
        rminor: float,
        dr_fw_plasma_gap_outboard: float,
    ) -> float:
        """Calculate the mid-plane toroidal circumference and segment length of the outboard blanket.

        Parameters
        ----------
        n_blkt_outboard_modules_toroidal : int
            Number of outboard blanket modules in the toroidal direction.
        rmajor : float
            Major radius (m).
        rminor : float
            Minor radius (m).
        dr_fw_plasma_gap_outboard : float
            Outboard first wall to plasma gap (m).

        Returns
        -------
        float
            Length of outboard blanket segment in the toroidal direction (m).
        """
        return (
            2.0 * np.pi * (rmajor + rminor + dr_fw_plasma_gap_outboard)
        ) / n_blkt_outboard_modules_toroidal

calculate_basic_geometry()

Source code in process/models/blankets/blanket_library.py
3275
3276
3277
3278
3279
3280
3281
3282
3283
def calculate_basic_geometry(self):
    self.component_volumes()

    dia_blkt_channel = self.pipe_hydraulic_diameter(i_channel_shape=1)
    fwbs_variables.radius_blkt_channel = dia_blkt_channel / 2
    (
        fwbs_variables.radius_blkt_channel_90_bend,
        fwbs_variables.radius_blkt_channel_180_bend,
    ) = self.calculate_pipe_bend_radius(i_ps=1)

calculate_blanket_outboard_module_geometry(n_blkt_outboard_modules_toroidal, rmajor, rminor, dr_fw_plasma_gap_outboard)

Calculate the mid-plane toroidal circumference and segment length of the outboard blanket.

Parameters:

Name Type Description Default
n_blkt_outboard_modules_toroidal int

Number of outboard blanket modules in the toroidal direction.

required
rmajor float

Major radius (m).

required
rminor float

Minor radius (m).

required
dr_fw_plasma_gap_outboard float

Outboard first wall to plasma gap (m).

required

Returns:

Type Description
float

Length of outboard blanket segment in the toroidal direction (m).

Source code in process/models/blankets/blanket_library.py
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
def calculate_blanket_outboard_module_geometry(
    self,
    n_blkt_outboard_modules_toroidal: int,
    rmajor: float,
    rminor: float,
    dr_fw_plasma_gap_outboard: float,
) -> float:
    """Calculate the mid-plane toroidal circumference and segment length of the outboard blanket.

    Parameters
    ----------
    n_blkt_outboard_modules_toroidal : int
        Number of outboard blanket modules in the toroidal direction.
    rmajor : float
        Major radius (m).
    rminor : float
        Minor radius (m).
    dr_fw_plasma_gap_outboard : float
        Outboard first wall to plasma gap (m).

    Returns
    -------
    float
        Length of outboard blanket segment in the toroidal direction (m).
    """
    return (
        2.0 * np.pi * (rmajor + rminor + dr_fw_plasma_gap_outboard)
    ) / n_blkt_outboard_modules_toroidal

InboardBlanket

Bases: BlanketLibrary

Source code in process/models/blankets/blanket_library.py
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
class InboardBlanket(BlanketLibrary):
    def calculate_basic_geometry(self):
        self.component_volumes()

        dia_blkt_channel = self.pipe_hydraulic_diameter(i_channel_shape=1)
        fwbs_variables.radius_blkt_channel = dia_blkt_channel / 2
        (
            fwbs_variables.radius_blkt_channel_90_bend,
            fwbs_variables.radius_blkt_channel_180_bend,
        ) = self.calculate_pipe_bend_radius(i_ps=1)

        self.set_blanket_module_geometry()

    def calculate_blanket_inboard_module_geometry(
        self,
        n_blkt_inboard_modules_toroidal: int,
        rmajor: float,
        rminor: float,
        dr_fw_plasma_gap_inboard: float,
    ) -> float:
        """Calculate the mid-plane toroidal circumference and segment length of the inboard blanket.

        Parameters
        ----------
        n_blkt_inboard_modules_toroidal : int
            Number of inboard blanket modules in the toroidal direction.
        rmajor : float
            Major radius (m).
        rminor : float
            Minor radius (m).
        dr_fw_plasma_gap_inboard : float
            Inboard first wall to plasma gap (m).

        Returns
        -------
        float
            Length of inboard blanket segment in the toroidal direction (m).
        """
        return (
            2.0 * np.pi * (rmajor + rminor + dr_fw_plasma_gap_inboard)
        ) / n_blkt_inboard_modules_toroidal

calculate_basic_geometry()

Source code in process/models/blankets/blanket_library.py
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
def calculate_basic_geometry(self):
    self.component_volumes()

    dia_blkt_channel = self.pipe_hydraulic_diameter(i_channel_shape=1)
    fwbs_variables.radius_blkt_channel = dia_blkt_channel / 2
    (
        fwbs_variables.radius_blkt_channel_90_bend,
        fwbs_variables.radius_blkt_channel_180_bend,
    ) = self.calculate_pipe_bend_radius(i_ps=1)

    self.set_blanket_module_geometry()

calculate_blanket_inboard_module_geometry(n_blkt_inboard_modules_toroidal, rmajor, rminor, dr_fw_plasma_gap_inboard)

Calculate the mid-plane toroidal circumference and segment length of the inboard blanket.

Parameters:

Name Type Description Default
n_blkt_inboard_modules_toroidal int

Number of inboard blanket modules in the toroidal direction.

required
rmajor float

Major radius (m).

required
rminor float

Minor radius (m).

required
dr_fw_plasma_gap_inboard float

Inboard first wall to plasma gap (m).

required

Returns:

Type Description
float

Length of inboard blanket segment in the toroidal direction (m).

Source code in process/models/blankets/blanket_library.py
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
def calculate_blanket_inboard_module_geometry(
    self,
    n_blkt_inboard_modules_toroidal: int,
    rmajor: float,
    rminor: float,
    dr_fw_plasma_gap_inboard: float,
) -> float:
    """Calculate the mid-plane toroidal circumference and segment length of the inboard blanket.

    Parameters
    ----------
    n_blkt_inboard_modules_toroidal : int
        Number of inboard blanket modules in the toroidal direction.
    rmajor : float
        Major radius (m).
    rminor : float
        Minor radius (m).
    dr_fw_plasma_gap_inboard : float
        Inboard first wall to plasma gap (m).

    Returns
    -------
    float
        Length of inboard blanket segment in the toroidal direction (m).
    """
    return (
        2.0 * np.pi * (rmajor + rminor + dr_fw_plasma_gap_inboard)
    ) / n_blkt_inboard_modules_toroidal

set_pumping_powers_as_fractions(f_p_fw_coolant_pump_total_heat, f_p_blkt_coolant_pump_total_heat, f_p_shld_coolant_pump_total_heat, f_p_div_coolant_pump_total_heat, p_fw_nuclear_heat_total_mw, psurffwi, psurffwo, p_blkt_nuclear_heat_total_mw, p_shld_nuclear_heat_mw, p_cp_shield_nuclear_heat_mw, p_plasma_separatrix_mw, p_div_nuclear_heat_total_mw, p_div_rad_total_mw)

Calculate mechanical pumping powers as fractions of thermal power in each component.

Parameters:

Name Type Description Default
f_p_fw_coolant_pump_total_heat float

Fraction for FW coolant pump.

required
f_p_blkt_coolant_pump_total_heat float

Fraction for blanket coolant pump.

required
f_p_shld_coolant_pump_total_heat float

Fraction for shield coolant pump.

required
f_p_div_coolant_pump_total_heat float

Fraction for divertor coolant pump.

required
p_fw_nuclear_heat_total_mw float

Total FW nuclear heating (MW).

required
psurffwi float

Inboard FW surface heating (MW).

required
psurffwo float

Outboard FW surface heating (MW).

required
p_blkt_nuclear_heat_total_mw float

Total blanket nuclear heating (MW).

required
p_shld_nuclear_heat_mw float

Shield nuclear heating (MW).

required
p_cp_shield_nuclear_heat_mw float

CP shield nuclear heating (MW).

required
p_plasma_separatrix_mw float

Plasma separatrix power (MW).

required
p_div_nuclear_heat_total_mw float

Divertor nuclear heating (MW).

required
p_div_rad_total_mw float

Divertor radiative power (MW).

required

Returns:

Type Description
tuple[float, float, float, float]

Tuple of pumping powers (MW) for FW, blanket, shield, and divertor.

Source code in process/models/blankets/blanket_library.py
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
def set_pumping_powers_as_fractions(
    f_p_fw_coolant_pump_total_heat: float,
    f_p_blkt_coolant_pump_total_heat: float,
    f_p_shld_coolant_pump_total_heat: float,
    f_p_div_coolant_pump_total_heat: float,
    p_fw_nuclear_heat_total_mw: float,
    psurffwi: float,
    psurffwo: float,
    p_blkt_nuclear_heat_total_mw: float,
    p_shld_nuclear_heat_mw: float,
    p_cp_shield_nuclear_heat_mw: float,
    p_plasma_separatrix_mw: float,
    p_div_nuclear_heat_total_mw: float,
    p_div_rad_total_mw: float,
) -> tuple[float, float, float, float]:
    """Calculate mechanical pumping powers as fractions of thermal power in each component.

    Parameters
    ----------
    f_p_fw_coolant_pump_total_heat : float
        Fraction for FW coolant pump.
    f_p_blkt_coolant_pump_total_heat : float
        Fraction for blanket coolant pump.
    f_p_shld_coolant_pump_total_heat : float
        Fraction for shield coolant pump.
    f_p_div_coolant_pump_total_heat : float
        Fraction for divertor coolant pump.
    p_fw_nuclear_heat_total_mw : float
        Total FW nuclear heating (MW).
    psurffwi : float
        Inboard FW surface heating (MW).
    psurffwo : float
        Outboard FW surface heating (MW).
    p_blkt_nuclear_heat_total_mw : float
        Total blanket nuclear heating (MW).
    p_shld_nuclear_heat_mw : float
        Shield nuclear heating (MW).
    p_cp_shield_nuclear_heat_mw : float
        CP shield nuclear heating (MW).
    p_plasma_separatrix_mw : float
        Plasma separatrix power (MW).
    p_div_nuclear_heat_total_mw : float
        Divertor nuclear heating (MW).
    p_div_rad_total_mw : float
        Divertor radiative power (MW).

    Returns
    -------
    tuple[float, float, float, float]
        Tuple of pumping powers (MW) for FW, blanket, shield, and divertor.
    """
    p_fw_coolant_pump_mw = f_p_fw_coolant_pump_total_heat * (
        p_fw_nuclear_heat_total_mw + psurffwi + psurffwo
    )
    p_blkt_coolant_pump_mw = (
        f_p_blkt_coolant_pump_total_heat * p_blkt_nuclear_heat_total_mw
    )
    p_shld_coolant_pump_mw = f_p_shld_coolant_pump_total_heat * (
        p_shld_nuclear_heat_mw + p_cp_shield_nuclear_heat_mw
    )
    p_div_coolant_pump_mw = f_p_div_coolant_pump_total_heat * (
        p_plasma_separatrix_mw + p_div_nuclear_heat_total_mw + p_div_rad_total_mw
    )
    return (
        p_fw_coolant_pump_mw,
        p_blkt_coolant_pump_mw,
        p_shld_coolant_pump_mw,
        p_div_coolant_pump_mw,
    )

eshellarea(rshell, rmini, rmino, zminor)

Routine to calculate the inboard, outboard and total surface areas of a toroidal shell comprising two elliptical sections

rshell : input real : major radius of centre of both ellipses (m) rmini : input real : horizontal distance from rshell to inboard elliptical shell (m) rmino : input real : horizontal distance from rshell to outboard elliptical shell (m) zminor : input real : vertical internal half-height of shell (m) ain : output real : surface area of inboard section (m3) aout : output real : surface area of outboard section (m3) atot : output real : total surface area of shell (m3) This routine calculates the surface area of the inboard and outboard sections of a toroidal shell defined by two co-centred semi-ellipses.

Parameters:

Name Type Description Default
rshell
required
rmini
required
rmino
required
zminor
required
Source code in process/models/blankets/blanket_library.py
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
def eshellarea(rshell, rmini, rmino, zminor):
    """Routine to calculate the inboard, outboard and total surface areas
    of a toroidal shell comprising two elliptical sections

    rshell : input real : major radius of centre of both ellipses (m)
    rmini  : input real : horizontal distance from rshell to
    inboard elliptical shell (m)
    rmino  : input real : horizontal distance from rshell to
    outboard elliptical shell (m)
    zminor : input real : vertical internal half-height of shell (m)
    ain    : output real : surface area of inboard section (m3)
    aout   : output real : surface area of outboard section (m3)
    atot   : output real : total surface area of shell (m3)
    This routine calculates the surface area of the inboard and outboard
    sections of a toroidal shell defined by two co-centred semi-ellipses.

    Parameters
    ----------
    rshell :

    rmini :

    rmino :

    zminor :

    """

    # Inboard section
    elong = zminor / rmini
    ain = 2.0 * np.pi * elong * (np.pi * rshell * rmini - 2.0 * rmini * rmini)

    # Outboard section
    elong = zminor / rmino
    aout = 2.0 * np.pi * elong * (np.pi * rshell * rmino + 2.0 * rmino * rmino)

    return ain, aout, ain + aout

dshellarea(rmajor, rminor, zminor)

Calculate the inboard, outboard, and total surface areas of a D-shaped toroidal shell.

The inboard section is assumed to be a cylinder. The outboard section is defined by a semi-ellipse, centred on the major radius of the inboard section.

Parameters:

Name Type Description Default
rmajor float

Major radius of inboard straight section (m)

required
rminor float

Horizontal width of shell (m)

required
zminor float

Vertical half-height of shell (m)

required

Returns:

Type Description
tuple[float, float, float]

Tuple containing: - ain: Surface area of inboard straight section (m²) - aout: Surface area of outboard curved section (m²) - atot: Total surface area of shell (m²)

Source code in process/models/blankets/blanket_library.py
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
def dshellarea(
    rmajor: float, rminor: float, zminor: float
) -> tuple[float, float, float]:
    """Calculate the inboard, outboard, and total surface areas of a D-shaped toroidal shell.

    The inboard section is assumed to be a cylinder.
    The outboard section is defined by a semi-ellipse, centred on the major radius of the inboard section.
    Parameters
    ----------
    rmajor : float
        Major radius of inboard straight section (m)
    rminor : float
        Horizontal width of shell (m)
    zminor : float
        Vertical half-height of shell (m)

    Returns
    -------
    tuple[float, float, float]
        Tuple containing:
        - ain: Surface area of inboard straight section (m²)
        - aout: Surface area of outboard curved section (m²)
        - atot: Total surface area of shell (m²)
    """
    # Area of inboard cylindrical shell
    ain = 4.0 * zminor * np.pi * rmajor

    # Area of elliptical outboard section
    elong = zminor / rminor
    aout = 2.0 * np.pi * elong * (np.pi * rmajor * rminor + 2.0 * rminor * rminor)

    return ain, aout, ain + aout

eshellvol(rshell, rmini, rmino, zminor, drin, drout, dz)

Routine to calculate the inboard, outboard and total volumes of a toroidal shell comprising two elliptical sections

This routine calculates the volume of the inboard and outboard sections of a toroidal shell defined by two co-centred semi-ellipses. Each section's internal and external surfaces are in turn defined by two semi-ellipses. The volumes of each section are calculated as the difference in those of the volumes of revolution enclosed by their inner and outer surfaces.

Parameters:

Name Type Description Default
rshell

major radius of centre of both ellipses (m)

required
rmini

horizontal distance from rshell to outer edge of inboard elliptical shell (m)

required
rmino

horizontal distance from rshell to inner edge of outboard elliptical shell (m)

required
zminor

vertical internal half-height of shell (m)

required
drin

horiz. thickness of inboard shell at midplane (m)

required
drout

horiz. thickness of outboard shell at midplane (m)

required
dz

vertical thickness of shell at top/bottom (m)

required

Returns:

Name Type Description
vin

volume of inboard section (m3)

vout

volume of outboard section (m3)

vtot

total volume of shell (m3)

-------
Source code in process/models/blankets/blanket_library.py
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
def eshellvol(rshell, rmini, rmino, zminor, drin, drout, dz):
    """Routine to calculate the inboard, outboard and total volumes
    of a toroidal shell comprising two elliptical sections

    This routine calculates the volume of the inboard and outboard sections
    of a toroidal shell defined by two co-centred semi-ellipses.
    Each section's internal and external surfaces are in turn defined
    by two semi-ellipses. The volumes of each section are calculated as
    the difference in those of the volumes of revolution enclosed by their
    inner and outer surfaces.

    Parameters
    ----------
    rshell :
        major radius of centre of both ellipses (m)
    rmini :
        horizontal distance from rshell to outer edge of inboard elliptical shell (m)
    rmino :
        horizontal distance from rshell to inner edge of outboard elliptical shell (m)
    zminor :
        vertical internal half-height of shell (m)
    drin :
        horiz. thickness of inboard shell at midplane (m)
    drout :
        horiz. thickness of outboard shell at midplane (m)
    dz :
        vertical thickness of shell at top/bottom (m)

    Returns
    -------
    vin :
        volume of inboard section (m3)
    vout:
        volume of outboard section (m3)
    vtot:
        total volume of shell (m3)
    -------
    """
    # Inboard section

    # Volume enclosed by outer (higher R) surface of elliptical section
    # and the vertical straight line joining its ends
    a = rmini
    b = zminor
    elong = b / a
    v1 = 2.0 * np.pi * elong * (0.5 * np.pi * rshell * a**2 - (2.0 / 3.0) * a**3)

    # Volume enclosed by inner (lower R) surface of elliptical section
    # and the vertical straight line joining its ends
    a = rmini + drin
    b = zminor + dz
    elong = b / a
    v2 = 2.0 * np.pi * elong * (0.5 * np.pi * rshell * a**2 - (2.0 / 3.0) * a**3)

    # Volume of inboard section of shell
    vin = v2 - v1

    # Outboard section

    # Volume enclosed by inner (lower R) surface of elliptical section
    # and the vertical straight line joining its ends
    a = rmino
    b = zminor
    elong = b / a
    v1 = 2.0 * np.pi * elong * (0.5 * np.pi * rshell * a**2 + (2.0 / 3.0) * a**3)

    # Volume enclosed by outer (higher R) surface of elliptical section
    # and the vertical straight line joining its ends
    a = rmino + drout
    b = zminor + dz
    elong = b / a
    v2 = 2.0 * np.pi * elong * (0.5 * np.pi * rshell * a**2 + (2.0 / 3.0) * a**3)

    # Volume of outboard section of shell
    vout = v2 - v1

    return vin, vout, vin + vout

dshellvol(rmajor, rminor, zminor, drin, drout, dz)

Routine to calculate the inboard, outboard and total volumes of a D-shaped toroidal shell

This routine calculates the volume of the inboard and outboard sections of a D-shaped toroidal shell defined by the above input parameters. The inboard section is assumed to be a cylinder of uniform thickness. The outboard section's internal and external surfaces are defined by two semi-ellipses, centred on the outer edge of the inboard section; its volume is calculated as the difference in those of the volumes of revolution enclosed by the two surfaces.

Parameters:

Name Type Description Default
rmajor

major radius to outer point of inboardstraight section of shell (m)

required
rminor

horizontal internal width of shell (m)

required
zminor

vertical internal half-height of shell (m)

required
drin

horiz. thickness of inboard shell at midplane (m)

required
drout

horiz. thickness of outboard shell at midplane (m)

required
dz

vertical thickness of shell at top/bottom (m)

required

Returns:

Name Type Description
vin

volume of inboard straight section (m3)

vout

volume of outboard curved section (m3)

vtot

total volume of shell (m3)

Source code in process/models/blankets/blanket_library.py
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
def dshellvol(rmajor, rminor, zminor, drin, drout, dz):
    """Routine to calculate the inboard, outboard and total volumes
    of a D-shaped toroidal shell

    This routine calculates the volume of the inboard and outboard sections
    of a D-shaped toroidal shell defined by the above input parameters.
    The inboard section is assumed to be a cylinder of uniform thickness.
    The outboard section's internal and external surfaces are defined
    by two semi-ellipses, centred on the outer edge of the inboard section;
    its volume is calculated as the difference in those of the volumes of
    revolution enclosed by the two surfaces.

    Parameters
    ----------
    rmajor :
        major radius to outer point of inboardstraight section of shell (m)
    rminor :
        horizontal internal width of shell (m)
    zminor :
        vertical internal half-height of shell (m)
    drin :
        horiz. thickness of inboard shell at midplane (m)
    drout :
        horiz. thickness of outboard shell at midplane (m)
    dz :
        vertical thickness of shell at top/bottom (m)

    Returns
    -------
    vin :
        volume of inboard straight section (m3)
    vout:
        volume of outboard curved section (m3)
    vtot:
        total volume of shell (m3)

    """
    # Volume of inboard cylindrical shell
    vin = 2.0 * (zminor + dz) * np.pi * (rmajor**2 - (rmajor - drin) ** 2)

    # Volume enclosed by inner surface of elliptical outboard section
    # and the vertical straight line joining its ends
    a = rminor
    b = zminor
    elong = b / a
    v1 = 2.0 * np.pi * elong * (0.5 * np.pi * rmajor * a**2 + (2.0 / 3.0) * a**3)

    # Volume enclosed by outer surface of elliptical outboard section
    # and the vertical straight line joining its ends
    a = rminor + drout
    b = zminor + dz
    elong = b / a
    v2 = 2.0 * np.pi * elong * (0.5 * np.pi * rmajor * a**2 + (2.0 / 3.0) * a**3)

    # Volume of elliptical outboard shell
    vout = v2 - v1

    return vin, vout, vin + vout