1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 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
|
! Copyright (C) 2005 Barbara Ercolano
!! Version 2.02
module output_mod
use common_mod
use constants_mod
use emission_mod
use photon_mod
contains
subroutine outputGas(grid, extMap)
implicit none
type(grid_type), intent(inout) :: grid(*) ! the 3D grid
character(len=30), optional, intent(in) :: extMap
! local variables
logical :: lgInSlit !is this cell within the slit?
integer :: i,j,k,l,iG, & ! counters
& iup,ilow,iLine,elem,ion,iCount,iAb,iRes
integer :: nrec ! counter for rec lines
integer :: abFileUsed
integer :: cellPUsed
integer :: ios ! I/O error status
integer :: err, imul
integer :: totLinePackets ! total number of line packets
integer :: totEscapedPackets ! total number of esc packets
integer :: ypLoc
real, allocatable :: cMap(:) ! local c-value
real, allocatable :: flam(:) ! f(lambda) value from file
real :: dV ! volume of this cell
real :: factor1 ! calculations factor
real :: factor2 ! calculations factor
real :: g ! alpha*h*nu (used to calculate line intensities)
real, allocatable :: HbetaLuminosity(:) ! MC Hbeta luminosity [E36 erg/sec]
real, allocatable :: HbetaVol(:) ! analytical Hbeta vol em [E36 erg/sec]
real :: LtotAn ! HbetaVol * sumAn
real :: LtotMC ! HbetaLuminosity * sumMC
real :: sumAn ! sum of the relative an intensities
real :: sumMC ! sum of the relative MC intensities
real :: Te10000 ! TeUsed/10000.miser_qinfo -A
real, parameter :: hcryd = 2.1799153e-11!
real :: radius, dz, dr
! lexingotn
! real, allocatable :: denominatorIon(:,:,:) ! denominator for IonVol calculations
! Harrington 1982
real, allocatable :: denominatorIon(:,:) ! denominator for IonVol calculations
real, allocatable :: denominatorTe(:,:,:) ! denominator for TeVol calculations
real, dimension(nLines) :: &
& linePacketsUsed ! linePackets at this cell
real, dimension(nElements) :: elemAbundanceUsed ! local abundances
real, allocatable :: resLinesVol(:,:) ! resonance lines volume emission
real, allocatable :: resLinesVolCorr(:,:)! resonance lines volume emissivity corrected
real, allocatable :: HIVol(:,:,:) ! analytical HI rec lines volume emissivity
real, allocatable :: HeIVol(:,:) ! analytical HeI volume emissivity
real, allocatable :: HeIIVol(:,:,:) ! analytical HeII rec lines volume emissivity
real, allocatable :: ionDenVol(:,:,:) ! volume av ion abun per H+ particle
real, allocatable :: lineLuminosity(:,:) ! MC luminosity in a given line
double precision, dimension(nElements,nstages,nForLevels,nForLevels) :: wav
double precision, dimension(nForLevelsLarge,nForLevelsLarge) :: wavLarge
real, allocatable :: forbVol(:,:,:,:,:) ! analytical forbidden lines volume emissivit
real, allocatable :: forbVolLarge(:,:,:) ! analytical forbidden lines volume emissivity
real, allocatable :: TeVol(:,:,:) ! mean Temperature for a given ion
! recombination lines stuff (1=Oii, 2=mgii,3=neii,4=cii,5=n33ii,6=n34ii)
real(kind=8), allocatable :: RecLinesFlux(:,:,:) ! 1st is ion num, 2nd is emissivity
real(kind=8), dimension(500) :: recLambdaOII ! lambda in angstrom
real(kind=8), dimension(500) :: recLambdaMgII
real(kind=8), dimension(500) :: recLambdaNeII
real(kind=8), dimension(500) :: recLambdaCII
real(kind=8), dimension(500) :: recLambdaN33II ! 3-3, Kisielius & Storey 2002
real(kind=8), dimension(500) :: recLambdaN34II ! 3d-4f, Escalante & Victor 1990
real(kind=8), dimension(500) :: recFlux ! local rec lines fluxes from subroutine
real(kind=8), dimension(500) :: recLinesLambda ! local rec lines wavelengths from subroutine
real :: denIon=0.
print*, "in outputGas"
! allocate and initialize arrays and variables
if (convPercent >= resLinesTransfer .and. lgDust) then
allocate(resLinesVol(0:nAbComponents, 1:nResLines), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array resLinesVol memory"
stop
end if
resLinesVol = 0.
allocate(resLinesVolCorr(0:nAbComponents, 1:nResLines), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array resLinesVolCorr memory"
stop
end if
resLinesVolCorr = 0.
end if
allocate(HIVol(0:nAbComponents, 3:30, 2:8), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array HIVol memory"
stop
end if
allocate(HeIVol(0:nAbComponents, 1:34), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array HeIVol memory"
stop
end if
allocate(HeIIVol(0:nAbComponents, 3:30, 2:16), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array HeIIVol memory"
stop
end if
allocate(ionDenVol(0:nAbComponents, 1:nElements, 1:nstages), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array ionDenVol memory"
stop
end if
allocate(forbVol(0:nAbComponents, 1:nElements, 1:nstages, nForLevels,nForLevels), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array forbVol memory"
stop
end if
allocate(forbVolLarge(0:nAbComponents, nForLevelsLarge,nForLevelsLarge), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array forbVol memory"
stop
end if
allocate(TeVol(0:nAbComponents, 1:nElements, 1:nstages), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array TeVol memory"
stop
end if
allocate(recLinesFlux(0:nAbComponents, 1:6, 1:500), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array recLinesFlux memory"
stop
end if
! Lexington
! allocate(denominatorIon(0:nAbComponents, 1:nElements, 1:nstages), stat=err)
! if (err /= 0) then
! print*, "! output mod: can't allocate array denominatorIon memory"
! stop
! end if
! Harrington
allocate(denominatorIon(0:nAbComponents, 1:nElements), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array denominatorIon memory"
stop
end if
allocate(denominatorTe(0:nAbComponents, 1:nElements, 1:nstages), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array denominatorTe memory"
stop
end if
allocate(HbetaVol(0:nAbComponents), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array HbetaVol memory"
stop
end if
if (lgDebug) then
allocate(lineLuminosity(0:nAbComponents, 1:nLines), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array lineLuminosity memory"
stop
end if
allocate(HbetaLuminosity(0:nAbComponents), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array HbetaVol memory"
stop
end if
HbetaLuminosity = 0.
lineLuminosity = 0.
end if
denominatorIon = 0.
denominatorTe = 0.
g = 0.
HbetaVol = 0.
HIVol = 0.
HeIVol = 0.
HeIIVol = 0.
elemAbundanceUsed = 0.
ionDenUsed = 0.
ionDenVol = 0.
LtotAn = 0.
LtotMC = 0.
wav = 0.
wavLarge = 0.
forbVol = 0.
forbVolLarge = 0.
recLinesLambda = 0.
recLambdaOII = 0.
recLambdaMgII = 0.
recLambdaNeII = 0.
recLambdaCII = 0.
recLambdan33II = 0.
recLambdan34II = 0.
recLinesFlux = 0.
sumAn = 0.
sumMC = 0.
TeVol = 0.
totLinePackets = 0
totEscapedPackets=0
if (present(extMap)) then
if (ngrids>1) then
print*, '! outputGas: no multiple grids are allowed with extinction maps (yet)'
print*, 'if this is needed please contact B. Ercolano'
stop
end if
allocate(cMap(0:grid(iG)%nCells), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array c memory"
stop
end if
cMap=0.
open(unit=19, status='old', position='rewind', file=extMap, action="read",iostat=ios)
if (ios /= 0) then
print*, "! outputGas: can't open file for reading, ", extMap
stop
end if
do i = 1, grid(1)%nx
do j = 1, grid(1)%ny
do k = 1, grid(1)%nz
if (grid(1)%active(i,j,k)>0) then
read(19, *) l,l,l, cMap(grid(1)%active(i,j,k))
else
read(19, *)
end if
end do
end do
end do
close(19)
open(unit=20, status='old', position='rewind', file=PREFIX//'/share/mocassin/data/flambda.dat', action="read",iostat=ios)
if (ios /= 0) then
print*, "! outputGas: can't open file for reading, ",PREFIX,"/share/mocassin/data/flambda.dat"
stop
end if
read(20,*) l
allocate(flam(1:l), stat=err)
if (err /= 0) then
print*, "! output mod: can't allocate array flam memory"
stop
end if
flam = 0.
do i = 1, l
read(20, *) flam(i)
end do
close(20)
end if
! read in data file for higher level H transitions
call hdatx
! calculate analytical emissivities first
! sum over all cells
do iG = 1, nGrids
if (lg2D) then
yPloc = 1
else
yPloc = grid(iG)%ny
end if
outer: do i = 1, grid(iG)%nx
do j = 1, yploc
do k = 1, grid(iG)%nz
!print*, i, j,k
! temporary arrangement
if (lg1D ) then
if (grid(iG)%ionDen(grid(iG)%active(i,j,k),elementXref(1),1) > 0.95) then
print*, 'R_out = ', grid(iG)%xAxis(i-1), ' (',i-1,')'
exit outer
end if
end if
! slit condition
if (dxSlit > 0. .and. dySlit > 0.) then
if ( (abs(grid(iG)%xAxis(i))<=dxSlit/2.) .and. &
(abs(grid(iG)%yAxis(i))<=dySlit/2.) ) then
lgInSlit = .true.
else
lgInSlit = .false.
end if
else
lgInSlit = .true.
end if
!print*, grid(iG)%active(i, j, k)
! check this cell is in the ionized region
if ((grid(iG)%active(i, j, k)>0)) then
if (grid(iG)%lgBlack(grid(iG)%active(i,j,k))<1 .and. lgInSlit ) then
! find the physical properties of this cell
cellPUsed = grid(iG)%active(i,j,k)
abFileUsed = grid(iG)%abFileIndex(i,j,k)
elemAbundanceUsed(:) = grid(iG)%elemAbun(grid(iG)%abFileIndex(i,j,k), :)
HdenUsed = grid(iG)%Hden(grid(iG)%active(i,j,k))
ionDenUsed = grid(iG)%ionDen(grid(iG)%active(i,j,k), :, :)
if (lgDebug) linePacketsUsed = grid(iG)%linePackets(grid(iG)%active(i,j,k), :)
NeUsed = grid(iG)%Ne(grid(iG)%active(i,j,k))
TeUsed = grid(iG)%Te(grid(iG)%active(i,j,k))
Te10000 = TeUsed/10000.
log10Te = log10(TeUsed)
log10Ne = log10(NeUsed)
sqrTeUsed = sqrt(TeUsed)
! recalculate line emissivities at this cell
! calculate the emission due to HI and HeI rec lines
call RecLinesEmission()
! calculate the emission due to the heavy elements
! forbidden lines
call forLines()
! apply extinction correction according to extinction map
if (present(extMap)) then
if (ngrids>1) then
print*, '! outputGas: no multiple grids are allowed with extinction maps (yet)'
print*, 'if this is needed please contact be@star.ucl.ac.uk'
stop
end if
iCount = 1
! H recombination lines
do iup = 30, ilow+1, -1
do ilow = 2, min(8, iup-1)
HIRecLines(iup, ilow) = &
& HIRecLines(iup, ilow)*10.**(-(cMap(grid(1)%active(i,j,k))*flam(iCount)&
& +cMap(grid(1)%active(i,j,k))))
iCount = iCount + 1
end do
end do
! He I recombination lines
do l = 1, 34
HeIRecLines(l) = HeIRecLines(l)*10.**&
& (-(cMap(grid(1)%active(i,j,k))*flam(iCount)+cMap(grid(1)%active(i,j,k))))
iCount = iCount + 1
end do
! HeII recombination lines
! HeII rec lines
do iup = 3, 30
do ilow = 2, min(16, iup-1)
HeIIRecLines(iup,ilow) = HeIIRecLines(iup,ilow)*&
& 10.**(-(cMap(grid(1)%active(i,j,k))*flam(iCount)+cMap(grid(1)%active(i,j,k))))
iCount = iCount + 1
end do
end do
! collisionally exited lines
do elem = 3, nElements
do ion = 1, min(elem+1, nstages)
if (.not.lgElementOn(elem)) exit
if (lgDataAvailable(elem, ion)) then
if (elem == 26 .and. ion == 2) then
do iup = 1,nForLevelsLarge
do ilow = 1, nForLevelsLarge
forbiddenLinesLarge(iup,ilow) = &
& forbiddenLinesLarge(iup,ilow)*10.**&
& (-(cMap(grid(1)%active(i,j,k))*flam(iCount)+&
& cMap(grid(1)%active(i,j,k))))
iCount = iCount+1
end do
end do
else
do iup = 1,nForLevels
do ilow = 1, nForLevels
forbiddenLines(elem,ion,iup,ilow) = &
& forbiddenLines(elem,ion,iup,ilow)*10.**&
& (-(cMap(grid(1)%active(i,j,k))*flam(iCount)+&
& cMap(grid(1)%active(i,j,k))))
iCount = iCount+1
end do
end do
end if
end if
end do
end do
end if
! dV = getVolume(grid(iG), i,j,k)
if (lg2D .and. lgSymmetricXYZ) then
radius = sqrt((grid(iG)%xAxis(i)/1.e15)*&
&(grid(iG)%xAxis(i)/1.e15) + (grid(iG)%yAxis(j)/1.e15)*&
&(grid(iG)%yAxis(j)/1.e15))
if (i == 1) then
dr = (grid(iG)%xAxis(2)-grid(iG)%xAxis(1))/2.
elseif (i == grid(iG)%nx) then
dr = (grid(iG)%xAxis(grid(iG)%nx)-&
&grid(iG)%xAxis(grid(ig)%nx-1))
else
dr = (grid(iG)%xAxis(i+1)-grid(iG)%xAxis(i-1))/2.
end if
dr = dr/1.e15
if (k == 1) then
dz = (grid(iG)%zAxis(2)-grid(iG)%zAxis(1))/2.
elseif (k == grid(iG)%nz) then
dz = (grid(iG)%zAxis(grid(iG)%nz)-&
&grid(iG)%zAxis(grid(ig)%nz-1))
else
dz = (grid(iG)%zAxis(k+1)-grid(iG)%zAxis(k-1))/2.
end if
dz = dz/1.e15
dV = 2.*Pi*radius*dr*dz
! dV = getVolume(grid(iG), i,j,k)*scale2d
else if (lg2D .and. .not.lgSymmetricXYZ) then
print*, "! outputGas: a 2d grid must be symmetric"
stop
else if (.not. lg2D) then
dV = getVolume(grid(iG), i,j,k)
end if
! Hbeta
HbetaVol(abFileUsed) = HbetaVol(abFileUsed) + real(HIRecLines(4,2)*HdenUsed*dV)
HbetaVol(0) = HbetaVol(0) + real(HIRecLines(4,2)*HdenUsed*dV)
if (HbetaVol(0) .ne. HbetaVol(0)) then
print *,real(HIRecLines(4,2)),HdenUsed,dV
stop
endif
! HI rec lines
do ilow = 2, 8
do iup = ilow+1, 30
HIVol(abFileUsed,iup,ilow) = HIVol(abFileUsed,iup,ilow) + &
& real(HIRecLines(iup,ilow)*HdenUsed*dV)
HIVol(0,iup,ilow) = HIVol(0,iup,ilow) + &
& real(HIRecLines(iup,ilow)*HdenUsed*dV)
end do
end do
! HeI recombination lines
HeIVol(abFileUsed,:) = HeIVol(abFileUsed,:) + real(HeIRecLines(:)*HdenUsed*dV)
HeIVol(0,:) = HeIVol(0,:) + real(HeIRecLines(:)*HdenUsed*dV)
! HeII rec lines
do iup = 3, 30
do ilow = 2, min(16, iup-1)
HeIIVol(abFileUsed,iup,ilow) = HeIIVol(abFileUsed,iup,ilow) + &
& real(HeIIRecLines(iup,ilow)*HdenUsed*dV)
HeIIVol(0,iup,ilow) = HeIIVol(0,iup,ilow) + &
& real(HeIIRecLines(iup,ilow)*HdenUsed*dV)
end do
end do
! Heavy elements forbidden lines
do elem = 3, nElements
do ion = 1, min(elem+1, nstages)
if (elem == 26 .and. ion == 2) then
do iup = 1, nForLevelsLarge
do ilow = 1, nForLevelsLarge
forbVolLarge(abFileUsed,iup,ilow) = &
& forbVolLarge(abFileUsed,iup,ilow) + &
& real(forbiddenLinesLarge(iup,ilow)*HdenUsed*dV)
forbVolLarge(0,iup,ilow) = &
& forbVolLarge(0,iup,ilow) + &
& real(forbiddenLinesLarge(iup,ilow)*HdenUsed*dV)
end do
end do
else
do iup = 1, nForLevels
do ilow = 1, nForLevels
forbVol(abFileUsed,elem,ion,iup,ilow) = &
& forbVol(abFileUsed,elem,ion,iup,ilow) + &
& real(forbiddenLines(elem,ion,iup,ilow)*HdenUsed*dV)
forbVol(0,elem,ion,iup,ilow) = &
& forbVol(0,elem,ion,iup,ilow) + &
& real(forbiddenLines(elem,ion,iup,ilow)*HdenUsed*dV)
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! print*,'HEFL',elem,ion,iup,ilow,forbiddenLines(elem,ion,iup,ilow),HdenUsed,dV
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
end do
end do
end if
end do
end do
if (lgDust .and. convPercent>resLinesTransfer) then
do iRes =1, nResLines
do imul = 1, resLine(iRes)%nmul
if (resLine(iRes)%elem==1) then
if ( resLine(iRes)%ion == 1 .and. &
&resLine(iRes)%moclow(imul)==1 &
&.and. resLine(iRes)%mochigh(imul)==2 ) then
! fits to Storey and Hummer MNRAS 272(1995)41
resLinesVol(abFileUsed, iRes) = resLinesVol(abFileUsed, iRes)+&
& 10**(-0.897*log10(TeUsed) + 5.05)* &
& grid(iG)%elemAbun(abFileUsed,1)*ionDenUsed(elementXref(1),2)*&
& real(NeUsed*HdenUsed*dV)
resLinesVolCorr(abFileUsed, iRes) = resLinesVolCorr(abFileUsed, iRes)+&
& 10**(-0.897*log10(TeUsed) + 5.05)* &
& grid(iG)%elemAbun(abFileUsed,1)*ionDenUsed(elementXref(1),2)*&
& real(NeUsed*HdenUsed*dV* (grid(iG)%fEscapeResPhotons(cellPUsed, iRes)))
resLinesVol(0, iRes) = resLinesVol(0, iRes)+&
& 10**(-0.897*log10(TeUsed) + 5.05)* &
& grid(iG)%elemAbun(abFileUsed,1)*ionDenUsed(elementXref(1),2)*&
& real(NeUsed*HdenUsed*dV)
resLinesVolCorr(0, iRes) = resLinesVolCorr(0, iRes)+&
& 10**(-0.897*log10(TeUsed) + 5.05)* grid(iG)%elemAbun(abFileUsed,1)*&
& ionDenUsed(elementXref(1),2)*&
& real(NeUsed*HdenUsed*dV* (grid(iG)%fEscapeResPhotons(cellPUsed, iRes)))
else
print*, "! outputGas: [warning] only dust heating from H Lyman &
&alpha and resonance lines from heavy"
print*, "elements is implemented in this version. please contact &
&author B. Ercolano -1-", ires
end if
else if (resLine(iRes)%elem>2) then
resLinesVol(abFileUsed, iRes) = resLinesVol(abFileUsed, iRes)+&
&real(forbiddenLines(resLine(iRes)%elem,resLine(iRes)%ion,&
&resLine(iRes)%moclow(imul),resLine(iRes)%mochigh(imul))*HdenUsed*dV)
resLinesVolCorr(abFileUsed, iRes) = resLinesVolCorr(abFileUsed, iRes)+&
&real(forbiddenLines(resLine(iRes)%elem,resLine(iRes)%ion,&
& resLine(iRes)%moclow(imul),resLine(iRes)%mochigh(imul))*&
& HdenUsed*dV*(grid(iG)%fEscapeResPhotons(cellPUsed, iRes)))
resLinesVol(0, iRes) = resLinesVol(0, iRes)+&
&real(forbiddenLines(resLine(iRes)%elem,resLine(iRes)%ion,&
&resLine(iRes)%moclow(imul),resLine(iRes)%mochigh(imul))*HdenUsed*dV)
resLinesVolCorr(0, iRes) = resLinesVolCorr(0, iRes)+&
&real(forbiddenLines(resLine(iRes)%elem,resLine(iRes)%ion,&
& resLine(iRes)%moclow(imul),resLine(iRes)%mochigh(imul))*&
& HdenUsed*dV*(grid(iG)%fEscapeResPhotons(cellPUsed, iRes)))
else
print*, "! outputGas: [warning] only dust heating from H Lyman &
&alpha and resonance lines from heavy"
print*, "elements is implemented in this version. please &
&contact author B. Ercolano -2-", ires
end if
end do
end do
end if
if (lgRecombination) then
if (lgElementOn(8)) then
denIon = ionDenUsed(elementXref(8),3)*&
& grid(iG)%elemAbun(abFileUsed,8)*HdenUsed
recFlux = 0.
recLinesLambda = 0.
! rec lines for OII
call roii(recLinesLambda, recFlux,TeUsed, NeUsed)
do nrec = 1, 500
recLinesFlux(abFileUsed,1,nrec) = recLinesFlux(abFileUsed,1,nrec) + &
&recFlux(nrec)*HIRecLines(4,2)*&
& HdenUsed*dV*&
&ionDenUsed(elementXref(8),3)*&
&grid(iG)%elemAbun(abFileUsed,8)/ionDenUsed(elementXref(1),2)
recLinesFlux(0,1,nrec) = recLinesFlux(0,1,nrec) + &
&recFlux(nrec)*HIRecLines(4,2)*&
& HdenUsed*dV*&
&ionDenUsed(elementXref(8),3)*&
&grid(iG)%elemAbun(abFileUsed,8)/ionDenUsed(elementXref(1),2)
end do
recLambdaOII = recLinesLambda
end if
if (lgElementOn(12)) then
recFlux = 0.
recLinesLambda = 0.
! rec lines for MgII 4481
call rmgii(recFlux, recLinesLambda, TeUsed)
recLinesFlux(abFileUsed,2,:) = recLinesFlux(abFileUsed,2,:) + recFlux*&
&HIRecLines(4,2)*HdenUsed*dV*&
&ionDenUsed(elementXref(12),3)*&
&grid(iG)%elemAbun(abFileUsed,12)/ionDenUsed(elementXref(1),2)
recLinesFlux(0,2,:) = recLinesFlux(0,2,:) + recFlux*&
&HIRecLines(4,2)*HdenUsed*dV*&
&ionDenUsed(elementXref(12),3)*&
&grid(iG)%elemAbun(abFileUsed,12)/ionDenUsed(elementXref(1),2)
recLambdaMgII = recLinesLambda
end if
if (lgElementOn(10)) then
recFlux = 0.
recLinesLambda = 0.
! rec lines for NeII
call rneii(recLinesLambda, recFlux, TeUsed)
do nrec = 1, 500
recLinesFlux(abFileUsed,3,nrec) = recLinesFlux(abFileUsed,3,nrec) + recFlux(nrec)*&
&HIRecLines(4,2)*HdenUsed*dV*&
&ionDenUsed(elementXref(10),3)*&
&grid(iG)%elemAbun(abFileUsed,10)/ionDenUsed(elementXref(1),2)
recLinesFlux(0,3,nrec) = recLinesFlux(0,3,nrec) + recFlux(nrec)*&
&HIRecLines(4,2)*HdenUsed*dV*&
&ionDenUsed(elementXref(10),3)*&
&grid(iG)%elemAbun(abFileUsed,10)/ionDenUsed(elementXref(1),2)
end do
recLambdaNeII = recLinesLambda
end if
if (lgElementOn(6)) then
recFlux = 0.
recLinesLambda = 0.
! rec lines for CII
call rcii(recLinesLambda, recFlux, TeUsed)
do nrec = 1, 500
recLinesFlux(abFileUsed,4,nrec) = recLinesFlux(abFileUsed,4,nrec) + recFlux(nrec)*&
&HIRecLines(4,2)*HdenUsed*dV*&
&ionDenUsed(elementXref(6),3)*&
&grid(iG)%elemAbun(abFileUsed,6)/ionDenUsed(elementXref(1),2)
recLinesFlux(0,4,nrec) = recLinesFlux(0,4,nrec) + recFlux(nrec)*&
&HIRecLines(4,2)*HdenUsed*dV*&
&ionDenUsed(elementXref(6),3)*&
&grid(iG)%elemAbun(abFileUsed,6)/ionDenUsed(elementXref(1),2)
end do
recLambdaCII = recLinesLambda
end if
if (lgElementOn(7)) then
recFlux = 0.
recLinesLambda = 0.
denIon = ionDenUsed(elementXref(7),3)*&
& grid(iG)%elemAbun(abFileUsed,7)*HdenUsed
! rec lines for NII 3-3
call rnii(recLinesLambda, recFlux, TeUsed, NeUsed)
do nrec = 1, 500
recLinesFlux(abFileUsed,5,nrec) = recLinesFlux(abFileUsed,5,nrec) + recFlux(nrec)*&
&HIRecLines(4,2)*HdenUsed*dV*&
&ionDenUsed(elementXref(7),3)*&
&grid(iG)%elemAbun(abFileUsed,7)/ionDenUsed(elementXref(1),2)
recLinesFlux(0,5,nrec) = recLinesFlux(0,5,nrec) + recFlux(nrec)*&
&HIRecLines(4,2)*HdenUsed*dV*&
&ionDenUsed(elementXref(7),3)*&
&grid(iG)%elemAbun(abFileUsed,7)/ionDenUsed(elementXref(1),2)
end do
recLambdaN33II = recLinesLambda
recFlux = 0.
recLinesLambda = 0.
! rec lines for NII 3d-4f
call rnii4f(recLinesLambda, recFlux, TeUsed)
do nrec = 1, 500
recLinesFlux(0,6,nrec) = recLinesFlux(0,6,nrec) + recFlux(nrec)*&
&HIRecLines(4,2)*HdenUsed*dV*&
&ionDenUsed(elementXref(7),3)*&
&grid(iG)%elemAbun(abFileUsed,7)/ionDenUsed(elementXref(1),2)
end do
recLambdaN34II = recLinesLambda
end if
end if
! calculate line packets luminosities
! first of all sum over all the cells
if (lgDebug) then
do l = 1, nLines
lineLuminosity(abFileUsed,l) = lineLuminosity(abFileUsed,l) + linePacketsUsed(l)
lineLuminosity(0,l) = lineLuminosity(0,l) + linePacketsUsed(l)
totLinePackets = totLinePackets + nint(linePacketsUsed(l))
end do
! calculate the total number of escaped packets
do l = 1, nbins
totEscapedPackets = totEscapedPackets + &
& nint(grid(iG)%escapedPackets(grid(iG)%active(i,j,k),l,0))
end do
! MC estimator of Hbeta luminosity
HbetaLuminosity(abFileUsed) = lineLuminosity(abFileUsed,2)
HbetaLuminosity(0) = lineLuminosity(0,2)
end if
! calculate mean temperatures for the ions
! and the mean <ion>/<H+>
factor1 = TeUsed*NeUsed*HdenUsed*dV
factor2 = NeUsed*HdenUsed*dV
do elem = 1, nElements
do ion = 1, min(elem+1,nstages)
if (.not.lgElementOn(elem)) exit
TeVol(abFileUsed,elem,ion) = TeVol(abFileUsed,elem,ion) + &
& ionDenUsed(elementXref(elem),ion)*factor1
denominatorTe(abFileUsed,elem,ion) = denominatorTe(abFileUsed,elem,ion) + &
& ionDenUsed(elementXref(elem),ion)*factor2
ionDenVol(abFileUsed,elem,ion) = ionDenVol(abFileUsed,elem,ion)+ &
& ionDenUsed(elementXref(elem),ion)*factor2
! this is the definition used in the lexington benchmark
! denominatorIon(abFileUsed,elem,ion) = denominatorIon(abFileUsed,elem,ion) + &
! & ionDenUsed(elementXref(1),2)*factor2
TeVol(0,elem,ion) = TeVol(0,elem,ion) + &
& ionDenUsed(elementXref(elem),ion)*factor1
denominatorTe(0,elem,ion) = denominatorTe(0,elem,ion) + &
& ionDenUsed(elementXref(elem),ion)*factor2
ionDenVol(0,elem,ion) = ionDenVol(0,elem,ion)+ &
& ionDenUsed(elementXref(elem),ion)*factor2
! this is the definition used in the lexington benchmark
! denominatorIon(0,elem,ion) = denominatorIon(0,elem,ion) + &
! & ionDenUsed(elementXref(1),2)*factor2
end do
end do
end if
end if
end do
end do
end do outer
end do
! the following is the definition given by Harrington et al. 1982
do iAb = 0, nAbComponents
! reinitialize sumAm and sumMC
sumAn = 0.
sumMC = 0.
do elem = 1, nElements
do ion = 1, min(elem+1, nstages)
denominatorIon(iAb,elem) = denominatorIon(iAb,elem) + ionDenVol(iAb,elem,ion)
end do
end do
do elem = 1, nElements
do ion = 1, min(elem+1, nstages)
if (.not.lgElementOn(elem)) exit
if (denominatorTe(iAb,elem,ion) <= 0.) then
TeVol(iAb,elem,ion) = 0.
else
TeVol(iAb,elem,ion) = TeVol(iAb,elem,ion) / denominatorTe(iAb,elem,ion)
end if
! lexington benchmark
! if (denominatorIon(iAb,elem,ion) <= 0.) then
! ionDenVol(iAb,elem,ion) = 0.
! else
! ionDenVol(iAb,elem,ion) = ionDenVol(iAb,elem,ion) / denominatorIon(iAb,elem,ion)
! end if
! Harrington 1982
if (denominatorIon(iAb,elem) <= 0.) then
ionDenVol(iAb,elem,ion) = 0.
else
ionDenVol(iAb,elem,ion) = ionDenVol(iAb,elem,ion) / denominatorIon(iAb,elem)
end if
end do
end do
! calculate analytical relative line intensities (relative to Hbeta)
if (HbetaVol(0) <= 0.) then
print*, "! outputGas:[warning] Hbeta analytical negative or zero in regionI"
else
! HI rec lines
do ilow = 2, 8
do iup = ilow+1, 30
HIVol(iAb,iup,ilow) = HIVol(iAb,iup,ilow) /HbetaVol(iAb)
end do
end do
! HeI
HeIVol(iAb,:) = HeIVol(iAb,:) / HbetaVol(iAb)
! HeII rec lines
do iup = 3, 30
do ilow = 2, min(16, iup-1)
HeIIVol(iAb,iup,ilow) = HeIIVol(iAb,iup,ilow) / HbetaVol(iAb)
end do
end do
! Heavy elements forbidden lines
! do elem = 3, nElements
! do ion = 1, min(elem+1, nstages)
! do iup = 1, nForLevels
! do ilow = 1, nForLevels
forbVol(iAb,:,:,:,:) = forbVol(iAb,:,:,:,:) / HbetaVol(iAb)
forbVolLarge(iAb,:,:) = forbVolLarge(iAb,:,:) / HbetaVol(iAb)
! end do
! end do
! end do
! end do
if (lgDust .and. convPercent>resLinesTransfer) then
do iRes = 1, nResLines
resLinesVol(iAb, iRes) = resLinesVol(iAb, iRes)/HbetaVol(iAb)
resLinesVolCorr(iAb, iRes) = resLinesVolCorr(iAb, iRes)/HbetaVol(iAb)
end do
end if
if (lgRecombination) recLinesFlux(iAb,:,:) = recLinesFlux(iAb,:,:)/HbetaVol(iAb)
end if
if (lgDebug) then
! calculate relative MC line luminosities
if (lineLuminosity(iAb,2) <= 0. .and. nIterateMC>1) then
print*, "! outputGas: MC luminosty of Hbeta negative or zero",&
& lineLuminosity(iAb,2)
else
do l = 1, nLines
lineLuminosity(iAb,l) = lineLuminosity(iAb,l)/HbetaLuminosity(iAb)
end do
end if
end if
end do
do iAb = 0, nAbComponents
! calculate Hbeta in units of [E36 erg/s]
! Note: Hbeta is now in E-25 * E45 ergs/sec (the E-25 comes from the emission
! module calculations and the E45 comes from the volume calculations to avoid
! overflow. Hence Hbeta is in [E20 ergs/s], so we need to multiply by E-16
! to give units of [E36 erg/s].
HbetaVol(iAb) = HbetaVol(iAb)*1.e-16
! correct for symmetry case
! if (lgSymmetricXYZ ) then
! HbetaVol(iAb) = 8.*HbetaVol(iAb)
! end if
! correct for symmetry case
if (lgSymmetricXYZ .and. .not.lg2D) then
HbetaVol(iAb) = 8.*HbetaVol(iAb)
elseif (lgSymmetricXYZ .and. lg2D) then
HbetaVol(iAb) = 2.*HbetaVol(iAb)
end if
! calculate Hbeta in units of [E36 erg/sec]
if (lgDebug) HbetaLuminosity(iAb) = HbetaLuminosity(iAb)
end do
! write the lineFlux.out file
if (present(extMap)) then
open(unit=10, status='unknown', position='rewind', file='output/lineFlux.ext', action="write", iostat=ios)
if (ios /= 0) then
print*, "! outputGas: can't open file for writing: output/lineFlux.ext"
stop
end if
else
open(unit=10, status='unknown', position='rewind', file='output/lineFlux.out', action="write",iostat=ios)
if (ios /= 0) then
print*, "! outputGas: can't open file for writing: output/lineFlux.out"
stop
end if
end if
write(10, *) "Totals integrated over all nebular components: "
do iAb = 0, nAbComponents
! The following code generates a first output with the some common nebular lines
write(10, *)
if (iAb>0) write(10, *) "Component: ", iAb
write(10, *)
write(10, *) "Line Ratios (Hbeta=1.) : Analytical"
write(10, *) "Hbeta [E36 erg/s]: ", HbetaVol(iAb)
write(10, *)
write(10, *) "HeI"
do i = 1, 34
write(10, *) HeIrecLineCoeff(i,1,4), HeIVol(iAb,i)
end do
write(10, *) "HeII 4686", HeIIVol(iAb,4,3)
if (lgElementOn(7) .and. lgDataAvailable(7,2)) then
write(10, *)
write(10, *) "[NII] 5755", forbVol(iAb,7,2,4,5)
write(10, *) "[NII] 6548", forbVol(iAb,7,2,2,4)
write(10, *) "[NII] 6584", forbVol(iAb,7,2,3,4)
end if
if (lgElementOn(8) .and. lgDataAvailable(8,2)) then
write(10, *)
write(10, *) "[OII] 3726", forbVol(iAb,8,2,1,3)
write(10, *) "[OII] 3729", forbVol(iAb,8,2,1,2)
write(10, *) "[OII] 7318,9", forbVol(iAb,8,2,2,4)+forbVol(iAb,8,2,2,5)
write(10, *) "[OII] 7330,0", forbVol(iAb,8,2,3,4)+forbVol(iAb,8,2,3,5)
end if
if (lgElementOn(8) .and. lgDataAvailable(8,3)) then
write(10, *)
write(10, *) "[OIII] 4363", forbVol(iAb,8,3,4,5)
write(10, *) "[OIII] 4932", forbVol(iAb,8,3,1,4)
write(10, *) "[OIII] 4959", forbVol(iAb,8,3,2,4)
write(10, *) "[OIII] 5008", forbVol(iAb,8,3,3,4)
end if
if (lgElementOn(10) .and. lgDataAvailable(10,3)) then
write(10, *)
write(10, *) "[NeIII] 3869", forbVol(iAb,10,3,1,4)
write(10, *) "[NeIII] 3967", forbVol(iAb,10,3,2,4)
end if
if (lgElementOn(16) .and. lgDataAvailable(16,2)) then
write(10, *)
write(10, *) "[SII] 4069", forbVol(iAb,16,2,1,5)
write(10, *) "[SII] 4076", forbVol(iAb,16,2,1,4)
write(10, *) "[SII] 6717", forbVol(iAb,16,2,1,3)
write(10, *) "[SII] 6731", forbVol(iAb,16,2,1,2)
end if
if (lgElementOn(16) .and. lgDataAvailable(16,3)) then
write(10, *)
write(10, *) "[SIII] 6312", forbVol(iAb,16,3,4,5)
end if
if (lgElementOn(17) .and. lgDataAvailable(17,3)) then
write(10, *)
write(10, *) "[ClIII] 5518", forbVol(iAb,17,3,1,3)
write(10, *) "[ClIII] 5538", forbVol(iAb,17,3,1,2)
end if
if (lgElementOn(17) .and. lgDataAvailable(17,4)) then
write(10, *)
write(10, *) "[ClIV] 7531", forbVol(iAb,17,4,2,4)
write(10, *) "[ClIV] 8046", forbVol(iAb,17,4,3,4)
end if
if (lgElementOn(18) .and. lgDataAvailable(18,3)) then
write(10, *)
write(10, *) "[ArIII] 7136", forbVol(iAb,18,3,1,4)
write(10, *) "[ArIII] 7752", forbVol(iAb,18,3,2,4)
end if
if (lgElementOn(18) .and. lgDataAvailable(18,4)) then
write(10, *)
write(10, *) "[ArIV] 4712", forbVol(iAb,18,4,1,3)
write(10, *) "[ArIV] 4741", forbVol(iAb,18,4,1,2)
end if
write(10, *)
write(10, *) "Line Diagnostics"
write(10, *) " Ne:"
if (lgElementOn(16) .and. lgDataAvailable(16,2)) &
& write(10, *) "[SII] 6731/6717 ", forbVol(iAb,16,2,1,2)/ forbVol(iAb,16,2,1,3)
if (lgElementOn(8) .and. lgDataAvailable(8,2)) &
& write(10, *) "[OII] 3729/3726 ", forbVol(iAb,8,2,1,2)/ forbVol(iAb,8,2,1,3)
if (lgElementOn(17) .and. lgDataAvailable(17,3)) &
& write(10, *) "[ClIII] 5537/5517 ", forbVol(iAb,17,3,1,2)/ forbVol(iAb,17,3,1,3)
if (lgElementOn(18) .and. lgDataAvailable(18,4)) &
& write(10, *) "[ArIV] 4740/4712 ", forbVol(iAb,18,4,1,2)/ forbVol(iAb,18,4,1,3)
write(10, *) " Te:"
if (lgElementOn(7) .and. lgDataAvailable(7,2)) &
& write(10, *) "[NII](6584+6546)/5754 ", (forbVol(iAb,7,2,2,4)+forbVol(iAb,7,2,3,4))/&
&forbVol(iAb,7,2,4,5)
if (lgElementOn(8) .and. lgDataAvailable(8,2)) &
& write(10, *) "[OII] 3726/7320 ", forbVol(iAb,8,2,1,3)/(forbVol(iAb,8,2,2,4)+&
&forbVol(iAb,8,2,2,5))
if (lgElementOn(8) .and. lgDataAvailable(8,3)) &
& write(10, *) "[OIII] (4959+5007)/4363 ", (forbVol(iAb,8,3,2,4)+forbVol(iAb,8,3,3,4))/&
&forbVol(iAb,8,3,4,5)
write(10, *)
write(10, *)
if (lgDust .and. convPercent>resLinesTransfer) then
write(10,*) " Resonance Lines Attenuated by dust absorption"
write(10,*) " Line Uncorrected Corrected"
do iRes = 1, nResLines
if (lgElementOn(resLine(iRes)%elem)) then
write(10,*) trim(resLine(iRes)%species), resLine(iRes)%ion, resLinesVol(iAb,iRes), &
&resLinesVolCorr(iAb,iRes)
end if
end do
end if
if (lgDebug ) then
if (HbetaLuminosity(iAb)>0.) then
write(10, *) "Line Ratios : Analytical MC &
& Analytical/MC:"
write(10, *) "Hbeta [E36 erg/s]: ", &
& HbetaVol(iAb), HbetaLuminosity(iAb), HbetaVol(iAb)/HbetaLuminosity(iAb)
else
write(10, *) "Line Ratios : Formal Solution "
write(10, *) "Hbeta [E36 erg/s]: ", HbetaVol(iAb)
end if
else
write(10, *) "Line Ratios : Formal Solution "
write(10, *) "Hbeta [E36 erg/s]: ", &
& HbetaVol(iAb)
end if
write(10, *)
write(10, *) "HI recombination lines:"
write(10, *)
iLine = 1
do ilow = 2, 8
do iup = ilow+1, 30
if (lgDebug) then
if (lineLuminosity(iAb,iLine) > 0. ) then
write(10, *) 1,2,iup, ilow, HIVol(iAb,iup,ilow), lineLuminosity(iAb,iLine), &
& HIVol(iAb,iup,ilow)/lineLuminosity(iAb,iLine), iLine
sumAn = sumAn + HIVol(iAb,iup,ilow)
sumMC = sumMC + lineLuminosity(iAb,iLine)
else
write(10, *) 1,2,iup, ilow, HIVol(iAb,iup,ilow), iLine, wave_a(hwavelength(ilow,iup,1))
end if
else
write(10, *) 1,2,iup, ilow, HIVol(iAb,iup,ilow), iLine, wave_a(hwavelength(ilow,iup,1))
end if
iLine = iLine + 1
end do
end do
write(10, *)
write(10, *) "HeI recombination lines:"
write(10, *)
do l = 1, 34
if (lgDebug) then
if (lineLuminosity(iAb,iLine) > 0. ) then
write(10, *) 2,2,l," ", HeIVol(iAb,l), lineLuminosity(iAb,iLine), &
& HeIVol(iAb,l)/lineLuminosity(iAb,iLine), iLine
sumAn = sumAn + HeIVol(iAb,l)
sumMC = sumMC + lineLuminosity(iAb,iLine)
else
write(10, *) 2,2,l,HeIrecLineCoeff(l,1,4)," ", HeIVol(iAb,l), iLine
end if
else
write(10, *) 2,2,l,HeIrecLineCoeff(l,1,4)," ", HeIVol(iAb,l), iLine
end if
iLine = iLine + 1
end do
write(10, *)
write(10, *) "HeII recombination lines:"
write(10, *)
do iup = 3, 30
do ilow = 2, min(16, iup-1)
if (lgDebug ) then
if ( lineLuminosity(iAb,iLine) > 0. ) then
write(10, *) 2,3,iup, ilow, HeIIVol(iAb,iup,ilow), lineLuminosity(iAb,iLine), &
& HeIIVol(iAb,iup,ilow)/lineLuminosity(iAb,iLine), iLine
sumAn = sumAn + HeIIVol(iAb,iup,ilow)
sumMC = sumMC + lineLuminosity(iAb,iLine)
else
write(10, *) 2,3,iup, ilow, HeIIVol(iAb,iup,ilow), iLine, wave_a(hwavelength(ilow,iup,2))
end if
else
write(10, *) 2,3,iup, ilow, HeIIVol(iAb,iup,ilow), iLine, wave_a(hwavelength(ilow,iup,2))
end if
iLine = iLine + 1
end do
end do
write(10, *)
write(10, *) "Heavy ions forbidden lines"
write(10, *)
do elem = 3, nElements
do ion = 1, min(elem+1, nstages)
if (.not.lgElementOn(elem)) exit
if (lgDataAvailable(elem,ion)) then
if (elem==26 .and. ion==2) then
do iup = 1, nForLevelsLarge
do ilow = 1, nForLevelsLarge
if (forbVolLarge(iAb,iup, ilow) > 0.) then
write(10, *) ' 26', ' 2 ', iup, ilow, wavLarge(iup, ilow), &
& forbVolLarge(iAb,iup,ilow), iLine
end if
iLine = iLine + 1
end do
end do
else
do iup = 1, nForLevels
do ilow = 1, nForLevels
if (forbVol(iAb,elem,ion, iup, ilow) > 0.) then
if (lgDebug) then
if (lineLuminosity(iAb,iLine) > 0. ) then
write(10, *) elem, ion, iup, ilow, wav(elem,ion, iup, ilow), &
& forbVol(iAb,elem,ion, iup, ilow), &
&lineLuminosity(iAb,iLine), &
& forbVol(iAb,elem, ion, iup, ilow)/&
&lineLuminosity(iAb,iLine), iLine
sumAn = sumAn + forbVol(iAb,elem,ion,iup,ilow)
sumMC = sumMC + lineLuminosity(iAb,iLine)
else
write(10, *) elem, ion, iup, ilow, wav(elem,ion, iup, ilow), &
& forbVol(iAb,elem,ion,iup,ilow), iLine
end if
else
write(10, *) elem, ion, iup, ilow, wav(elem,ion, iup, ilow), &
& forbVol(iAb,elem,ion,iup,ilow), iLine
end if
end if
iLine = iLine + 1
end do
end do
end if
end if
end do
end do
if (lgRecombination) then
write(10,*)
write(10,*)
write(10,*) "Recombination Lines for CII, Davey et al. (2000)"
write(10,*)
do i = 1, 159
write(10,*) recLambdaCII(i), recLinesFlux(iAb,4,i), iLine
iLine = iLine + 1
end do
write(10,*)
write(10,*)
write(10,*) "Recombination Lines for NII, Kisielius & Storey(2000)"
write(10,*)
do i = 1,115
write(10,*) recLambdaN33II(i), recLinesFlux(iAb,5,i), iLine
iLine = iLine + 1
end do
write(10,*) "3d--4f Escalante & Victor(1990)"
write(10,*)
do i = 1,23
write(10,*) recLambdaN34II(i), recLinesFlux(iAb,6, i), iLine
iLine = iLine + 1
end do
write(10,*)
write(10,*)
write(10,*) "Recombination Lines for OII, Storey & Hummer(1994) and Liu et al. (1995)"
write(10,*)
do i = 1, 415
write(10,*) recLambdaOII(i), recLinesFlux(iAb,1,i), iLine
iLine = iLine + 1
end do
write(10,*)
write(10,*)
write(10,*) "Recombination Lines for NeII, Kisielius et al. (1998)&
& and Storey (private commumication)"
write(10,*)
do i = 1,439
write(10,*) recLambdaNeII(i), recLinesFlux(iAb,3,i), iLine
iLine = iLine + 1
end do
write(10,*)
write(10,*)
write(10,*) "Recombination Lines for MgII 4481, similar to CII 4667"
write(10,*)
write(10,*) "4481.21 ", recLinesFlux(iAb,2,1)+recLinesFlux(iAb,2,2)&
&+recLinesFlux(iAb,2,3), iLine
iLine = iLine + 1
end if
LtotAn = HbetaVol(iAb)*sumAn
if(lgDebug) LtotMC = HbetaLuminosity(iAb)*sumMC
end do
! close lineFlux.out file
close(10)
! write the temperature.out file
open(unit=20, status='unknown', position='rewind', file='output/temperature.out', action="write",iostat=ios)
if (ios /= 0) then
print*, "! outputGas: can't open file for writing: output/temperature.out"
stop
end if
open(unit=27, status='unknown', position='append', file='output/summary.out', action="write",iostat=ios)
if (ios /= 0) then
print*, "! iterationMC: can't open file for writing: output/summary.out"
stop
end if
! write ionratio.out file
open(unit=30, status='unknown', position='rewind', file='output/ionratio.out', action="write",iostat=ios)
if (ios /= 0) then
print*, "! outputGas: can't open file for writing: output/ionratio.out"
stop
end if
if (lgDebug) then
open(unit=60, status='unknown', position='rewind', file='output/ionDen.out', action="write",iostat=ios)
if (ios /= 0) then
print*, "! outputGas: can't open file for writing: output/ionDen.out"
stop
end if
end if
write(20, *)
write(20, *) "Mean ionic temperatures Te(ion)"
write(20, *)
write(20, *) "Total, integrated over all nebular components"
write(30, *)
write(30, *) "Mean ionic ratio <ion>/<H+>"
write(30, *)
write(30, *) "Total, integrated over all nebular components"
write(30, *)
do iAb = 0, nAbComponents
if (iAb>0) then
write(20, *)
write(20, *) "Mean ionic temperatures Te(ion)"
write(20, *)
write(20, *) "Component : ", iAb
write(20, *)
write(30, *)
write(30, *) "Mean ionic ratio <ion>/<H+>"
write(30, *)
write(30, *) "Component : ", iAb
write(30, *)
end if
write(20, *) "Element Ion Te(Element,ion)"
write(20, *)
do elem = 1, nElements
do ion = 1, min(nstages,elem+1)
write(20, *) elem, ion, TeVol(iAb,elem, ion)
end do
end do
write(27,*) 'T(H+) ', TeVol(iAb,1,2), ' component ', iAb
write(30, *) "Element Ion <ion>/<H+>I <ion>/<H+>II"
write(30, *)
do elem = 1, nElements
do ion = 1, min(nstages,elem+1)
write(30, *) elem, ion, ionDenVol(iAb,elem, ion)
end do
end do
if (lgDebug) then
write(60, *)
do iG = 1, nGrids
print*, 'Grid : ', iG
do i = 1 , grid(iG)%nx
do j = 1, grid(iG)%ny
do k = 1, grid(iG)%nz
do elem = 1, nElements
do ion = 1, min(nstages,elem+1)
if (grid(iG)%active(i,j,k)<=0) exit
if (.not.lgElementOn(elem)) exit
write(60, *) i,j,k, elem, ion, grid(iG)%ionDen(grid(iG)%active(i,j,k),elementXref(elem), ion)
end do
end do
end do
end do
end do
end do
close(60)
end if
end do
close(20)
close(27)
close(30)
close(60)
if (allocated(HIVol)) deallocate(HIVol)
if (allocated(HeIVol)) deallocate(HeIVol)
if (allocated(HeIIVol)) deallocate(HeIIVol)
if (allocated(ionDenVol)) deallocate(ionDenVol)
if (lgDebug) then
if (allocated(lineLuminosity)) deallocate(lineLuminosity)
end if
if (allocated(forbVol)) deallocate(forbVol)
if (allocated(forbVolLarge)) deallocate(forbVolLarge)
if (allocated(TeVol)) deallocate(TeVol)
if (allocated(recLinesFlux)) deallocate(recLinesFlux)
if (allocated(denominatorIon)) deallocate(denominatorIon)
if (allocated(denominatorTe)) deallocate(denominatorTe)
if (present(extMap)) then
if (allocated(cMap)) deallocate(cMap)
if (allocated(flam)) deallocate(flam)
end if
if (convPercent >= resLinesTransfer .and. lgDust) then
if (allocated(resLinesVol)) deallocate(resLinesVol)
if (allocated(resLinesVolCorr)) deallocate(resLinesVolCorr)
end if
contains
!get wavelength of H I and He II lines
!calculation is just for lineFlux.out, nothing else depends on it
!hence hackiness
real function hwavelength(ilow,iup,z)
implicit none
integer, intent(in) :: ilow, iup,z
real :: rydberg !
if (z .eq. 1) rydberg = 0.00109679454
if (z .eq. 2) rydberg = 0.00109725525
hwavelength = ((rydberg*real(z)**2)*(1/real(ilow)**2 - 1/real(iup)**2))**(-1)
return
end function hwavelength
!convert vacuum wavelength to air wavelength
!formula from Morton, 2000, ApJS, 130, 403
real function wave_a(wave_v)
implicit none
real, intent(in) :: wave_v !in angstroms
real :: n,s !conversion factors
s = 1.e4/wave_v
n = 1 + 0.0000834254 + 0.02406147 / (130 - s**2) + 0.00015998 / (38.9 - s**2)
wave_a = wave_v/n
return
end function wave_a
! optical recombination lines subroutines added by Zhang Yong (PKU) February 2003
!***************** for recombination****************************************************
subroutine roii(lamb,flux,tk,den)
! ref Storey 1994 A&A 282, 999, Liu 1995, MNRAS, 272, 369
implicit none
real, intent(in) :: tk,den
real(kind=8), intent(inout):: lamb(500),flux(500)
real(kind=8) :: ahb,te,emhb,an(4), &
& a,b,c,d,logne,aeff,br(3,500),em
integer :: i,g2(500)
open(file=PREFIX//"/share/mocassin/data/Roii.dat",unit=41,status="old", action="read",position="rewind")
do i=1,415
read(41,*) lamb(i),g2(i),&
&br(1,i),br(2,i),br(3,i)
end do
! 110 format (6x,f9.4,31x,A4,27x,A7,17x,i2,5x,a7,2x,f6.4,2x,f6.4,2x,f6.4)
logne=log10(den)
! 4f-3d transitions (Case A=B=C for a,b,c,d as well as Br)
a=0.232
b=-0.92009
c=0.15526
d=0.03442
an(1)=0.236
an(2)=0.232
an(3)=0.228
an(4)=0.222
te=tk/10000.
ahb=6.68e-14*te**(-0.507)/(1.+1.221*te** 0.653)
emhb=1.98648E-08/4861.33*ahb
if(logne.le.2) then
a=an(1)
elseif(logne.le.4) then
a=an(1)+(an(2)-an(1))/2.*(logne-2.)
elseif(logne.le.5) then
a=an(2)+(an(3)-an(2))*(logne-2.)
elseif(logne.le.6) then
a=an(3)+(an(4)-an(3))*(logne-2.)
else
a=an(4)
endif
aeff=1.e-14*a*te**(b)
aeff=aeff*(1.+c*(1.-te)+d*(1.-te) ** 2)
do i=1,183
em=aeff*1.98648E-08/lamb(i)*g2(i)*br(2,i)
flux(i)=em/emhb
end do
! 3d-3p ^4F transitions (Case A=B=C for a,b,c,d; Br diff.
! slightly, adopt Case B)
a=0.876
b=-0.73465
c=0.13689
d=.06220
an(1)=0.876
an(2)=0.876
an(3)=0.877
an(4)=0.880
if(logne.le.2) then
a=an(1)
elseif(logne.le.4) then
a=an(1)+(an(2)-an(1))/ 2.*(logne-2.)
elseif(logne.le.5) then
a=an(2)+(an(3)-an(2))*(logne-2.)
elseif(logne.le.6) then
a=an(3)+(an(4)-an(3))*(logne-2.)
else
a=an(4)
endif
aeff=1.e-14*a*te**(b)
aeff=aeff*(1.+c*(1.-te)+d*(1.-te)**2)
do i=184,219
em=aeff*1.98648E-08/lamb(i)*g2(i)*br(2,i)
flux(i)=em/emhb
end do
! 3d-3p ^4D, ^4P transitions
a=0.745
b=-0.74621
c=0.15710
d=0.07059
an(1)=0.747
an(2)=0.745
an(3)=0.744
an(4)=0.745
if(logne.le.2) then
a=an(1)
elseif(logne.le.4) then
a=an(1)+(an(2)-an(1))/ 2.*(logne-2.)
elseif(logne.le.5) then
a=an(2)+(an(3)-an(2))*(logne-2.)
elseif(logne.le.6) then
a=an(3)+(an(4)-an(3))*(logne-2.)
else
a=an(4)
endif
aeff = 1.e-14*a*te**(b)
aeff =aeff*(1. +c *(1. - te) +d * (1.-te) ** 2)
do i=220,310
em=aeff*1.98648E-08/lamb(i)*g2(i)*br(2,i)
flux(i)=em/emhb
end do
! 3d-3p ^2F transitions
a=0.745
b=-0.74621
c=0.15710
d=0.07059
an(1)=0.727
an(2)=0.726
an(3)=0.725
an(4)=0.726
if(logne.le.2) then
a=an(1)
elseif(logne.le.4) then
a=an(1)+(an(2)-an(1))/ 2.*(logne-2.)
elseif(logne.le.5) then
a=an(2)+(an(3)-an(2))*(logne-2.)
elseif(logne.le.6) then
a=an(3)+(an(4)-an(3))*(logne-2.)
else
a=an(4)
endif
aeff=1.e-14*a*te**(b)
aeff=aeff*(1.+c*(1.-te)+d*(1.-te)**2)
do i=311,328
em=aeff*1.98648E-08/lamb(i)*g2(i)*br(1,i)
flux(i)=em/emhb
end do
! 3d-3p ^2D transitions
a=0.601
b=-0.79533
c=0.15314
d=0.05322
an(1)=0.603
an(2)=0.601
an(3)=0.600
an(4)=0.599
if(logne.le.2) then
a=an(1)
elseif(logne.le.4) then
a=an(1)+(an(2)-an(1))/ 2.*(logne-2.)
elseif(logne.le.5) then
a=an(2)+(an(3)-an(2))*(logne-2.)
elseif(logne.le.6) then
a=an(3)+(an(4)-an(3))*(logne-2.)
else
a=an(4)
endif
aeff=1.e-14*a*te**(b)
aeff=aeff*(1.+c*(1.-te)+d*(1.-te)**2)
do i=329,358
em=aeff*1.98648E-08/lamb(i)*g2(i)*br(1,i)
flux(i)=em/emhb
end do
! 3d-3p ^2P transitions
a=0.524
b=-0.78448
c=0.13681
d=0.05608
an(1)=0.526
an(2)=0.524
an(3)=0.523
an(4)=0.524
if(logne.le.2) then
a=an(1)
elseif(logne.le.4) then
a=an(1)+(an(2)-an(1))/ 2.*(logne-2.)
elseif(logne.le.5) then
a=an(2)+(an(3)-an(2))*(logne-2.)
elseif(logne.le.6) then
a=an(3)+(an(4)-an(3))*(logne-2.)
else
a=an(4)
endif
aeff=1.e-14*a*te**(b)
aeff=aeff*(1.+c*(1.-te)+d*(1.-te)**2)
do i=359,388
em=aeff*1.98648E-08/lamb(i)*g2(i)*br(1,i)
flux(i)=em/emhb
end do
! 3p-3s ^4D - ^4P transitions
a=36.2
b=-0.736
c=0.033
d=0.077
an(1)=36.
an(2)=36.2
an(3)=36.4
an(4)=36.3
if(logne.le.2) then
a=an(1)
elseif(logne.le.4) then
a=an(1)+(an(2)-an(1))/ 2.*(logne-2.)
elseif(logne.le.5) then
a=an(2)+(an(3)-an(2))*(logne-2.)
elseif(logne.le.6) then
a=an(3)+(an(4)-an(3))*(logne-2.)
else
a=an(4)
endif
aeff=1.e-14*a*te**(b)
aeff=aeff*(1.+c*(1.-te)+d*(1.-te)**2)
do i=389,396
em=aeff*1.98648E-08/lamb(i)*g2(i)*br(2,i)
flux(i)=em/emhb
end do
! 3p-3s ^4P - ^4P transitions
a=14.6
b=-0.732
c=0.081
d=0.066
an(1)=14.6
an(2)=14.6
an(3)=14.7
an(4)=14.6
if(logne.le.2) then
a=an(1)
elseif(logne.le.4) then
a=an(1)+(an(2)-an(1))/ 2.*(logne-2.)
elseif(logne.le.5) then
a=an(2)+(an(3)-an(2))*(logne-2.)
elseif(logne.le.6) then
a=an(3)+(an(4)-an(3))*(logne-2.)
else
a=an(4)
endif
aeff=1.e-14*a*te**(b)
aeff=aeff*(1.+c*(1.-te)+d*(1.-te)**2)
do i=397,403
em=aeff*1.98648E-08/lamb(i)*g2(i)*br(2,i)
flux(i)=em/emhb
end do
! 3p-3s ^4S - ^4P transitions
a=4.90
b=-0.730
c=-0.003
d=0.057
an(1)=4.80
an(2)=4.90
an(3)=4.90
an(4)=4.90
if(logne.le.2) then
a=an(1)
elseif(logne.le.4) then
a=an(1)+(an(2)-an(1))/ 2.*(logne-2.)
elseif(logne.le.5) then
a=an(2)+(an(3)-an(2))*(logne-2.)
elseif(logne.le.6) then
a=an(3)+(an(4)-an(3))*(logne-2.)
else
a=an(4)
endif
aeff=1.e-14*a*te**(b)
aeff=aeff*(1.+c*(1.-te)+d*(1.-te)**2)
do i=404,406
em=aeff*1.98648E-08/lamb(i)*g2(i)*br(2,i)
flux(i)=em/emhb
end do
! 3p-3s ^2D - ^2P transitions
a=2.40
b=-0.550
c=-0.051
d=0.178
an(1)=2.40
an(2)=2.40
an(3)=2.50
an(4)=2.60
if(logne.le.2) then
a=an(1)
elseif(logne.le.4) then
a=an(1)+(an(2)-an(1))/ 2.*(logne-2.)
elseif(logne.le.5) then
a=an(2)+(an(3)-an(2))*(logne-2.)
elseif(logne.le.6) then
a=an(3)+(an(4)-an(3))*(logne-2.)
else
a=an(4)
endif
aeff=1.e-14*a*te**(b)
aeff=aeff*(1.+c*(1.-te)+d*(1.-te)**2)
do i=407,409
em=aeff*1.98648E-08/lamb(i)*g2(i)*br(1,i)
flux(i)=em/emhb
end do
! 3p-3s ^2P - ^2P transitions
a=1.20
b=-0.523
c=-0.044
d=0.173
an(1)=1.10
an(2)=1.20
an(3)=1.20
an(4)=1.20
if(logne.le.2) then
a=an(1)
elseif(logne.le.4) then
a=an(1)+(an(2)-an(1))/ 2.*(logne-2.)
elseif(logne.le.5) then
a=an(2)+(an(3)-an(2))*(logne-2.)
elseif(logne.le.6) then
a=an(3)+(an(4)-an(3))*(logne-2.)
else
a=an(4)
endif
aeff=1.e-14*a*te**(b)
aeff=aeff*(1.+c*(1.-te)+d*(1.-te)**2)
do i=410,413
em=aeff*1.98648E-08/lamb(i)*g2(i)*br(1,i)
flux(i)=em/emhb
end do
! 3p-3s ^2S - ^2P transitions
a= 0.40
b=-0.461
c=-0.083
d=0.287
an(1)=0.40
an(2)=0.40
an(3)=0.40
an(4)=0.40
if(logne.le.2) then
a=an(1)
elseif(logne.le.4) then
a=an(1)+(an(2)-an(1))/ 2.*(logne-2.)
elseif(logne.le.5) then
a=an(2)+(an(3)-an(2))*(logne-2.)
elseif(logne.le.6) then
a=an(3)+(an(4)-an(3))*(logne-2.)
else
a=an(4)
endif
aeff=1.e-14*a*te**(b)
aeff=aeff*(1.+c*(1.-te)+d*(1.-te)**2)
do i=414,415
em=aeff*1.98648E-08/lamb(i)*g2(i)*br(1,i)
flux(i)=em/emhb
end do
close(unit=41)
return
end subroutine roii
subroutine rmgii(fluxremg, lambd, tk)
implicit none
real, intent(in) :: tk
real(kind=8),intent(inout) :: fluxremg(500), lambd(500)
real(kind=8) ::te,ahb,emhb,&
& aeff,a,b,c,d,f
data a,b,c,d,f/27.586,-0.055,-0.039,-0.208,-1.1416/
te=tk/10000.d0
ahb=6.68e-14*te**(-0.507)/(1.+1.221*te** 0.653)
emhb=1.98648E-08/4861.33*ahb
aeff=1.e-14*a*te**(f)
aeff=aeff*(1.+b*(1.-te)+c*(1-te)**2+d*(1-te)**3)
lambd(1)=4481.13
lambd(2)=4481.15
lambd(3)=4481.32
fluxremg(1)=aeff*1.98648E-08/4481.13/emhb*4/7
fluxremg(2)=aeff*1.98648E-08/4481.15/emhb*28/70
fluxremg(3)=aeff*1.98648E-08/4481.32/emhb*2/70
return
end subroutine rmgii
subroutine rneii(lamb,flux,tk)
! ref Kisielius AAS, 133, 257
implicit none
real, intent(in) :: tk
real(kind=8),intent(inout) :: flux(500), lamb(500)
real(kind=8) :: te,a,b,c,d,f,ahb,emhb,aeff,br
integer :: i
te=tk/10000.d0
ahb=6.68e-14*te**(-0.507)/(1.+1.221*te** 0.653)
emhb=1.98648E-08/4861.33*ahb
open(unit=50,file=PREFIX//'/share/mocassin/data/Rneii.dat',status='old', action="read",position='rewind')
do i=1,426
read(50,*) a,b,c,d,f,lamb(i),br
aeff=1.e-14*a*te**(f)
aeff=aeff*(1.+b*(1.-te)+c*(1-te)**2+d*(1-te)**3)
flux(i)=aeff*1.98648E-08/lamb(i)/emhb*br
end do
! lamb(427)=4391.986
! flux(427)=0.0966d-1
! lamb(428)=4409.299
! flux(428)=0.0642d-1
! lamb(429)=4379.552
! flux(429)=0.0598d-1
! lamb(430)=4428.611
! flux(430)=0.0422d-1
! lamb(431)=4219.745
! flux(431)=0.0536d-1
! lamb(432)=4397.988
! flux(432)=0.0334d-1
! lamb(433)=4430.944
! flux(433)=0.0273d-1
! lamb(434)=4413.217
! flux(434)=0.0231d-1
! lamb(435)=4233.853
! flux(435)=0.0134d-1
! lamb(436)=4457.051
! flux(436)=0.00952d-1
! lamb(437)=4231.635
! flux(437)=0.0127d-1
! lamb(438)=4421.391
! flux(438)=0.00864d-1
! lamb(439)=4250.639
! flux(439)=0.00849d-1
close(unit=50)
! return
end subroutine rneii
subroutine rcii(lamb,flux,tk)
! ref Davey A&As 2000 142, 85
implicit none
real, intent(in) ::tk
real(kind=8), intent(inout) :: lamb(500),flux(500)
real(kind=8) ::te,a,b,c,d,f,ahb,emhb,aeff,br
integer :: i
te=tk/10000.d0
ahb=6.68e-14*te**(-0.507)/(1.+1.221*te** 0.653)
emhb=1.98648E-08/4861.33*ahb
open(unit=51,file=PREFIX//'/share/mocassin/data/Rcii.dat',status='old', position='rewind',action="read")
do i=1,159
read(51,*) a,b,c,d,f,lamb(i),br
aeff=1.e-14*a*te**(f)
aeff=aeff*(1.+b*(1.-te)+c*(1-te)**2+d*(1-te)**3)
flux(i)=aeff*1.98648E-08/lamb(i)/emhb*br
end do
close(unit=51)
! return
end subroutine rcii
subroutine rnii(lamb,flux,tk,den)
! ref Storey 2002, A&A, 387, 1135
implicit none
real, intent(in):: tk,den
real(kind=8), intent(inout) :: lamb(500),flux(500)
real(kind=8) ::logden,te,a,b,c,d,&
& f,u,v,ahb,emhb,aeff,br,y
integer :: i
te=tk/10000.d0
logden=log10(den)
y=logden-4.
ahb=6.68e-14*te**(-0.507)/(1.+1.221*te** 0.653)
emhb=1.98648E-08/4861.33*ahb
open(unit=52,file=PREFIX//'/share/mocassin/data/Rnii.dat',status='old', action="read",position='rewind')
do i=1,115
read(52,*) a,b,c,d,f,u,v,lamb(i),br
aeff=1.e-14*a*te**(f)
aeff=aeff*(1+0.01*u*y+0.001*v*y**2)
aeff=aeff*(1.+b*(1.-te)+c*(1-te)**2+d*(1-te)**3)
flux(i)=aeff*1.98648E-08/lamb(i)/emhb*br
end do
close(unit=52)
! return
end subroutine rnii
subroutine rnii4f(lamb,flux,tk)
! compute N II 3d--4f, ref Escalante 1990, ApJs, 73, 513
implicit none
real, intent(in) :: tk
real(kind=8), intent(inout) :: lamb(500),flux(500)
real(kind=8) :: ahb,emhb,te,aeff,&
& a(51),b(51),c(51),br(500),em,a1,b1,c1,d1,z,br1
integer :: i
do i=1,500
lamb(i)=0.d0
flux(i)=0.d0
end do
te=tk/10000.d0
ahb=6.68e-14*te**(-0.507)/(1.+1.221*te**0.653)
emhb=1.98648E-08/4861.33*ahb
open(unit=61,file=PREFIX//"/share/mocassin/data/Rniiold.dat",status='old', action="read",position='rewind')
open(unit=62,file=PREFIX//"/share/mocassin/data/Rnii_aeff.dat",status='old', action="read",position='rewind')
do i=1,51
read(62,*) a(i),b(i),c(i)
end do
do i=1,99
read(61,*) lamb(i),br(i)
end do
aeff=10.**(a(41)+b(41)*log10(te)+c(41)*log10(te)**2)
do i=77,82
em=aeff*1.98648E-08/lamb(i)*br(i)
flux(i)=em/emhb
end do
aeff=10.**(a(42)+b(42)*log10(te)+c(42)*log10(te)**2)
em=aeff*1.98648E-08/lamb(83)*br(83)
flux(83)=em/emhb
aeff=10.**(a(45)+b(45)*log10(te)+c(45)*log10(te)**2)
do i=84,89
em=aeff*1.98648E-08/lamb(i)*br(i)
flux(i)=em/emhb
end do
aeff=10.**(a(47)+b(47)*log10(te)+c(47)*log10(te)**2)
do i=90,95
em=aeff*1.98648E-08/lamb(i)*br(i)
flux(i)=em/emhb
end do
aeff=10.**(a(48)+b(48)*log10(te)+c(48)*log10(te)**2)
em=aeff*1.98648E-08/lamb(96)*br(96)
flux(96)=em/emhb
aeff=10.**(a(49)+b(49)*log10(te)+c(49)*log10(te)**2)
em=aeff*1.98648E-08/lamb(97)*br(97)
flux(97)=em/emhb
a1=0.108
b1=-0.754
c1=2.587
d1=0.719
z=2.
br1=0.35
aeff=1.e-13*z*a1*(te/z**2)**(b1)
aeff=aeff/(1.+c1*(te/z**2)**(d1))*br1
em=aeff*1.98648E-08/lamb(98)*br(98)
flux(98)=em/emhb
a1=0.326
b1=-0.754
c1=2.587
d1=0.719
z=2.
Br1=0.074
aeff=1.e-13*z*a1*(te/z**2)**(b1)
aeff=aeff/(1.+c1*(te/z**2)**(d1))*br1
em=aeff*1.98648E-08/lamb(99)*br(99)
flux(99)=em/emhb
do i=1,23
lamb(i)=lamb(i+76)
flux(i)=flux(i+76)
end do
do i=1,99
end do
close(unit=61)
close(unit=62)
! return
end subroutine rnii4f
! this subroutine is the driver for the calculation of the emissivity
! from the heavy elements forbidden lines.
subroutine forLines()
implicit none
integer :: elem, ion ! counters
! re-initialize forbiddenLines
forbiddenLines = 0.
do elem = 3, nElements
do ion = 1, min(elem+1, nstages)
if (.not.lgElementOn(elem)) exit
if (lgDataAvailable(elem, ion)) then
if (elem == 26 .and. ion == 2) then
if (nstages>2) then
call equilibrium(dataFile(elem, ion), &
& ionDenUsed(elementXref(elem),ion+1)/&
&ionDenUsed(elementXref(elem),ion), &
& TeUsed, NeUsed, forbiddenLinesLarge(:,:), &
& wavLarge(:,:))
else
call equilibrium(dataFile(elem, ion), &
&0., &
& TeUsed, NeUsed, forbiddenLinesLarge(:,:), &
& wavLarge(:,:))
end if
forbiddenLinesLarge(:, :) =forbiddenLinesLarge(:, :)&
*elemAbundanceUsed(elem)*&
& ionDenUsed(elementXref(elem), ion)
else
if (ion<nstages) then
call equilibrium(dataFile(elem, ion), &
& ionDenUsed(elementXref(elem),ion+1)/&
&ionDenUsed(elementXref(elem),ion), &
& TeUsed, NeUsed, forbiddenLines(elem, ion,:,:), &
& wav(elem,ion,:,:))
else
call equilibrium(dataFile(elem, ion), 0., &
& TeUsed, NeUsed, forbiddenLines(elem, ion,:,:), &
wav(elem,ion,:,:))
end if
forbiddenLines(elem, ion, :, :) =forbiddenLines(elem, ion, :, :)&
*elemAbundanceUsed(elem)*&
& ionDenUsed(elementXref(elem), ion)
end if
end if
end do
end do
! scale the forbidden lines emissivity to give units of [10^-25 erg/s/Ngas]
! comment: the forbidden line emissivity is so far in units of cm^-1/s/Ngas
! the energy [erg] of unit wave number [cm^-1] is 1.9865e-16, hence
! the right units are obtained by multiplying by 1.9865e-16*1e25
! which is 1.9865*1e9
forbiddenLines = forbiddenLines*1.9865e9
end subroutine forLines
subroutine RecLinesEmission()
implicit none
! local variables
integer :: i ! counters
integer :: ilow,& ! pointer to lower level
& iup ! pointer to upper level
integer :: denint
real :: Hbeta ! Hbeta emission
real :: HeII4686 ! HeII 4686 emission
real :: Lalpha ! Lalpha emission
real :: T4 ! TeUsed/10000.
real :: x1,x2
real :: hb ! emissivity of H 4->2
real :: fh ! emissivity of H
T4 = TeUsed / 10000.
! do hydrogenic ions first
! read in HI recombination lines [e-25 ergs*cm^3/s]
! (Storey and Hummer MNRAS 272(1995)41)
! close(94)
! open(unit = 94, action="read", file = "data/r1b0100.dat", status = "old", position = "rewind", iostat=ios)
! if (ios /= 0) then
! print*, "! RecLinesEmission: can't open file: data/r1b0100.dat"
! stop
! end if
! do iup = 15, 3, -1
! read(94, fmt=*) (HIRecLines(iup, ilow), ilow = 2, min(8, iup-1))
! end do
! close(94)
! calculate Hbeta
! Hbeta = 2530./(TeUsed**0.833) ! TeUsed < 26000K CASE
! fits to Storey and Hummer MNRAS 272(1995)41
! Hbeta = 10**(-0.870*log10Te + 3.57)
! Hbeta = Hbeta*NeUsed*ionDenUsed(elementXref(1),2)*elemAbundanceUsed(1)
! calculate emission due to HI recombination lines [e-25 ergs/s/cm^3]
! do iup = 15, 3, -1
! do ilow = 2, min(8, iup-1)
! HIRecLines(iup, ilow) = HIRecLines(iup, ilow)*Hbeta
! end do
! end do
! calculate Hbeta
! if (TeUsed > 26000.) then
! print*, "! recLineEmission: [warning] temperature exceeds 26000K - Hbeta &
! & calculations may be uncertain"
! end if
Hbeta = 2530./(TeUsed**0.833) ! TeUsed < 26000K CASE
! fits to Storey and Hummer MNRAS 272(1995)41
! Hbeta = 10**(-0.870*log10Te + 3.57)
Hbeta = Hbeta*NeUsed*ionDenUsed(elementXref(1),2)*elemAbundanceUsed(1)
call hlinex(4,2,TeUsed,NeUsed,fh)
hb = fh
if (hb.eq.0.d0.or.hb.gt.huge(1.0)) then
HIRecLines(:,:) = 0.d0 !needs fixing upstream, it should not be zero
else
do ilow = 2, 8
do iup = 30, ilow+1, -1
call hlinex(iup,ilow,TeUsed,NeUsed,fh)
HIRecLines(iup, ilow) = (fh/hb)*Hbeta
if (HIRecLines(iup, ilow) .gt. huge(1.0)) then
print *,iup,ilow
print *,TeUsed,NeUsed
print *,fh
! stop
HIRecLines(iup, ilow)=0.d0
endif
enddo
enddo
endif
! add contribution of Lyman alpha
! fits to Storey and Hummer MNRAS 272(1995)41
Lalpha = 10**(-0.897*log10Te + 5.05)
HIRecLines(30, 8) =HIRecLines(30, 8) + elemAbundanceUsed(1)*&
& ionDenUsed(elementXref(1),2)*&
& NeUsed*Lalpha
! reinitialise HeIIRecLines
! file used to be read in here
HeIIRecLines = HeIIRecLineData
! calculate HeII 4686 [E-25 ergs*cm^3/s]
HeII4686 = 10.**(-.997*log10(TeUsed)+5.16)
HeII4686 = HeII4686*NeUsed*elemAbundanceUsed(2)*ionDenUsed(elementXref(2),3)
! calculate emission due to HeI recombination lines [e-25 ergs/s/cm^3]
do iup = 30, 3, -1
do ilow = 2, min(16, iup-1)
HeIIRecLines(iup, ilow) = HeIIRecLines(iup, ilow)*HeII4686
end do
end do
! now do HeI
if (NeUsed <= 100.) then
denint=0
elseif (NeUsed > 100. .and. NeUsed <= 1.e4) then
denint=1
elseif (NeUsed > 1.e4 .and. NeUsed < 1.e6) then
denint=2
elseif (NeUsed >= 1.e6) then
denint=3
end if
! data from Benjamin, Skillman and Smits ApJ514(1999)307 [e-25 ergs*cm^3/s]
if (denint>0.and.denint<3) then
do i =1, 34
x1=HeIrecLineCoeff(i,denint,1)*(T4**(HeIrecLineCoeff(i,denint,2)))*exp(HeIrecLineCoeff(i,denint,3)/T4)
x2=HeIrecLineCoeff(i,denint+1,1)*(T4**(HeIrecLineCoeff(i,denint+1,2)))*exp(HeIrecLineCoeff(i,denint+1,3)/T4)
HeIRecLines(i) = x1+((x2-x1)*(NeUsed-100.**denint)/(100.**(denint+1)-100.**(denint)))
end do
elseif(denint==0) then
do i = 1, 34
HeIRecLines(i) = HeIrecLineCoeff(i,1,1)*(T4**(HeIrecLineCoeff(i,1,2)))*exp(HeIrecLineCoeff(i,1,3)/T4)
end do
elseif(denint==3) then
do i = 1, 34
HeIRecLines(i) = HeIrecLineCoeff(i,3,1)*(T4**(HeIrecLineCoeff(i,3,2)))*exp(HeIrecLineCoeff(i,3,3)/T4)
end do
end if
HeIRecLines=HeIRecLines*NeUsed*elemAbundanceUsed(2)*ionDenUsed(elementXref(2),2)
end subroutine RecLinesEmission
end subroutine outputGas
! read atomic data for higher level H transitions.
! authors: Wang Wei, Yu Pei (PKU)
subroutine hdatx
implicit none
integer :: ios ! I/O error status
integer :: ia ! upper level
integer :: ib ! lower level
integer :: ntempx ! number of temperature
integer :: ndensx ! number of density
integer :: ntop ! top level
integer :: nll ! lower level
integer :: nlu ! upper level
integer :: ne ! level
integer :: ndum ! level
integer :: j ! integer
real, dimension(15) :: densx
real, dimension(15) :: tempx
real, dimension(5000,15,15) :: ex
common/hdatax/densx,tempx,ex,ntempx,ndensx,ntop,nll,nlu
close(337)
open(unit =337, file = PREFIX//"/share/mocassin/data/e1bx.d", status = "old", position = "rewind", iostat=ios, action="read")
if (ios /= 0) then
print*, "! hdatax: can't open ",PREFIX,"/share/mocassin/data/e1bx.d"
stop
end if
read(337,*) ntempx,ndensx
do ia=1,ntempx
do ib=1,ndensx
read(337,25) densx(ib),tempx(ia),ntop,ndum,nlu,nll
25 format(1x,e10.3,5x,e10.3,5x,4i5)
ne=(2*ntop-nlu-nll)*(nlu-nll+1)/2
read(337,30) (ex(j,ia,ib),j=1,ne)
30 format((8e10.3))
enddo
enddo
close(337)
end subroutine hdatx
! Interpolate in density/temperature for specified line emissivity
! Interpolate in density/temperature for specified line emissivity (iopt=1)
! or 2s recombination coefficient (iopt=2)
! authors Wang Wei and Yu Pei (PKU)
subroutine hlinex(nu,nl,xt,xd,fh)
implicit none
integer :: nu ! upper level
integer :: nl ! lower level
integer :: ntempx ! number of temperature
integer :: ndensx ! number of density
integer :: ntop ! top level
integer :: nll ! lower level
integer :: nlu ! upper level
integer :: id, it, nt, j, i0, k, nls, nus, ncut
integer :: ks, j0, ip, kp, jp, ky, kx, js
integer :: intv, maxv, ns, nint1, nintv, is
real :: nof
real :: xt ! temperature used
real :: xd ! density used
real :: fh ! H atomic data
real, dimension(15) :: densx
real, dimension(15) :: tempx
real, dimension(5000,15,15) :: ex
real, dimension(15,15) :: r
real, dimension(15) :: x
real, dimension(15) :: y
real, dimension(5) :: ni
real, dimension(5) :: cx
real, dimension(5) :: cy
real, dimension(5) :: ri
real, dimension(2,15) :: f
integer :: i
real :: rint, rrr, xp, yp
common/hdatax/densx,tempx,ex,ntempx,ndensx,ntop,nll,nlu
data maxv/4/ni/2,3,4,5,6/ ! interpolation parameters
ncut=0 ! RW 19/06/2016 - was not initialised previously
!are we calculating something at higher temperature than the data exists for?
if (xt.gt.maxval(tempx)) then
print *,"temperature out of range!"
print *,"temperature is ",xt,"but emissivity data only goes up to ",maxval(tempx)
print *,"emissivity calculated for T=",maxval(tempx)
xt=maxval(tempx)
endif
if (xd .eq. 0.d0) then ! no material = no emission
fh = 0.d0
return
endif
! interpolation variables
x=log10(densx)
y=sqrt(tempx)
f(1,:)=1.0 ! f is emissivity smoothing function in temp
f(2,:)=y
nus=0
nls=0
! set keys to locate transitions of interest
if((nus+nls).eq.0) then
ns=2
ks=999
else
ns=1
ks=(((ncut-nus)*(ncut+nus-1))/2)+nls
endif
k=(2*ntop-nll-nl+1)*(nl-nll)/2+ntop-nu+1
if(ns.eq.1) then
r=ex(k,:,:)/ex(ks,:,:)
else
r=ex(k,:,:)
endif
! interpolate in r-table
nt=1
xp=log10(xd) ! interpolate in log(dens)
yp=sqrt(xt) ! interpolate in temp**0.5
! find interpolation box
i=1
if(xp.lt.x(i)) then
goto 88
endif
86 if(xp.ge.x(i).and.xp.le.x(i+1)) then
goto 88
else
i=i+1
if(i.eq.ndensx) then
i = ndensx - 1
! stop 'dens overflow'
endif
goto 86
endif
88 i0=i
j=1
if(yp.lt.y(j)) then
goto 92
endif
90 if(yp.ge.y(j).and.yp.le.y(j+1)) then
goto 92
else
j = j+1
if(j.eq.ntempx) then
j = ntempx - 1
goto 92
! stop 'temp overflow'
endif
goto 90
endif
92 j0=j
intv=maxv
nintv=nint(ni(intv)) ! interpolation order
nint1=nintv-1
nof=nint1/2
! shift i0 to nearest box boundary in each direction if nint is odd
if(nintv.eq.3.or.nintv.eq.5.or.nintv.eq.7) then ! note ODD order
if((xp-x(i0)).gt.(x(i0+1)-xp)) then
is=nint(i0+1-nof)
else
is=nint(i0-nof)
endif
if((yp-y(j0)).gt.(y(j0+1)-yp)) then
js=nint(j0+1-nof)
else
js=nint(j0-nof)
endif
else
is=nint(i0-nof)
js=nint(j0-nof)
endif
! ensure that interpolation box lies in table
if(is.lt.1) then
is=1
endif
if((is+nint1).gt.ndensx) then
is=ndensx-nint1
endif
if(js.lt.1) then
js=1
endif
if((js+nint1).gt.ntempx) then
js=ntempx-nint1
endif
do k=1,nintv
i=is+k-1
cx(k)=1.0
do kp=1,nintv
if(kp.ne.k) then
ip=is+kp-1
cx(k)=cx(k)*(xp-x(ip))/(x(i)-x(ip))
endif
enddo
enddo
do k=1,nintv
j=js+k-1
cy(k)=1.0
do kp=1,nintv
if(kp.ne.k) then
jp=js+kp-1
cy(k)=cy(k)*(yp-y(jp))/(y(j)-y(jp))
endif
enddo
enddo
rint=0.0
do kx=1,nintv
do ky=1,nintv
if((js+ky-1).gt.ntempx.or.(is+kx-1).gt.ndensx) then
stop 'final loop error'
endif
rrr=r(js+ky-1,is+kx-1)*f(ns,js+ky-1) ! smoothing ftn
if(nt.ne.0) then
rrr=log(rrr)
endif
rint=rint+cx(kx)*cy(ky)*rrr
enddo
enddo
ri(intv)=rint
if(nt.ne.0) then
ri(intv)=exp(ri(intv))
endif
if(ns.eq.2) then
ri(intv)=ri(intv)/yp ! remove smoothing function = temp**.5
endif
fh=ri(maxv)
! return
end subroutine hlinex
subroutine writeTauNu(grid)
implicit none
type(grid_type), intent(in) :: grid(*)
type(vector) :: aVec, uHat
real, allocatable :: outTau(:)
integer :: err, i, ios
! find the run of the optical depths from the illuminated
! surface to the edge of the nebula
! allocate space for temporary optical depth arrays
allocate (outTau(1:nbins), stat = err)
if (err /= 0) then
print*, "! adjustGrid: can't allocate array memory"
stop
end if
close(73)
open(unit=73, file='output/tauNu.out', status='unknown', position='rewind', iostat = ios, action="write")
! initialize arrays with zero
outTau = 0.
do i = 1, nbins
aVec%x = 0.
aVec%y = 0.
aVec%z = 0.
uHat%x = 1.
uHat%y = 0.
uHat%z = 0.
! find the optical depth
call integratePathTauNu(grid, aVec, uHat, i, outTau(i))
end do
write(73, *) " Optical depth from the centre to the edge of the nubula "
write(73, *) " direction: 1,0,0"
write(73, *) " lambda [um] tau(R_max) "
do i = 1, nbins
write(73, *) (c/(nuArray(i)*fr1Ryd))*1.e4, outTau(i)
end do
write(73,*) ' '
! initialize arrays with zero
outTau = 0.
do i = 1, nbins
aVec%x = 0.
aVec%y = 0.
aVec%z = 0.
uHat%x = 0.
uHat%y = 0.
uHat%z = 1.
! find the optical depth
call integratePathTauNu(grid, aVec, uHat, i, outTau(i))
end do
write(73, *) " Optical depth from the centre to the edge of the nubula "
write(73, *) " direction: 0,0,1"
write(73, *) " lambda [um] tau(R_max) "
do i = 1, nbins
write(73, *) (c/(nuArray(i)*fr1Ryd))*1.e4, outTau(i)
end do
write(73,*) ' '
! initialize arrays with zero
outTau = 0.
do i = 1, nbins
aVec%x = 0.
aVec%y = 0.
aVec%z = 0.
uHat%x = 0.
uHat%y = 1.
uHat%z = 0.
! find the optical depth
call integratePathTauNu(grid, aVec, uHat, i, outTau(i))
end do
write(73, *) " Optical depth from the centre to the edge of the nubula "
write(73, *) " direction: 0,1,0"
write(73, *) " lambda [um] tau(R_max) "
do i = 1, nbins
write(73, *) (c/(nuArray(i)*fr1Ryd))*1.e4, outTau(i)
end do
write(73,*) ' '
close(73)
if(allocated(outTau)) deallocate(outTau)
end subroutine writeTauNu
subroutine writeSED(grid)
implicit none
type(grid_type), intent(in) :: grid(*) !
integer :: ios, err ! I/O error status
integer :: i,j,k,freq, imu, iG, ic, ijk ! counters
real, allocatable :: SED(:,:),sSED(:,:),dSED(:,:) ! SED array
real :: theta1, theta2, phi1, phi2
real :: lambda ! lambda [cm]
real :: totalE ! total energy [erg/sec]
print*, 'in writeSED'
close(16)
open(unit=16,file='output/SED.out',status='unknown', position='rewind',iostat=ios, action="write")
if (ios /= 0) then
print*, "! writeSED: Cannot open output/SED.out for writing"
stop
end if
! open(unit=116,file='output/sourceSED.out',status='unknown', position='rewind',iostat=ios, action="write")
! if (ios /= 0) then
! print*, "! writeSED: Cannot open output/sourceSED.out for writing"
! stop
! end if
allocate(SED(1:nbins,0:nAngleBins), stat=err)
allocate(sSED(1:nbins,0:nAngleBins), stat=err)
! allocate(dSED(1:nbins,0:nAngleBins), stat=err)
if (err /= 0) then
print*, "! writeSED: can't allocate array memory: SED"
stop
end if
SED=0.
! sSED=0.
! dSED=0.
write(16,*) 'Spectral energy distribution at the surface of the nebula: '
write(16,*) ' viewPoints = ', (viewPointTheta(i), viewPointPhi(i), ' , ', i = 1, nAngleBins)
write(16,*) ' nu [Ryd] lambda [um] F(nu)*D^2 '
write(16,*) ' [Jy * pc^2] '
! write(116,*) 'Spectral energy distribution of sources: '
! write(116,*) ' nu [Ryd] lambda [um] F(nu)*D^2 '
! write(116,*) ' [Jy * pc^2] '
totalE=0.
do iG = 1, nGrids
do freq=1,nbins
if (.not.lgEcho .and. .not.lgNosource) then
do i = 0, grid(iG)%nCells
do imu = 0, nAngleBins
SED(freq,imu)=SED(freq,imu)+grid(iG)%escapedPackets(i,freq,&
&imu)
end do
end do
else
do i = 1, grid(iG)%nx
do j = 1, grid(iG)%ny
do k = 1, grid(iG)%nz
ijk = grid(iG)%active(i,j,k)
if (ijk.gt.0) then
! do ic=1,nStars
! if (grid(iG)%active(starIndeces(ic,1),&
! &starIndeces(ic,2),starIndeces(ic,3)).eq.ijk) then
! do imu = 0, nAngleBins
! sSED(freq,imu)=sSED(freq,imu)+&
! &grid(iG)%escapedPackets(ijk,freq,imu)
! end do
! endif
! enddo
if (.not.lgEcho) then
if (lgNosource) then ! exclude source if requested
do ic=1,nStars
if (grid(iG)%active(starIndeces(ic,1),&
&starIndeces(ic,2),starIndeces(ic,3)).ne.ijk)&
& then
do imu = 0, nAngleBins
SED(freq,imu)=SED(freq,imu)+&
&grid(iG)%escapedPackets(ijk,freq,imu)
end do
endif
enddo
end if
else ! only get SED from region defined by light echo
do imu = 0, nAngleBins
SED(freq,imu)=SED(freq,imu)+&
&grid(iG)%escapedPackets(ijk,freq,imu)*&
&grid(iG)%echoVol(i,j,k)
! mult by echoVol() corrects for actual percentage of cell that was illuminated
end do
endif
endif
enddo
enddo
enddo
endif
end do
end do
do freq = 1, nbins
! do imu = 1, nAngleBins
! if (viewPointTheta(imu)>0.) SED(freq,imu) = SED(freq,imu)/dTheta
! if (viewPointPhi(imu)>0.) SED(freq,imu) = SED(freq,imu)/dPhi
! end do
lambda = c/(nuArray(freq)*fr1Ryd)
if (lgSymmetricXYZ) then
SED(freq,0) = SED(freq,0)*8.
! sSED(freq,0) = sSED(freq,0)*8.
SED(freq,1:nanglebins) = SED(freq,1:nanglebins)*4.
endif
totalE = totalE + SED(freq,0)
! dilute the SEDs - user must still divide by D^2 in pc
! the 1.e18 is absorbed later
SED(freq,0) = SED(freq,0)/(4.*Pi*3.08*3.08)
! sSED(freq,0) = sSED(freq,0)/(4.*Pi*3.08*3.08)
! convert to Jy
SED(freq,0) = 1.e23*SED(freq,0)/(3.2898e15*widflx(freq))
! sSED(freq,0) = 1.e23*SED(freq,0)/(3.2898e15)*widflx(freq)
do imu = 1, nAngleBins
! find theta1 and theta2
theta1 = int(viewPointTheta(imu)/dTheta)*dTheta
theta2 = theta1+dTheta
! find phi1 and phi2
phi1 = int(viewPointPhi(imu)/dPhi)*dPhi
phi2 = phi1+dPhi
! SED(freq, imu) = SED(freq, imu)/(2.*Pi*3.08*3.08*abs(cos(theta1)-cos(theta2)))
SED(freq, imu) = SED(freq, imu)/(dPhi*3.08*3.08*abs(cos(theta1)-cos(theta2)))
SED(freq, imu) = 1.e23*SED(freq, imu)/(3.2898e15*widflx(freq))
end do
write(16,*) nuArray(freq), c/(nuArray(freq)*fr1Ryd)*1.e4, (SED(freq,imu), imu=0,nAngleBins )
! write(6,'(a1,1pg12.4,4es12.4)')"d",c/(nuArray(freq)*fr1Ryd)*1.e4,widflx(freq),SED(freq,0),sSED(freq,0),dSED(freq,0)
! write(116,*) nuArray(freq), c/(nuArray(freq)*fr1Ryd)*1.e4, sSED(freq,0)
end do
if (lgEquivalentTau .and. nIterateMC==1) then
SEDnoExt = SED(:,0)
elseif (lgEquivalentTau .and. nIterateMC>1) then
open (unit=74,file='output/equivalentTau.out',action='write', position='rewind',&
& iostat=ios, status='unknown')
write (74,*) "# frequency (Ryd) wavelength (um) equivalentTau SED"
do freq = 1, nbins
if (SEDnoExt(freq)>0. .and. SED(freq,0)>0.) then
equivalentTau(freq) = log(SEDnoExt(freq)/SED(freq,0))
else
equivalentTau(freq) = -1
end if
write(74,*) nuArray(freq), c/(nuArray(freq)*fr1Ryd)*1.e4, equivalentTau(freq), SEDnoExt(freq)
end do
close(74)
end if
write(16,*) ' '
write(16,*) 'Total energy radiated out of the nebula [e36 erg/s]:', totalE
print*, 'Total energy radiated out of the nebula [e36 erg/s]:', totalE, Lstar, nphotons
! write(16,*) 'All SEDs given per unit direction'
! write(16,*) 'To obtain total emission over all directions must multiply by Pi'
write(16,*) 'dTheta: ', dTheta
write(16,*) 'dPhi: ', dPhi
write(16,*) ' '
if (nuArray(1)<radio4p9GHzP) then
write(16,*) 'Flux at 4.9GHz (must multiply by 1.e36/(4 Pi D[cm]^2 to obtain units of [Jy]) :', &
& SED(radio4p9GHzP,0)*Pi*1.e23/(nuArray(radio4p9GHzP)*fr1Ryd)
print*, 'Flux at 4.9GHz (must multiply by 1.e36/(4 Pi D[cm]^2 to obtain units of [Jy]) :', &
& SED(radio4p9GHzP,0)*Pi*1.e23/(nuArray(radio4p9GHzP)*fr1Ryd)
end if
close(16)
! close(116)
if (allocated(SED)) deallocate(SED)
if (allocated(sSED)) deallocate(sSED)
if (allocated(dSED)) deallocate(dSED)
print*, 'out writeSED...'
end subroutine writeSED
subroutine writeContCube(grid, freq1,freq2)
implicit none
type(grid_type), intent(in) :: grid(*)
integer :: ios,ix,iy,iz, iG ! I/O error status, counters
integer :: freq, imu, ifreq1, ifreq2 ! counters
real, intent(inout) :: freq1,freq2 ! wavelengths in um
real :: contI(0:nanglebins) ! continuum int in band
print*, 'in writeContCube'
close(19)
open(unit=19,file='output/contCube.out',status='unknown', position='rewind',iostat=ios, action="write")
if (ios /= 0) then
print*, "! writeContCube: Cannot open file for writing"
stop
end if
freq1 = c/(freq1*1.e-4*fr1Ryd)
freq2 = c/(freq2*1.e-4*fr1Ryd)
call locate(nuArray(1:nbins), freq1, ifreq2)
if (ifreq2 <= 0) ifreq2=1
call locate(nuArray(1:nbins), freq2, ifreq1)
if (ifreq1 <= 0) ifreq1=1
do iG = 1, nGrids
do ix = 1, grid(iG)%nx
do iy = 1, grid(iG)%ny
do iz = 1, grid(iG)%nz
if ( grid(iG)%active(ix,iy,iz)>0 .or. (ig==1 .and. &
& ix==iorigin .and. iy==jorigin .and.iz==korigin) ) then
do imu=0,nanglebins
contI(imu)=0.
! do freq = ifreq1, ifreq2
do freq = 1, nbins
contI(imu) = contI(imu)+&
& grid(iG)%escapedPackets(grid(iG)%active(ix,iy,iz),freq,imu)
end do
if (imu>0) then
if (viewPointTheta(imu)>0.) contI(imu) = contI(imu) / dTheta
if (viewPointPhi(imu)>0.) contI(imu) = contI(imu) / dPhi
else
contI(imu) = contI(imu) / (4.*Pi)
end if
end do
write(19,*) iG, ix,iy,iz, (contI(imu), imu=0,nanglebins)
else
write(19,*) iG, ix,iy,iz, (0., imu=0,nanglebins)
end if
end do
end do
end do
end do
write(19,*) ' '
write(19,*) 'All continuum intensities given per unit direction - must multiply column 3&
& by 4. Pi to obtain total emission over all directions.'
close(19)
print*, 'writeContCube'
end subroutine writeContCube
end module output_mod
|