Spaces:
Sleeping
Sleeping
File size: 184,497 Bytes
3eb7822 |
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 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 2989 2990 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 3060 3061 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 3099 3100 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 3133 3134 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 3212 3213 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 3272 3273 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 3313 3314 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 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 |
{
"annotations": [
{
"bbox": [
376,
1168,
552,
1208
],
"block_id": 125,
"category": 10,
"page_index": 0,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\section{Keywords}",
"labels": [],
"references": null
},
{
"bbox": [
368,
1248,
1232,
1280
],
"block_id": 126,
"category": 8,
"page_index": 0,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": " \nGrazing-incidence optics, X-ray telescope, X-ray imaging, X-ray Astronomy.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1368,
872,
1400
],
"block_id": 127,
"category": 10,
"page_index": 0,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\section{Early Days of X-Ray Astronomy}",
"labels": [],
"references": null
},
{
"bbox": [
368,
1448,
1304,
1512
],
"block_id": 128,
"category": 9,
"page_index": 0,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\nThe development of rockets and later satellites made possible the observation of celestial X-rays from outside the earth\u2019s attenuating atmosphere. However, although X-ray emission had been detected from the sun as early as the 1940s\\cite{burnight1949soft} it was expected that if nearby stars produced similar amounts of X-rays their signal would be $\\sim 10$ orders of magnitude smaller, way beyond the capabilities of instrumentation at that time, and therefore no extra-solar X-ray sources could be expected to be detected. All this changed during a very brief rocket flight nearly 60 years ago\\cite{giacconi1962evidence}. Intended to look for X-ray fluorescence from the moon, this flight discovered an extremely bright source of X rays from the constellation Scorpius as well as a diffuse isotropic X-ray background and marked the beginning of the field of X-ray astronomy. It soon became apparent through other sub-orbital measurements\\cite{bowyer1965cosmic} that there were many powerful X-ray sources (10 orders of magnitude brighter in X rays than the sun), that some were extended, and that they were nearly all time variable on a variety of scales. These discoveries were made with simple instruments with mechanical collimators to provide relatively crude locations on the sky. ",
"labels": null,
"references": []
},
{
"bbox": [
368,
272,
1296,
704
],
"block_id": 129,
"category": 9,
"page_index": 1,
"previous_block": null,
"parent_block": 128,
"next_block": null,
"source_code": "\nThe development of rockets and later satellites made possible the observation of celestial X-rays from outside the earth\u2019s attenuating atmosphere. However, although X-ray emission had been detected from the sun as early as the 1940s\\cite{burnight1949soft} it was expected that if nearby stars produced similar amounts of X-rays their signal would be $\\sim 10$ orders of magnitude smaller, way beyond the capabilities of instrumentation at that time, and therefore no extra-solar X-ray sources could be expected to be detected. All this changed during a very brief rocket flight nearly 60 years ago\\cite{giacconi1962evidence}. Intended to look for X-ray fluorescence from the moon, this flight discovered an extremely bright source of X rays from the constellation Scorpius as well as a diffuse isotropic X-ray background and marked the beginning of the field of X-ray astronomy. It soon became apparent through other sub-orbital measurements\\cite{bowyer1965cosmic} that there were many powerful X-ray sources (10 orders of magnitude brighter in X rays than the sun), that some were extended, and that they were nearly all time variable on a variety of scales. These discoveries were made with simple instruments with mechanical collimators to provide relatively crude locations on the sky. ",
"labels": null,
"references": []
},
{
"bbox": [
368,
704,
1304,
1064
],
"block_id": 130,
"category": 8,
"page_index": 1,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "In 1970, the first satellite dedicated to X-ray astronomy began operation. Called UHURU\\cite{giacconi1971x}, the Swahili word or freedom, it was launched from Kenya into an equatorial orbit and operated for just over 2 years. UHURU (Figure \\ref{fig:Uhuru}) used mechanically-collimated gas-filled detectors with a narrow field of view and rotated slowly (0.08 rpm) so that a sources position in the scan direction could be determined from the satellite\u2019s pointing information. Repeating this process in several scan directions leads to a source\u2019s location on the sky. The angular resolution obtained by UHURU depended on the brightness of the source and also the local density of other sources which could confuse the observation. For isolated bright sources UHURU achieved localization accuracies of less than 1 arcminute. Over its 27 months of operation, UHURU produced a catalogue of 339 X-ray sources (Figure \\ref{fig:uhuruMap}).",
"labels": null,
"references": [
"fig:Uhuru",
"fig:uhuruMap"
]
},
{
"bbox": [
448,
1144,
751,
1168
],
"block_id": 131,
"category": 1,
"page_index": 1,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[Uhuru]{ \\label{fig:Uhuru} The UHURU Satellite (SAS-A)}",
"labels": null,
"references": null
},
{
"bbox": [
408,
1224,
544,
1256
],
"block_id": 132,
"category": 8,
"page_index": 1,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": " \\caption[uhuruMap]{\\label{fig:uhuruMap} The UHURU X-ray source catalog}\n \\end{figure}",
"labels": null,
"references": []
},
{
"bbox": [
544,
1224,
936,
1256
],
"block_id": 133,
"category": 1,
"page_index": 1,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[uhuruMap]{\\label{fig:uhuruMap} The UHURU X-ray source catalog}",
"labels": null,
"references": null
},
{
"bbox": [
368,
1256,
1296,
1552
],
"block_id": 134,
"category": 8,
"page_index": 1,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "The success of UHURU fueled the desire for ever more sensitive measurements and other experimental techniques were explored. Large-area detectors are limited in sensitivity by their inherently large backgrounds, which can approach the signals of the brightest cosmic X-ray sources. Only by performing on/off source measurements for extended periods of time can faint sources be detected. The potential for using X-ray telescopes that could focus source flux to a small detector area had already been proposed even before the discovery of the first cosmic X-ray source\\cite{giacconi1960telescope}. As we shall see, it was this development that was to revolutionize the field of X-ray astronomy.",
"labels": null,
"references": []
},
{
"bbox": [
368,
264,
808,
304
],
"block_id": 135,
"category": 10,
"page_index": 2,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\section{The Benefit of X-Ray Optics}",
"labels": [],
"references": null
},
{
"bbox": [
368,
352,
792,
384
],
"block_id": 136,
"category": 10,
"page_index": 2,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{Signal to Noise Advantage}",
"labels": [],
"references": null
},
{
"bbox": [
368,
432,
1296,
632
],
"block_id": 137,
"category": 8,
"page_index": 2,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\nDetector background consists of multiple components. Cosmic rays, especially trapped particles in the earth\u2019s radiation belts an interact directly with the X-ray detector, or indirectly by producing secondaries, typically gamma rays, that then interact in the detector sensitive volume. In addition, there is a diffuse isotropic cosmic X-ray background that depends on the field of view of the instrument. All these components are dependent on the detector volume.",
"labels": null,
"references": []
},
{
"bbox": [
368,
624,
1296,
832
],
"block_id": 138,
"category": 9,
"page_index": 2,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "The sensitivity of a detector is given by $Sens = S / \\sqrt{S + B}$ where $S$ is the total source counts and $B$ is the background counts. As the background typically dominates this reduces to $S / \\sqrt B$ and as both source and background counts increase with detector area the sensitivity scales as $\\sqrt A$. Thus to double the sensitivity of a detector its area would have to be 4 x larger and this quickly leads to a limiting practical sensitivity.",
"labels": null,
"references": []
},
{
"bbox": [
368,
832,
1304,
1328
],
"block_id": 139,
"category": 9,
"page_index": 2,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "If an X-ray mirror is used, then the X-ray flux is focused on to a small detection area, thereby greatly reducing the background and dramatically improving the signal to noise. The source and background flux are essentially decoupled as the source flux can be increased by increasing the mirror collecting area (for a fixed angular resolution and focal length). The background can be decreased by reducing the focal spot size on the detector. By way of an example, consider the Chandra observatory, now flying (see \\S\\ref{1990s}). The effective area of Chandra is approximately 800 cm$^2$ at 0.25 keV, approximately comparable to that of the UHURU observatory (each of 2 sets of proportional counters had 840 cm$^2$ effective area). However, the optics, which have an angular resolution of less than 0.5 arcsec HPD on axis\\cite{POG}, focus the flux down to just a $\\sim 25$-micron-square area, giving rise to a background rate of just a few counts per year\\cite{chandraACIScalibration}, compared to typical large area detector rates of a few counts per second. The net result is that Chandra has a sensitivity a factor of 10$^5$ greater than UHURU, and in its deep field images has detected $\\sim1000$ sources in a 0.13 deg$^2$ region of the sky\\cite{luo2016chandra}, compared with 339 sources in the whole sky with UHURU. ",
"labels": null,
"references": [
"1990s"
]
},
{
"bbox": [
368,
1328,
1128,
1368
],
"block_id": 140,
"category": 10,
"page_index": 2,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{Large Dynamic Range and Less Source Confusion}",
"labels": [],
"references": null
},
{
"bbox": [
368,
1408,
1296,
1576
],
"block_id": 141,
"category": 8,
"page_index": 2,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\nBecause the signal from a source is concentrated in one area of the detector when using focusing optics this leads to the capability to observe faint sources (or source structure) in the presence of bright ones This is in sharp contract to a non-imaging system where each visible source contributes across the full detector area, and thus faint sources become lost in the noise of brighter sources and the background.\n",
"labels": null,
"references": []
},
{
"bbox": [
368,
1576,
920,
1616
],
"block_id": 142,
"category": 10,
"page_index": 2,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{Use of High Performance Detectors}",
"labels": [],
"references": null
},
{
"bbox": [
368,
1664,
1296,
1760
],
"block_id": 143,
"category": 8,
"page_index": 2,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\nX-ray optics permits the use of small-format, high-performance focal-plane detectors that represent the state of art developments. Early large-area detectors were typically gas-filled proportional counters that had modest energy resolution (1.5 keV at 5.9 keV). The use of mirror systems allowed CCDs to become ubiquitous in X-ray astronomy, with an almost factor of 10 improvement in both energy resolution and spatial resolution. When coupled with diffraction gratings placed in the optical path, spectral resolutions of the order of 1 eV are now possible at low energies. Recent advances in focal-plane detectors include CMOS direct imagers in which each imaging pixel has its own electronics read-out chain for much faster readout rates, and microcalorimeters which offer the promise of high spatial and spectral resolution in the 0.2-7\nkeV energy range\\cite{bandler2019lynx}.",
"labels": null,
"references": []
},
{
"bbox": [
368,
272,
1296,
536
],
"block_id": 144,
"category": 8,
"page_index": 3,
"previous_block": null,
"parent_block": 143,
"next_block": null,
"source_code": "\nX-ray optics permits the use of small-format, high-performance focal-plane detectors that represent the state of art developments. Early large-area detectors were typically gas-filled proportional counters that had modest energy resolution (1.5 keV at 5.9 keV). The use of mirror systems allowed CCDs to become ubiquitous in X-ray astronomy, with an almost factor of 10 improvement in both energy resolution and spatial resolution. When coupled with diffraction gratings placed in the optical path, spectral resolutions of the order of 1 eV are now possible at low energies. Recent advances in focal-plane detectors include CMOS direct imagers in which each imaging pixel has its own electronics read-out chain for much faster readout rates, and microcalorimeters which offer the promise of high spatial and spectral resolution in the 0.2-7\nkeV energy range\\cite{bandler2019lynx}.",
"labels": null,
"references": []
},
{
"bbox": [
368,
536,
1024,
576
],
"block_id": 145,
"category": 10,
"page_index": 3,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\section{The Challenges of Fabricating X-ray Optics}",
"labels": [],
"references": null
},
{
"bbox": [
368,
624,
648,
656
],
"block_id": 146,
"category": 10,
"page_index": 3,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{X-ray reflection}",
"labels": [],
"references": null
},
{
"bbox": [
368,
704,
1296,
832
],
"block_id": 147,
"category": 9,
"page_index": 3,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\nFor X rays, the refractive index of metals is just below one and thus total external reflection can take place at the surface of the material. The critical angle $\\theta_c$ , below which reflection occurs, can be calculated from dispersion theory and away from absorption edges is approximately given by:\n",
"labels": null,
"references": []
},
{
"bbox": [
728,
856,
944,
904
],
"block_id": 148,
"category": 2,
"page_index": 3,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\begin{equation}\n \\theta_r = \\left( 4 \\pi r_0 \\lambda^2 n\\right)^{0.5}\n\\end{equation}",
"labels": [],
"references": null
},
{
"bbox": [
368,
928,
1296,
1160
],
"block_id": 149,
"category": 9,
"page_index": 3,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\nwhere $r_0$ is the classical electron radius, $n$ is the electron density and $\\lambda$ the X-ray wavelength\\cite{aschenbach1985x}. The largest so-called \u2018graze\u2019 (for grazing incidence) angles are therefore at the largest wavelength and with the most dense materials. Typical values are 1$^{\\circ}$ or less for iridium or gold over the 1-10 keV energy range. These high-Z reflective materials would normally be coated on the mirror surface, via vacuum deposition, to enhance reflectivity. A typical reflectivity curve, for iridium, is shown in Figure \\ref{fig:iridiumReflectivity}.",
"labels": null,
"references": [
"fig:iridiumReflectivity"
]
},
{
"bbox": [
448,
1256,
1056,
1288
],
"block_id": 150,
"category": 1,
"page_index": 3,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[iridiumReflectivity]{ \\label{fig:iridiumReflectivity} Reflectivity of iridium as a function of energy for 3 graze angles}",
"labels": null,
"references": null
},
{
"bbox": [
368,
1424,
736,
1464
],
"block_id": 151,
"category": 10,
"page_index": 3,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{Optical Configuration}",
"labels": [],
"references": null
},
{
"bbox": [
368,
1512,
1296,
1776
],
"block_id": 152,
"category": 8,
"page_index": 3,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\nThe phenomenon of total external reflection can be used to make an X-ray mirror. Parabolic reflectors with cylindrical cross sections and shallow (interior) graze angles were initially proposed\\cite{giacconi1960telescope} which could provide very good on axis angular resolution, but would have off-axis responses strongly affected by coma. Later use was made of combinations of surface shapes and the so-called Wolter-1 geometry\\cite{wolter1952spiegelsysteme}, which combines a parabolic first segment followed by a hyperbolic second segment (typically of equal lengths), has become widely used in X-ray astronomy\\cite{vanspeybroeck1972design}. Because projected mirror collecting areas are quite small, due to the shallow graze angles, and because the mirror shells cannot be increased to arbitrary lengths without significantly degrading angular resolution, multiple mirror shells with the same focal length are concentrically nested to increase effective area, as shown in Figure \\ref{fig:wolter1}.",
"labels": null,
"references": [
"fig:wolter1"
]
},
{
"bbox": [
368,
272,
1296,
400
],
"block_id": 153,
"category": 8,
"page_index": 4,
"previous_block": null,
"parent_block": 152,
"next_block": null,
"source_code": "\nThe phenomenon of total external reflection can be used to make an X-ray mirror. Parabolic reflectors with cylindrical cross sections and shallow (interior) graze angles were initially proposed\\cite{giacconi1960telescope} which could provide very good on axis angular resolution, but would have off-axis responses strongly affected by coma. Later use was made of combinations of surface shapes and the so-called Wolter-1 geometry\\cite{wolter1952spiegelsysteme}, which combines a parabolic first segment followed by a hyperbolic second segment (typically of equal lengths), has become widely used in X-ray astronomy\\cite{vanspeybroeck1972design}. Because projected mirror collecting areas are quite small, due to the shallow graze angles, and because the mirror shells cannot be increased to arbitrary lengths without significantly degrading angular resolution, multiple mirror shells with the same focal length are concentrically nested to increase effective area, as shown in Figure \\ref{fig:wolter1}.",
"labels": null,
"references": [
"fig:wolter1"
]
},
{
"bbox": [
448,
488,
800,
520
],
"block_id": 154,
"category": 1,
"page_index": 4,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[wolter1]{ \\label{fig:wolter1} Wolter-1 nested optical configuration}",
"labels": null,
"references": null
},
{
"bbox": [
368,
576,
1296,
744
],
"block_id": 155,
"category": 8,
"page_index": 4,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": " An alternative optical configuration is the Kirkpatrick-Baez (KB) geometry. This geometry, originally proposed for X-rays before the Wolter configuration\\cite{KB1948}, comprises two reflections where focusing in one plane is decoupled from focusing in a perpendicular plane. Here, both reflections are from parabolic mirror segments and nesting is straightforward as shown in Figure \\ref{fig:KB}.",
"labels": null,
"references": [
"fig:KB"
]
},
{
"bbox": [
448,
832,
992,
864
],
"block_id": 156,
"category": 1,
"page_index": 4,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[KB]{ \\label{fig:KB} Kirkpatrick-Baez nested optical configuration (from \\cite{KBfigref})}",
"labels": null,
"references": null
},
{
"bbox": [
368,
912,
1296,
1080
],
"block_id": 157,
"category": 8,
"page_index": 4,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": " The principal attraction of the KB approach is that the individual reflectors are nearly flat and relatively easy to fabricate.The principal drawback, however, is that there is only one reflection in each plane and this leads to a focal length twice that of the Wolter-1 configuration. This doubling of focal length places practical limits on the applicability of KB optics in a space mission. ",
"labels": null,
"references": []
},
{
"bbox": [
368,
1168,
944,
1200
],
"block_id": 158,
"category": 10,
"page_index": 4,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{Requirements on Figure and Surface}",
"labels": [],
"references": null
},
{
"bbox": [
368,
1248,
1296,
1576
],
"block_id": 159,
"category": 8,
"page_index": 4,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\nIrregularities in the surface of a mirror will cause rays to be deflected thereby degrading the X-ray performance. Low frequency irregularities contribute to the overall geometrical figure accuracy of the mirror, whereas high frequency irregularities affect the surface roughness which can produce energy-dependent scattering. Typical figure accuracies at mid spatial scales (10 mm) has to be at the 0.1 micron level for few-arcsec-level optics. For efficient specular reflection of X rays, the surface roughness has to be smooth on the scale of the wavelength of the radiation. Thus, the requirement for the surfaces of X-ray optics is orders of magnitude more stringent than for optics operating in the visible region. The amount of flux scattered can be calculated from:\n",
"labels": null,
"references": []
},
{
"bbox": [
714,
1568,
952,
1640
],
"block_id": 160,
"category": 2,
"page_index": 4,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\begin{equation}\n \\frac{I_s}{I_o} = 1-{\\rm e}^{-\\left(\\frac{4 \\pi \\sigma \\sin{\\alpha}}{\\lambda}\\right)^2}\n\\end{equation}",
"labels": [],
"references": null
},
{
"bbox": [
368,
1648,
1296,
1776
],
"block_id": 161,
"category": 9,
"page_index": 4,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\nWhere $I_s$ is the scattered X-ray intensity, $I_o$ is the incident X-ray intensity, $\\sigma$ is the rms surface roughness, $\\alpha$ is the graze angle and $\\lambda$ is the X-ray wavelength. For a 6 keV photon ($\\lambda=0.2$ nm), at an incidence angle of 0.5$^{\\circ}$, a surface roughness of just 0.5 nm rms will cause scattering of approximately 8\\% of incident flux. ",
"labels": null,
"references": []
},
{
"bbox": [
368,
272,
1296,
672
],
"block_id": 162,
"category": 9,
"page_index": 5,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "The above considerations place stringent requirements on figure and surface that can be challenging to meet, particularly given the very small graze angles involved with X-ray optics. The effective area of an X-ray mirror is the projected area multiplied by the reflectivity squared (for a typical Wolter-1 2-segment system). For a graze angle of $\\alpha$, the projected area $= 2A / \\sin\\alpha$, where $A$ is the total surface area and the factor of two arises as there are two segments. Thus, for a graze angle of 0.5 degrees, the surface area that must be figured and polished will be $>$ 200 times the projected area for each mirror. This can be particularly challenging, inside highly-curved mirror shells. In addition, as will be shown later, the need for high throughput means that mirror shells are typically nested to increase collecting area and so this can place a premium on lighter-weight and thinner substrates for mirror shells that can be efficiently inserted and mounted. ",
"labels": null,
"references": []
},
{
"bbox": [
368,
672,
1000,
712
],
"block_id": 163,
"category": 10,
"page_index": 5,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{Trades in Mirror Fabrication Approaches}",
"labels": [],
"references": null
},
{
"bbox": [
368,
752,
1296,
1376
],
"block_id": 164,
"category": 8,
"page_index": 5,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\nDeveloping a mirror for a specific application involves an optimization that trades angular resolution on the one hand for mass, ease of fabrication and cost on the other (see Figure \\ref{fig:ResMass}). That is, the highest angular resolution X-ray mirror systems made to date for observatories that concentrate on imaging involve labor-intensive meticulous figuring and polishing of very thick, stable substrates that can be mounted without distortions. At the other extreme, thin foil optics, using coated aluminum reflectors, are relatively easy to fabricate, have large throughput (necessary for spectroscopy) and very low mass, but have relatively poor few-arcminute-level angular resolution. Some examples of these various fabrication techniques are given in the next section. Figure \\ref{fig:ResMass} shows the spectrum of HPD vs mass for X-ray optics fabricated and flown on a selection of missions to date, showing the traditional trade-off between mass and resolution. New missions seek to counter this dependency. Note that angular resolution is typically referred to in terms of Half-Power Diameter (HPD) or Half-Energy Width (HEW), rather than a more traditional Full-Width at Half Maximum (FWHM) measure. FWHM can be misleading as an apparently-high-resolution optic may have only have a very small fraction of the reflected flux within this diameter, the rest appearing in broad scattering wings of the point spread function, whereas the HPD/HEW has, by definition, half of the reflected rays within it.",
"labels": null,
"references": [
"fig:ResMass",
"fig:ResMass"
]
},
{
"bbox": [
448,
1472,
952,
1504
],
"block_id": 165,
"category": 1,
"page_index": 5,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[ResMass]{ \\label{fig:ResMass} Areal mass vs angular resolution for various missions}",
"labels": null,
"references": null
},
{
"bbox": [
368,
264,
920,
304
],
"block_id": 166,
"category": 10,
"page_index": 6,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\section{Overview of Fabrication Techniques}",
"labels": [],
"references": null
},
{
"bbox": [
368,
352,
664,
384
],
"block_id": 167,
"category": 10,
"page_index": 6,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{Full Shell Optics}",
"labels": [],
"references": null
},
{
"bbox": [
368,
432,
520,
456
],
"block_id": 168,
"category": 10,
"page_index": 6,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsubsection{Direct}",
"labels": [],
"references": null
},
{
"bbox": [
368,
496,
1296,
928
],
"block_id": 169,
"category": 8,
"page_index": 6,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\nDirect fabrication of full shell mirrors via grinding and polishing is a process that traces its ancestry to the earliest optical telescopes. The approach that has produced the highest resolution flight X-ray optics involves the fabrication of Zerodur ceramic shells, a few-cm thick to avoid fabrication and mounting-induced distortions, which are ground, figured, polished to 0.5 nm or less and coated inside with a highly reflective material such as gold or iridium. Optics of this type have been flown on multiple missions (e.g. Einstein, \\S\\ref{1970s}) and represent the traditional approach to mirror fabrication involving meticulous figuring and polishing of thick substrates. The resulting mirrors can deliver sub-arcsecond angular resolution (see Chandra, \\S\\ref{1990s}) but have high cost (labor-intensive) and significant weight for the mirrors and their support structure. Other technologies have been developed that trade angular resolution for light weight, higher throughput (as the mirror shells can be nested more closely) and lower cost.",
"labels": null,
"references": [
"1970s",
"1990s"
]
},
{
"bbox": [
368,
928,
584,
960
],
"block_id": 170,
"category": 10,
"page_index": 6,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsubsection{Replication}",
"labels": [],
"references": null
},
{
"bbox": [
368,
1000,
1296,
1560
],
"block_id": 171,
"category": 8,
"page_index": 6,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\nReplication seeks to transfer the figure of a precision master on to the surface of a complimentary mirror and has several distinct advantages. First, the master, usually termed a mandrel, can be relatively \u2018massive\u2019 and stable and so can be polished and figured without distortions. Second, it is somewhat easier to figure and polish the outside of cylinder, rather than the inside. Third, the mandrel can be used to fabricate multiple copies of the mirror leading to significant cost advantages if multiple mirror modules are being fabricated. The principal disadvantage is that the replicas do not typically exactly conform to the shape of the master, and so the resulting mirrors have poorer angular resolution (15-25 arcsec HPD) than those produced by direct fabrication. \nAlthough full-shell replication has been done using carriers slid over mandrels, with epoxy to take up the difference (e.g. EXOSAT, \\S\\ref{1980s}), by far the most full-shell replicated optics have been made using electroformed nickel. In this process, thin mirror shells are electroformed onto precisely figured mandrels from which they are later released through differential thermal contraction. Early optics for X-ray astronomy were fabricated using this process\\cite{hudec2017replicated} and it continues to be in use today (e.g. XMM/Newton, \\S\\ref{1990s}) with stronger nickel cobalt alloys substituted for pure nickel (e.g. IXPE, \\S\\ref{2020s}).",
"labels": null,
"references": [
"1980s",
"1990s",
"2020s"
]
},
{
"bbox": [
368,
1560,
672,
1600
],
"block_id": 172,
"category": 10,
"page_index": 6,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{Segmented Optics}",
"labels": [],
"references": null
},
{
"bbox": [
368,
1640,
1296,
1776
],
"block_id": 173,
"category": 8,
"page_index": 6,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\nSegmented optics split a single mirror shell into multiple components for both the parabolic and hyperbolic segments. The attraction of this process is that by splitting a system into many smaller segments much lighter reflectors can be used and these can be nested densely to improve throughput. To date multiple missions have flown aluminum foil reflectors (e.g. ASCA, \\S\\ref{1990s}), typically coated via epoxy replication off a smooth mandrel to improve surface roughness, which could be mass produced at relatively low cost. These are held in place by precision alignment bars that permit individual reflector to be inserted with no additional alignment necessary. In this way, extremely-low-cost, very-light-weight mirror modules can be developed, that trade angular resolution (typical foil optics are a few arcminute angular resolution) for cost and throughput.",
"labels": null,
"references": [
"1990s"
]
},
{
"bbox": [
368,
272,
1304,
504
],
"block_id": 174,
"category": 8,
"page_index": 7,
"previous_block": null,
"parent_block": 173,
"next_block": null,
"source_code": "\nSegmented optics split a single mirror shell into multiple components for both the parabolic and hyperbolic segments. The attraction of this process is that by splitting a system into many smaller segments much lighter reflectors can be used and these can be nested densely to improve throughput. To date multiple missions have flown aluminum foil reflectors (e.g. ASCA, \\S\\ref{1990s}), typically coated via epoxy replication off a smooth mandrel to improve surface roughness, which could be mass produced at relatively low cost. These are held in place by precision alignment bars that permit individual reflector to be inserted with no additional alignment necessary. In this way, extremely-low-cost, very-light-weight mirror modules can be developed, that trade angular resolution (typical foil optics are a few arcminute angular resolution) for cost and throughput.",
"labels": null,
"references": [
"1990s"
]
},
{
"bbox": [
368,
504,
1296,
736
],
"block_id": 175,
"category": 9,
"page_index": 7,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "An alternative approach to aluminum reflectors is to use slumped glass. The attraction of the glass is that it is available with very smooth surfaces due to its fabrication process. Certain glass types, such as low-expansion-coefficient float glasses, is available with sub 0.5 nm surface roughness, making it ideal for X-ray reflectors. By heating the glass to high temperatures ( $\\sim60$0 $^{\\circ}$C) on a suitably-figured Pyrex mandrels, the substrate can be given the desired shape. The NuSTAR (see \\S\\ref{2010s}) mission makes use of this technology. ",
"labels": null,
"references": [
"2010s"
]
},
{
"bbox": [
368,
736,
1096,
776
],
"block_id": 176,
"category": 10,
"page_index": 7,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\section{Chronological List of Mission with X-Ray Optics}",
"labels": [],
"references": null
},
{
"bbox": [
368,
816,
1296,
1080
],
"block_id": 177,
"category": 8,
"page_index": 7,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\nThe following section gives a chronological listing of missions that flew, or plan to fly, grazing-incidence X-ray optics. Each listing describes the type of optics used and their performance parameters, but also includes, as appropriate, challenges overcome and significant astrophysical results. Particular attention is paid to groundbreaking missions which significantly advanced the state of art in mirror technology and/or opened new fields of sensitive study that were not possible before.Note that aside from very early pioneering work with solar imaging the missions described are for non-solar X-ray astronomy. \n",
"labels": null,
"references": []
},
{
"bbox": [
368,
1088,
584,
1120
],
"block_id": 178,
"category": 10,
"page_index": 7,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{Early Days}",
"labels": [],
"references": null
},
{
"bbox": [
368,
1168,
1312,
1528
],
"block_id": 179,
"category": 9,
"page_index": 7,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\n\\textbf{Rocket-borne experiments:} Probably the first successful use of grazing-incidence X-ray optics in astronomy was in 1965\\footnote{An earlier flight by the same group in 1963 yielded poor-quality images. Significant improvements were made to the telescopes for this second flight.} when solar X-ray images were obtained using three small identical grazing incidence telescopes, each with an X-ray-film-equipped camera at their focus, which were carried aloft by an aerobe rocket\\cite{giacconi1965solar}. The X-ray mirrors were fabricated from electroformed nickel, were just 76 mm in diameter and 150 mm long, and had a focal length of 820 mm. The effective area was $\\sim$5 cm$^2$ for the complete payload, sufficient for producing the first focused X-ray images of the sun at around 1.5 keV and with a FWHM angular resolution of about 1 arcminute. Over the next few years several groups flew grazing-incidence optics on solar rocket experiments with steadily-improving angular resolution and collecting areas\\cite{underwood1967glancing,vaiana1968xray}. ",
"labels": null,
"references": []
},
{
"bbox": [
368,
1720,
1296,
1776
],
"block_id": 180,
"category": 4,
"page_index": 7,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\footnote{An earlier flight by the same group in 1963 yielded poor-quality images. Significant improvements were made to the telescopes for this second flight.}",
"labels": null,
"references": null
},
{
"bbox": [
368,
1536,
1296,
1696
],
"block_id": 181,
"category": 9,
"page_index": 7,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "Despite these early successes, the adoption of this full-shell mirror technology to extra-solar X-ray astronomy was still some way off, although in 1970, a small rocket payload was launched with a one-dimensional Kirkpatrick-Baez type mirror which looked for emission from the Virgo and Cygnus regions of the sky\\cite{Gorenstein1971rocket}. The mirror consisted of a series of chromium-coated float-glass plates which have the distinct advantage of having high-quality surfaces that need no additional polishing. Curved slightly in one direction to form a set of parabolas with a common focus, the reflector assembly produced a line image with a field of view in the focusing direction of 2$^{\\circ}$, while orthogonal to this it was collimator-limited to 9$^{\\circ}$.The rocket payload scanned both sky regions along the focusing direction and placed upper limits on source emission in the soft-X-ray band\\cite{Gorenstein1972virgo}. The payload was later upgraded to a two-dimensional Kirkpatrick-Baez array, again using chromium-coated float-glass plates. The final optic had an effective area of 264 cm$^2$ at 1/4 keV and an angular resolution of 3 arcmin\\cite{Gorenstein1975rocket}. The payload flew first in March 1975 and detected X-ray emission from the Algol region in a 0.15 - 2 keV energy band\\cite{Gorenstein1977algol}. \n",
"labels": null,
"references": []
},
{
"bbox": [
368,
272,
1296,
600
],
"block_id": 182,
"category": 9,
"page_index": 8,
"previous_block": null,
"parent_block": 181,
"next_block": null,
"source_code": "Despite these early successes, the adoption of this full-shell mirror technology to extra-solar X-ray astronomy was still some way off, although in 1970, a small rocket payload was launched with a one-dimensional Kirkpatrick-Baez type mirror which looked for emission from the Virgo and Cygnus regions of the sky\\cite{Gorenstein1971rocket}. The mirror consisted of a series of chromium-coated float-glass plates which have the distinct advantage of having high-quality surfaces that need no additional polishing. Curved slightly in one direction to form a set of parabolas with a common focus, the reflector assembly produced a line image with a field of view in the focusing direction of 2$^{\\circ}$, while orthogonal to this it was collimator-limited to 9$^{\\circ}$.The rocket payload scanned both sky regions along the focusing direction and placed upper limits on source emission in the soft-X-ray band\\cite{Gorenstein1972virgo}. The payload was later upgraded to a two-dimensional Kirkpatrick-Baez array, again using chromium-coated float-glass plates. The final optic had an effective area of 264 cm$^2$ at 1/4 keV and an angular resolution of 3 arcmin\\cite{Gorenstein1975rocket}. The payload flew first in March 1975 and detected X-ray emission from the Algol region in a 0.15 - 2 keV energy band\\cite{Gorenstein1977algol}. \n",
"labels": null,
"references": []
},
{
"bbox": [
368,
608,
512,
632
],
"block_id": 183,
"category": 10,
"page_index": 8,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{1970s}",
"labels": [],
"references": null
},
{
"bbox": [
368,
688,
1296,
1248
],
"block_id": 184,
"category": 9,
"page_index": 8,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\n\\textbf{Skylab:} Following the successes of the early short rocket flights using X-ray optics for solar observations, the need for much longer observing times was obvious. An opportunity arose when NASA\u2019s Marshall Space Flight Center proposed a small orbiting space station to be launched on a Saturn V rocket, whose main scientific instrument would be a solar-pointing platform design to house multiple instruments covering the ultraviolet and X-ray energy band \\cite{giacconi2008secrets}. When the proposal was accepted a call was issued for development of the scientific instruments. The winning X-ray proposal featured a telescope consisting of two nested mirror shells with a novel transmission grating in front of the telescope to provide imaging spectroscope. The mirror design specification was superior to those previously flown by the same group, with larger collecting area, by virtue of its nested array of longer-focal-length mirrors and with greatly improved angular resolution that would be achieved by careful figuring and polishing. The final design featured a pair of confocal mirror shells of diameters 310 mm and 230 mm and focal length 2.1 m, giving a geometric collecting area of 42 cm$^2$. Each mirror shell was fabricated from beryllium coated with Kanigen, a nickel-phosphorous alloy that is very hard and can be polished to a high-quality surface finish.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1248,
1296,
1680
],
"block_id": 185,
"category": 8,
"page_index": 8,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "Measurements of angular resolution at around 1.7 keV revealed a narrow core with a FWHM resolution of around 10 arcsec and broad wings from surface scattering. The half-power diameter of the telescope was measured to be under 2 arcminutes\\cite{vaiana1974xray}. It is important to note that for high-contrast imaging of bright sources such as the sun, the total amount of flux in the core is slightly less important than for stellar astronomy where X-ray sources are typically very weak and detector backgrounds play an important role if the focal spot is large. Similarly, collecting area is less important, particularly at low-X-ray energies, where solar X-ray fluxes are considerable.\nSkylab operated between May 1973 and February 1974. The highly-successful X-ray spectroscopic telescope provided the highest angular resolution and sensitivity of any solar instrument at that time and provided a detailed view of dynamic structure of the sun and significantly impacted theories of coronal heating.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1680,
1296,
1744
],
"block_id": 186,
"category": 8,
"page_index": 8,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\textbf{Einstein:} The Einstein Observatory (HEAO-2) was really the first astronomical imaging X-ray telescope, with an optic and corresponding single-photon-counting focal plane detector, to be used in orbit for astronomy. A principal challenge for the Einstein mirror was to reduce the scattering that contributed to significant wings in the Skylab mirror response function. This was necessary as the relatively low fluxes from astronomical X-ray sources required more of the flux to be in the high-resolution core of the mirrors response. Reducing scatter mean achieving a higher surface finish, and it was decided that this could be achieved with glass substrates which could be polished more finely. Experiments with fused silica confirmed that the required surface roughness could be reached\\cite{miller1978high}.",
"labels": null,
"references": []
},
{
"bbox": [
368,
272,
1296,
536
],
"block_id": 187,
"category": 8,
"page_index": 9,
"previous_block": null,
"parent_block": 186,
"next_block": null,
"source_code": "\\textbf{Einstein:} The Einstein Observatory (HEAO-2) was really the first astronomical imaging X-ray telescope, with an optic and corresponding single-photon-counting focal plane detector, to be used in orbit for astronomy. A principal challenge for the Einstein mirror was to reduce the scattering that contributed to significant wings in the Skylab mirror response function. This was necessary as the relatively low fluxes from astronomical X-ray sources required more of the flux to be in the high-resolution core of the mirrors response. Reducing scatter mean achieving a higher surface finish, and it was decided that this could be achieved with glass substrates which could be polished more finely. Experiments with fused silica confirmed that the required surface roughness could be reached\\cite{miller1978high}.",
"labels": null,
"references": []
},
{
"bbox": [
368,
536,
1296,
800
],
"block_id": 188,
"category": 8,
"page_index": 9,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "The contract for the Einstein mirrors was awarded to Perkins Elmer, utilizing a material called Zerodur, which is a near-zero-thermal expansion coefficient fused quartz material. The final configuration was a set of four nested parabolic/hyperbolic pairs ranging in diameter from 0.34 m to 0.58 m (see Table \\ref{tab:einstein} for mirror module parameters). A key challenge was to provide metrology in a free state so that the mirror segments true shape could be measured without distortions imparted by mounting. This was overcome by floating the mirrors in a bath of mercury so that their figures could be measured without gravitational distortions. ",
"labels": null,
"references": [
"tab:einstein"
]
},
{
"bbox": [
456,
864,
792,
888
],
"block_id": 189,
"category": 1,
"page_index": 9,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption{Einstein flight mirror configuration}",
"labels": null,
"references": null
},
{
"bbox": [
600,
896,
1072,
1184
],
"block_id": 190,
"category": 7,
"page_index": 9,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\begin{tabular}{l|l}\n Parameter & Value \\\\\n \\hline\n \\hline\n Parabolic/hyperbolic pairs & 4 \\\\\n Focal length & 3.44 m\\\\\n Intersection diameters & 0.34 - 0.58 m \\\\\n Graze angles & 42 - 72 arcminutes \\\\\n Segment length & 0.51 m \\\\\n Material & Fused quartz \\\\\n Coating & Nickel \\\\\n Effective area & 400 cm$^2$ at 0.25 keV \\\\\n Angular resolution (HEW) & 8 arcsec at 0.28 keV \\\\\n \\end{tabular}",
"labels": null,
"references": null
},
{
"bbox": [
368,
1240,
1296,
1440
],
"block_id": 191,
"category": 8,
"page_index": 9,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "Additional challenges included mounting the optic using materials with adequate rigidity yet low thermal expansion coefficient to avoid distortions in the test, launch and on-orbit operating environments. A special Invar alloy, heat treated to match the Zerodur expansion coefficient, was used for the interface to the mirrors at their ends and a graphite structure, also with matched expansion coefficient, tied the ends together\\cite{miller1978high}.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1440,
1296,
1672
],
"block_id": 192,
"category": 8,
"page_index": 9,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "To align and assemble the individual mirrors, each was hung by approximately 50 individual wires to reduce gravity-induced distortions. These supports had precisely-calculated off-load values to maintain the natural mirror shape during bonding. The alignment system was mounted on a five-axis micro-positioning stage to enable precise placement with respect to its optic pair, measured via optical monitoring. When the required accuracy was achieved the mirror was bonded to its Invar support system via injection of a suitable epoxy\\cite{miller1978high}.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1672,
1296,
1768
],
"block_id": 194,
"category": 8,
"page_index": 9,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "The Einstein mirror assembly (Figure \\ref{fig:einstein}) was integrated with the flight instruments and shipped to Marshall Space Flight Center where a special calibration facility had been built. This facility had a 300-m long beam tube, to give low beam divergence, followed by a large instrument chamber of diameter 7 m and length 13 m (see Figure \\ref{fig:einsteinXRCF}). ",
"labels": null,
"references": [
"fig:einstein",
"fig:einsteinXRCF"
]
},
{
"bbox": [
448,
288,
784,
320
],
"block_id": 193,
"category": 1,
"page_index": 10,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[Einstein]{ \\label{fig:einstein} The Einstein flight mirror assembly}",
"labels": null,
"references": null
},
{
"bbox": [
368,
432,
1296,
496
],
"block_id": 195,
"category": 8,
"page_index": 10,
"previous_block": null,
"parent_block": 194,
"next_block": null,
"source_code": "The Einstein mirror assembly (Figure \\ref{fig:einstein}) was integrated with the flight instruments and shipped to Marshall Space Flight Center where a special calibration facility had been built. This facility had a 300-m long beam tube, to give low beam divergence, followed by a large instrument chamber of diameter 7 m and length 13 m (see Figure \\ref{fig:einsteinXRCF}). ",
"labels": null,
"references": [
"fig:einstein",
"fig:einsteinXRCF"
]
},
{
"bbox": [
448,
592,
1056,
616
],
"block_id": 196,
"category": 1,
"page_index": 10,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[einsteinXRCF]{ \\label{fig:einsteinXRCF} The Einstein Observatory at the MSFC X-ray calibration facility}",
"labels": null,
"references": null
},
{
"bbox": [
368,
672,
1296,
936
],
"block_id": 197,
"category": 8,
"page_index": 10,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "X-ray measurements revealed that the telescope effective area agreed very well with pre-calibration predictions. Measurements of angular resolution showed a core in the point spread function that agreed well with predictions from axial figure and alignment errors. Moving out from the core, energy-dependent scattering, due to microroughness was observed at a slightly higher level than expected. Nevertheless, a half-energy width of around 8 arcsec was measured at 1.5 keV, with a FWHM core of under 4 arcsec. Measurements made in flight agreed very well with these calibration data\\cite{vanspeybroeck1979einstein}.",
"labels": null,
"references": []
},
{
"bbox": [
368,
944,
1296,
1232
],
"block_id": 198,
"category": 8,
"page_index": 10,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "Launched in November, 1978, the on-orbit performance of Einstein showed a dramatic improvement in sensitivity over previous missions. When compared with non-focusing instruments, such as the collimated proportional counters on UHURU, the improvement was about 3 orders of magnitude so that a source about one millionth the brightness of Sco-X-1 could now be detected. The net result was to open up the field of X-ray astronomy, broadening the possible research from not just studies of bright accreting binaries, but to studies of a wide range of source types from hot coronae in stars through supernova remnants to gas in clusters of galaxies and distant AGN.\n",
"labels": null,
"references": []
},
{
"bbox": [
368,
1320,
512,
1352
],
"block_id": 199,
"category": 10,
"page_index": 10,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{1980s}",
"labels": [],
"references": null
},
{
"bbox": [
368,
1408,
1304,
1768
],
"block_id": 200,
"category": 9,
"page_index": 10,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\n\\textbf{Salyut 7:} In 1981 a soft X-ray telescope, RT-4M, was launched on the Salyut 7 space station. The telescope consisted of two nested mirrors shells with a Wolter-1 geometry. The inner shell had a diameter of 13 cm and was coated with Au while the outer shell had a diameter of 24 cm and was Ni coated. Produced in Czechoslovakia, the mirrors were manufactured using a replication process in which mm-thick nickel shells were replicated on glass mandrels, coated with an electrically-conducting material, and then reinforced with a 5-15-mm-thick layer of casted resin.\\cite{Hudec1984ASR},\\cite{Hudec1986SPIE}. The resulting mirror shells had an overall length, parabolic plus hyperbolic section, of 48 cm, and focal lengths of 42 cm, providing throughput in the range from 0.1 keV - 0.25 keV for the outer shell and 0.4 keV - 1 keV for the inner one. The resulting effective area was 90 cm$^2$ at 0.15 keV and 30 cm$^2$ at 0.5 keV. An angular resolution of 10 arcmin was obtained for the outer shell and 4 arcmin \nfor the inner shell. \nRT-4M used a segmented proportional counter for a focal plane detector and this unfortunately failed within a week of launch and no science data were recorded.",
"labels": null,
"references": []
},
{
"bbox": [
368,
272,
1296,
368
],
"block_id": 201,
"category": 9,
"page_index": 11,
"previous_block": null,
"parent_block": 200,
"next_block": null,
"source_code": "\n\\textbf{Salyut 7:} In 1981 a soft X-ray telescope, RT-4M, was launched on the Salyut 7 space station. The telescope consisted of two nested mirrors shells with a Wolter-1 geometry. The inner shell had a diameter of 13 cm and was coated with Au while the outer shell had a diameter of 24 cm and was Ni coated. Produced in Czechoslovakia, the mirrors were manufactured using a replication process in which mm-thick nickel shells were replicated on glass mandrels, coated with an electrically-conducting material, and then reinforced with a 5-15-mm-thick layer of casted resin.\\cite{Hudec1984ASR},\\cite{Hudec1986SPIE}. The resulting mirror shells had an overall length, parabolic plus hyperbolic section, of 48 cm, and focal lengths of 42 cm, providing throughput in the range from 0.1 keV - 0.25 keV for the outer shell and 0.4 keV - 1 keV for the inner one. The resulting effective area was 90 cm$^2$ at 0.15 keV and 30 cm$^2$ at 0.5 keV. An angular resolution of 10 arcmin was obtained for the outer shell and 4 arcmin \nfor the inner shell. \nRT-4M used a segmented proportional counter for a focal plane detector and this unfortunately failed within a week of launch and no science data were recorded.",
"labels": null,
"references": []
},
{
"bbox": [
368,
368,
1304,
864
],
"block_id": 202,
"category": 9,
"page_index": 11,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\textbf{EXOSAT:} The first European mission featuring X-ray optics was EXOSAT which was launched in May, 1983\\cite{laine1979xray}. The optics for EXOSAT were fabricated using a novel type of replication technology. Specifically, a high-quality mandrel having the desired figure and surface roughness was fabricated from BK7 Schott glass and coated with $\\sim 90$ nm of evaporated gold. In parallel with this a high-quality mirror shell substrate was formed, identical in shape to the mandrel but approximately 30 microns larger in radius. During the replication process the substrate is brought over the mandrel and epoxy is injected between the two. When cured the shell is released through differential thermal expansion, taking the gold with it, and giving a mirror shell that replicates the high-quality figure and finish of the mandrel. For EXOSAT the mirror substrates were beryllium, 3.5 mm thick, and the resulting 2-shell mirror assemblies weighed just 7 kg, despite having an outer mirror diameter of 280 mm. The final payload consisted of two such modules with a focal length of 1.09 m giving an effective area of around 40 cm$^2$ each and a half-energy width of 10-15 arcsec, all at 0.8 keV\\cite{dekorte1981exosat}.\n",
"labels": null,
"references": []
},
{
"bbox": [
368,
872,
512,
904
],
"block_id": 203,
"category": 10,
"page_index": 11,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{1990s}",
"labels": [],
"references": null
},
{
"bbox": [
368,
952,
1296,
1280
],
"block_id": 204,
"category": 8,
"page_index": 11,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\n\\textbf{ROSAT:} The ROSAT mission was a joint German, US and British mission, proposed within the German advisory board as far back as 1975\\cite{trumper1982rosat}. It was aimed at being a follow up to the Einstein mission and its main objective was high resolution imaging in the soft X-ray band from 0.1 to 2 keV where it conducted the first comprehensive all sky survey. It was launched in June of 1990 and was only planned to be operational for 18 months but it served the Astrophysics community for over 8 years and stopped operating in February of 1999, less than a year before the CHANDRA mission was launched. ROSAT paved the way for more sensitive all sky surveys such as eROSITA on the SRG mission which has extended the energy range to 10 keV and with much higher sensitivity. ",
"labels": null,
"references": []
},
{
"bbox": [
368,
1280,
1304,
1744
],
"block_id": 205,
"category": 9,
"page_index": 11,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "The main instrument on ROSAT was a high resolution X-ray telescope with 2.4 m focal length, an inner mirror diameter of 37 cm and an outer diameter of 84 cm. It contained 4 nested shells and was built by Carl Zeiss in Germany\\cite{aschenbach1988design}. The Half Power Diameter was 5 arcsec which has only been surpassed by CHANDRA. It carried two detectors: a German position-sensitive proportional counter with a spatial resolution of 125 micron and a U.S.-provided high-resolution imager with a position resolution of 25 micron. In addition it carried a coaligned extreme XUV telescope with an associated wide field camera delivered by the UK. The energy range of this was from 0.042 keV to 0.21 keV. The X-ray telescope was a proper Wolter I geometry and the full shell mirrors were made out of highly polished Zerodur with an unprecedented micro-roughness of only 0.25 nm. A reflecting layer of Au was subsequently vacuum deposited. The net result was 420 cm$^2$ effective area at 1 keV and 470 cm$^2$ at 0.28 keV (see Figure \\ref{fig:rosat}). The mass of the telescope and the focal plane detectors was 1.3 ton.\nState of the art pointing provided 6 arcsec post facto attitude determination. The mission\\cite{aschenbach1991first} resulted in a catalog of more than 150000 sources from the six month all sky survey.",
"labels": null,
"references": [
"fig:rosat"
]
},
{
"bbox": [
368,
272,
1296,
336
],
"block_id": 206,
"category": 9,
"page_index": 12,
"previous_block": null,
"parent_block": 205,
"next_block": null,
"source_code": "The main instrument on ROSAT was a high resolution X-ray telescope with 2.4 m focal length, an inner mirror diameter of 37 cm and an outer diameter of 84 cm. It contained 4 nested shells and was built by Carl Zeiss in Germany\\cite{aschenbach1988design}. The Half Power Diameter was 5 arcsec which has only been surpassed by CHANDRA. It carried two detectors: a German position-sensitive proportional counter with a spatial resolution of 125 micron and a U.S.-provided high-resolution imager with a position resolution of 25 micron. In addition it carried a coaligned extreme XUV telescope with an associated wide field camera delivered by the UK. The energy range of this was from 0.042 keV to 0.21 keV. The X-ray telescope was a proper Wolter I geometry and the full shell mirrors were made out of highly polished Zerodur with an unprecedented micro-roughness of only 0.25 nm. A reflecting layer of Au was subsequently vacuum deposited. The net result was 420 cm$^2$ effective area at 1 keV and 470 cm$^2$ at 0.28 keV (see Figure \\ref{fig:rosat}). The mass of the telescope and the focal plane detectors was 1.3 ton.\nState of the art pointing provided 6 arcsec post facto attitude determination. The mission\\cite{aschenbach1991first} resulted in a catalog of more than 150000 sources from the six month all sky survey.",
"labels": null,
"references": [
"fig:rosat"
]
},
{
"bbox": [
448,
432,
680,
464
],
"block_id": 207,
"category": 1,
"page_index": 12,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[rosat]{ \\label{fig:rosat} Rosat mirror integration}",
"labels": null,
"references": null
},
{
"bbox": [
368,
520,
1296,
848
],
"block_id": 208,
"category": 8,
"page_index": 12,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\textbf{BBXRT:} At small graze angles, the hyperbola and parabola of the Wolter-1 optical prescription can be replaced by straight conic sections with acceptable imaging performance. These sections can be fabricated from thin bent aluminum-foil reflectors, which can be densely packed to give a very lightweight X-ray optic with high throughput. The fabrication of such foil optics is greatly simplified by the fact that each mirror segment can be made from the same annulus, with only the length changing for different radii\\cite{petre1985conical}. This means that the reflectors can be mass produced at very low cost. A precision-machined series of alignment/support bars hold the reflectors in place, with just enough free play to allow easy insertion of the foils. Very high packing fractions are possible for optimum on-axis performance.",
"labels": null,
"references": []
},
{
"bbox": [
368,
848,
1296,
1312
],
"block_id": 209,
"category": 9,
"page_index": 12,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "The first foil mirror to fly was the SXS payload designed to look for X-ray emission from Supernova 1987A. This mirror had 68 concentrically nested mirror shells formed from 544 segments and was launched on a rocket in 1988. Issues with the pointing system prevented it from seeing the supernova, but it was followed by the Broad Band X-Ray Telescope which flew on the shuttle in December 1990\\cite{petre2010xray}.\nThe BBXRT payload featured 2 identical mirror modules of 3.8 m focal length each with a pixelated silicon detector at its focus. The mirror modules each had 118 nested shells formed from nearly 1000 reflectors of 125 \u00b5m-thick aluminum. Each reflector was dipped in acrylic lacquer to provide a 10-\u00b5m-thick smooth layer which was then overcoated with 50 nm of evaporated gold to provide response up to 12 keV\\cite{serlemitsos1985broad}. The use of the ultra-thin foils resulted in extremely light-weight optical assemblies, with the BBXRT mirror modules weighing just 20 kg each, despite having an effective area of nearly 300 cm$^2$ at 1 keV. On-orbit angular resolution was measured to be around 3 arcmin half-energy width.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1312,
1296,
1376
],
"block_id": 210,
"category": 8,
"page_index": 12,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "BBXRT was flown as part of the Astro-1 payload aboard the space shuttle and successfully observed 85 different targets over the 9-day mission.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1376,
1296,
1648
],
"block_id": 211,
"category": 8,
"page_index": 12,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\textbf{ASCA:} The ASCA mission was the first satellite mission to make use of the thin-foil X-ray technology, already flown BBXRT. It was also the first mission to make use of CCD detectors enabling high resolution broad band spectroscopic imaging of celestial X-ray sources for the first time. In this regard it was the perfect complementary match to the ROSAT mission at the time. ASCA was launched in February 1993 and stopped operating July 2000. It carried 4 X-ray telescopes \u2013 two of which had gas detectors at the focal plane and two had CCD cameras. The mission was a collaboration between Japan and the US.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1648,
1304,
1776
],
"block_id": 212,
"category": 9,
"page_index": 12,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "The four ASCA X-ray telescopes were supplied by Goddard Spaceflight Center and as with BBXRT were conical approximations to a Wolter I geometry. The reflectors were made of thin Al foils \u2013 127 micron in thickness and were dip-lacquered to smooth short-length-scale roughness up to $\\sim100$ micron\\cite{serlemitsos1985conical}. The thickness of the lacquer was 10-20 microns and a 50 nm film of Au was evaporated on top as the reflecting layer. The resulting mirror shells were tightly nested from an inner diameter of 100 mm to an outer diameter of 345 mm. Each telescope had 120 nested shells and a focal length of 3.5 m (see Figure \\ref{fig:asca}).",
"labels": null,
"references": [
"fig:asca"
]
},
{
"bbox": [
368,
272,
1296,
400
],
"block_id": 213,
"category": 9,
"page_index": 13,
"previous_block": null,
"parent_block": 212,
"next_block": null,
"source_code": "The four ASCA X-ray telescopes were supplied by Goddard Spaceflight Center and as with BBXRT were conical approximations to a Wolter I geometry. The reflectors were made of thin Al foils \u2013 127 micron in thickness and were dip-lacquered to smooth short-length-scale roughness up to $\\sim100$ micron\\cite{serlemitsos1985conical}. The thickness of the lacquer was 10-20 microns and a 50 nm film of Au was evaporated on top as the reflecting layer. The resulting mirror shells were tightly nested from an inner diameter of 100 mm to an outer diameter of 345 mm. Each telescope had 120 nested shells and a focal length of 3.5 m (see Figure \\ref{fig:asca}).",
"labels": null,
"references": [
"fig:asca"
]
},
{
"bbox": [
368,
400,
1296,
672
],
"block_id": 214,
"category": 9,
"page_index": 13,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "ASCA was launched in stowed configuration and extended after launch to achieve the 3.5 m focal length. The energy range extended up to 12 keV, the effective area was 1200 cm$^2$ at 1 keV and 600 cm$^2$ at 7 keV and the Field of View was 24 arcmin at 1 keV and 16 arcmin at 7 keV. An angular resolution of 2.9 arcmin was achieved, mainly limited by mm scale residual figure error of the rolled Al foils and the accuracy of mounting individual reflectors using the alignment bars\\cite{serlemitsos1995xray}. The total mass of all 4 telescopes was just under 40 kg. Table \\ref{tab:asca} details the ASCA mirror parameters.",
"labels": null,
"references": [
"tab:asca"
]
},
{
"bbox": [
448,
768,
984,
792
],
"block_id": 215,
"category": 1,
"page_index": 13,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[asca]{ \\label{fig:asca} A segment of the ASCA optic with 120 nested foil shells}",
"labels": null,
"references": null
},
{
"bbox": [
456,
904,
696,
936
],
"block_id": 216,
"category": 1,
"page_index": 13,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption{ASCA mirror parameters}",
"labels": null,
"references": null
},
{
"bbox": [
560,
944,
1104,
1256
],
"block_id": 217,
"category": 7,
"page_index": 13,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\begin{tabular}{l|l}\nParameter & Value \\\\\n \\hline\n \\hline\n Number of telescopes & 4 \\\\\n Number of nested segments & 120 \\\\\n Focal length & 3.44 m\\\\\n Intersection diameters & 0.34 - 0.58 m \\\\\n Graze angles & 42 - 72 arcminutes \\\\\n Segment length & 0.51 m \\\\\n Material & Aluminum \\\\\n Coating & Acrylic-adhered gold \\\\\n Effective area & 1300 / 600 cm$^2$ at 1 / 7 keV \\\\\n Angular resolution (HEW) & 2.9 arcmin \\\\\n \\end{tabular}",
"labels": null,
"references": null
},
{
"bbox": [
368,
1312,
1296,
1616
],
"block_id": 218,
"category": 9,
"page_index": 13,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\textbf{Beppo-SAX:} was an Italian-Dutch mission launched in 1996 and deactivated 2002. It carried 4 focusing telescopes with a focal length of 1.85 m and a useful energy response from 0.1-10 keV. In addition, it carried coded mask instruments with response up to 300 keV. The optics of choice was thin (0.2 \u2013 0.4 mm) electroformed Ni shells in a conical approximation to a Wolter I optic with thirty shells in each telescope\\cite{citterio1986optics}. A moderate resolution of 1 arcmin was required dictated by the resolution of the focal plane detectors. The combined effective area at 7 keV was 175 cm$^2$. Beppo-SAX played a significant role in resolving the origin of gamma-ray bursts\\cite{piro2013beppo}.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1616,
1296,
1776
],
"block_id": 219,
"category": 9,
"page_index": 13,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\textbf{Chandra (AXAF):} The foundations for Chandra were laid in a proposal\\cite{giacconi1963experimental}, \u2018An experimental Program in X-Ray Astronomy\u2019, led by Riccardo Giacconi and submitted to NASA in 1963 shortly after the original discovery of Sco-X-1 and the X-ray background. In this proposal a seven-phase program was described, starting with additional rocket flights and culminating with a 10-m-focal length observatory with a 1.2-m-diameter X-ray optical system\\cite{giacconi2008secrets}. In 1976, an unsolicited proposal was submitted to NASA, again with Riccardo Giacconi as the Principal Investigator, to study this large X-ray telescope which would have sub-arcsecond angular resolution, very high sensitivity by virtues of an effective area greater than 1000 cm$^2$, and a planned lifetime of order 10 years. Even though the Einstein observatory was yet to be launched (see section \\ref{1970s}) , NASA approved the study and gave the Management role of what was then named the Advanced X-ray Astrophysics Facility (AXAF) to the Marshall Space Flight Center with the Smithsonian Astrophysical Observatory (SAO) providing scientific and technical support\\cite{tananbaum2019chandra}.",
"labels": null,
"references": [
"1970s"
]
},
{
"bbox": [
368,
272,
1296,
568
],
"block_id": 220,
"category": 9,
"page_index": 14,
"previous_block": null,
"parent_block": 219,
"next_block": null,
"source_code": "\\textbf{Chandra (AXAF):} The foundations for Chandra were laid in a proposal\\cite{giacconi1963experimental}, \u2018An experimental Program in X-Ray Astronomy\u2019, led by Riccardo Giacconi and submitted to NASA in 1963 shortly after the original discovery of Sco-X-1 and the X-ray background. In this proposal a seven-phase program was described, starting with additional rocket flights and culminating with a 10-m-focal length observatory with a 1.2-m-diameter X-ray optical system\\cite{giacconi2008secrets}. In 1976, an unsolicited proposal was submitted to NASA, again with Riccardo Giacconi as the Principal Investigator, to study this large X-ray telescope which would have sub-arcsecond angular resolution, very high sensitivity by virtues of an effective area greater than 1000 cm$^2$, and a planned lifetime of order 10 years. Even though the Einstein observatory was yet to be launched (see section \\ref{1970s}) , NASA approved the study and gave the Management role of what was then named the Advanced X-ray Astrophysics Facility (AXAF) to the Marshall Space Flight Center with the Smithsonian Astrophysical Observatory (SAO) providing scientific and technical support\\cite{tananbaum2019chandra}.",
"labels": null,
"references": [
"1970s"
]
},
{
"bbox": [
368,
568,
1304,
1296
],
"block_id": 221,
"category": 8,
"page_index": 14,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "The 1980\u2019s saw a period of technical studies, the most important of these involved the development of the X-ray mirrors. As part of this a Technical Mirror Assembly (TMA) was built to demonstrate that the required angular resolution and overall imaging performance, an order of magnitude better than achieved with Einstein, could be met. The TMA was a 2/3-size replica of the innermost pair of the then baseline design for AXAF, with a diameter of 0.4 m and a focal length of 6 m, which could be X-ray tested in the existing facility at MSFC. Several commercial manufacturers were funded to provide the TMA, but in the end only Perkin-Elmer succeeded, delivering an optic that satisfied AXAF requirements with 90\\% encircled energy measure within a radius of 1 arc second.\nAlthough the TMA was a success and AXAF had been rated as the top priority by the 1980 astrophysics decadal survey, there were still many hurdles to overcome. NASA submitted a request for a formal start to the program for 1989, but was turned down by the office of management and budget. Finally, due in part to lingering concerns with Hubble Space Telescope Optics, funds were given to demonstrate that, within 3 years, the largest mirror pair (of 6 nested pairs in the then baseline design) could be built and would meet specifications as demonstrated through X-ray testing. This fabrication work would be carried out by Hughes Danbury who now owned the optics division of Perkin Elmer that had manufactured the TMA. In parallel with the mirror work, the X-ray calibration facility at MSFC was expanded to accommodate the 10 m AXAF focal length, both through extension of the vacuum beamline to over 500 m and through an expansion of the instrument chamber.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1304,
1296,
1528
],
"block_id": 222,
"category": 8,
"page_index": 14,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "Thus, a Verification Engineering Test Article was fabricated to develop and test the technology for optics fabrication and, equally important, to develop the necessary metrology. VETA was the uncoated outermost parabolic/hyperbolic shell and was measured at the newly upgraded XRCF (see Figure \\ref{fig:axafVETA}). After correcting for gravitational distortions, the mirror was found to have an angular resolution of \u00bc arcsec (Full Width at Half Maximum) and a half-power diameter of under 1 arcsec, meeting project requirements\\cite{weisskopf1993axaf}.",
"labels": null,
"references": [
"fig:axafVETA"
]
},
{
"bbox": [
456,
1624,
1216,
1656
],
"block_id": 223,
"category": 1,
"page_index": 14,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[axafVETA]{ \\label{fig:axafVETA} The AXAF Verification Engineering Test Article (VETA) being tested at MSFC}",
"labels": null,
"references": null
},
{
"bbox": [
368,
1712,
1304,
1776
],
"block_id": 224,
"category": 9,
"page_index": 14,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "A final major hurdle remained before flight hardware would be built. In 1992 it became evident that the new NASA budget could not support the projected costs of AXAF and that it would need to be descoped or cancelled. After more months of study AXAF was split into 2 missions - an imaging mission with a reduced number of high-resolution X-ray optics, two imaging instruments, plus gratings (AXAF-I) and a spectroscopic mission with poorer angular resolution ($\\sim 1$ arcminute) and an X-ray calorimeter (AXAF-S). About a year later the AXAF-S mission was cancelled.",
"labels": null,
"references": []
},
{
"bbox": [
368,
272,
1304,
464
],
"block_id": 225,
"category": 9,
"page_index": 15,
"previous_block": null,
"parent_block": 224,
"next_block": null,
"source_code": "A final major hurdle remained before flight hardware would be built. In 1992 it became evident that the new NASA budget could not support the projected costs of AXAF and that it would need to be descoped or cancelled. After more months of study AXAF was split into 2 missions - an imaging mission with a reduced number of high-resolution X-ray optics, two imaging instruments, plus gratings (AXAF-I) and a spectroscopic mission with poorer angular resolution ($\\sim 1$ arcminute) and an X-ray calorimeter (AXAF-S). About a year later the AXAF-S mission was cancelled.",
"labels": null,
"references": []
},
{
"bbox": [
368,
472,
1304,
736
],
"block_id": 226,
"category": 8,
"page_index": 15,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "A final round of studies came up with the current (Chandra) configuration for AXAF, with four nested pairs of mirrors. A decision was made to place AXAF in a highly-elliptical, high-earth orbit, which somewhat compensated for the loss of collecting area (going from 6 mirror pairs to 4) by giving much higher viewing efficiencies. The high-earth orbit also meant that a longer lifetime could be expected without the continual day/night thermal-stress-inducing transition of low-earth orbit. Finally, in 1992, the project could complete the design and start fabricating the AXAF Observatory.",
"labels": null,
"references": []
},
{
"bbox": [
368,
736,
1296,
800
],
"block_id": 227,
"category": 8,
"page_index": 15,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "The final flight mirror configuration consists of 4 nested parabolic hyperbolic pairs with parameters given in Table \\ref{tab:chandra}.",
"labels": null,
"references": [
"tab:chandra"
]
},
{
"bbox": [
456,
864,
880,
888
],
"block_id": 228,
"category": 1,
"page_index": 15,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption{AXAF (Chandra) flight mirror configuration}",
"labels": null,
"references": null
},
{
"bbox": [
584,
896,
1088,
1216
],
"block_id": 229,
"category": 7,
"page_index": 15,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\begin{tabular}{l|l}\nParameter & Value \\\\\n \\hline\n \\hline\n Number of nested segments & 4 \\\\\n Focal length & 10 m\\\\\n Intersection diameters & 0.63, 0.85, 0.97, 1.2 m \\\\\n Graze angles & 27 37 42 52 arcminutes \\\\\n Segment length & 0.85 m \\\\\n Wall Thickness & 16 - 24 mm \\\\\n Material & Zerodur \\\\\n Coating & Iriduim, 10 nm \\\\\n Effective area & 770 cm$^2$ at 1 keV \\\\\n Angular resolution (HEW) & 0.5 arcsec \\\\\n \\end{tabular}",
"labels": null,
"references": null
},
{
"bbox": [
368,
1272,
1296,
1768
],
"block_id": 230,
"category": 8,
"page_index": 15,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "The four flight mirror pairs went through identical fabrication phases which consisted of coarse and fine grinding (see Figure \\ref{fig:chandraGrinding}), followed by polishing and then a final smoothing run. Typically, these were carried out with computer-controlled small tools and an iterative process where metrology was taken, compared with requirement and a hit map produced showing where and how much material to remove in the next run. The process would converge and then move to the next fabrication phase. Metrology equipment, both contact and non-contact was used to determine axial figure errors, circularity and surface roughness. Figure measurements were performed in temperature-controlled environments with the optic oriented vertically to prevent gravitational sag. Typically, there were four grinding and four polishing cycles carried out for each element. The final surface smoothing was carried out with a large lap to avoid disturbing the mirror axial figure profile. A surface roughness over the central 90\\% of all optical elements was in the range 0.19 \u2013 0.35 nm over the micron to mm spatial scale\\cite{weisskopf2012chandra}, a very low number that ensures that a large amount of flux remains within the core of the mirror\u2019s point spread function.",
"labels": null,
"references": [
"fig:chandraGrinding"
]
},
{
"bbox": [
456,
312,
968,
336
],
"block_id": 231,
"category": 1,
"page_index": 16,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[chandraGrinding]{ \\label{fig:chandraGrinding} One of the AXAF paraboloid mirrors during grinding}",
"labels": null,
"references": null
},
{
"bbox": [
368,
400,
1296,
600
],
"block_id": 232,
"category": 8,
"page_index": 16,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "Alignment and assembly of the mirror elements was carried out by Eastman Kodak Company. Each mirror was supported by flexures which were bonded near the middle of the optic. To bond the flexures the mirrors were oriented with the optical axis vertical in a near-strain-free state, positioned mechanically and monitored optically using a laser system which passed through the optic and back on itself using an auto-collimating flat (Figure \\ref{fig:chandraAlignment} shows the AXAF mirror assembly).",
"labels": null,
"references": [
"fig:chandraAlignment"
]
},
{
"bbox": [
456,
696,
760,
720
],
"block_id": 233,
"category": 1,
"page_index": 16,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[chandraAlignment]{ \\label{fig:chandraAlignment} AXAF mirror module assembly}",
"labels": null,
"references": null
},
{
"bbox": [
368,
776,
1304,
944
],
"block_id": 234,
"category": 8,
"page_index": 16,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "The mirror assembly was taken to MSFC's X-ray calibration facility in December 1996 for a full end-to-end calibration with the flight instrumentation over a 6-month period working round the clock \u2013 the most comprehensive calibration ever for an X-ray mission. These calibrations confirmed the sub-arc-sec imaging performance of the X-ray optic assembly.",
"labels": null,
"references": []
},
{
"bbox": [
368,
944,
1296,
1440
],
"block_id": 235,
"category": 8,
"page_index": 16,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "AXAF, renamed Chandra after a worldwide competition, was launched aboard the space shuttle on July 23, 1999 (see Figure \\ref{fig:chandraLaunch}). Once in low-earth orbit, and released from the shuttle, an inertial upper stage was fired to place the observatory into a highly elliptical earth orbit and then via firings from the spacecraft engines into its final orbit of 9,700 km x 139, 000 km. First light for the observatory was Aug 12, 1999 and then on Aug 19, an image of the supernova remnant CAS A revealed a wealth of detailed information included the original star, the original source of the explosion. Among its many accomplishments, Chandra has since observed X-ray emission from all classes of normal stars, provided evidence for feedback mechanism between supermassive black holes and their surrounds that modulates their X-ray emission and, working in concert with optical observatories, has provided compelling evidence for the existence of dark matter, which makes up nearly 30\\% of the mass of the Universe. After 22 years of operation, Chandra continues to provide groundbreaking science coupling very high sensitivity (10 orders of magnitude dynamic range) with unprecedented angular resolution.",
"labels": null,
"references": [
"fig:chandraLaunch"
]
},
{
"bbox": [
456,
1536,
928,
1560
],
"block_id": 236,
"category": 1,
"page_index": 16,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[chandraLaunch]{ \\label{fig:chandraLaunch} The Chandra Observatory in the shuttle cargo bay}",
"labels": null,
"references": null
},
{
"bbox": [
368,
1616,
1296,
1776
],
"block_id": 237,
"category": 8,
"page_index": 16,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\textbf{XMM/NEWTON:} Europe\u2019s first dedicated X-ray astronomy mission EXOSAT (see section \\ref{1980s}) was the ESA equivalent of NASA\u2019s Einstein mission and it carried two low energy X-ray telescopes (\\cite{lumb2012xmm}). It was operational for 3 years from 1983 to 1986 and made nearly 2000 observations. Already before its launch it was clear that a much more ambitious spectroscopy mission in the X-ray energy range held great scientific promise. An ambitious mission proposal was formulated at this stage\\cite{jansen2001xmm} and underwent significant design changes over the next 5-year period. The mission was initially called the XMM (X-ray Multimirror Mission) and was aptly called so as the first mission design called for 12 low energy telescopes and 7 high energy telescopes. The mission became the second corner stone mission of the Horizon 2000 program. It is to date the largest scientific mission built in Europe. The first set of comprehensive mission objectives was presented at a meeting in Denmark in 1985. Over the next 2 years the telescope working group reduced the number of telescopes to 7 units which eventually became 3 telescopes operating at a focal length of 7.5 meters and covering the energy range from 0.1 to 12 keV with an unprecedented effective area and wide field of view. The complete set of instruments was selected by 1989. With a focus on spectroscopy and large effective area the required imaging resolution was around 15 arcsec\\cite{aschenbach2000imaging}. This would be the perfect complementary match to the CHANDRA mission being defined at same time, which ultimately would emphasize sub-arcsecond imaging. ",
"labels": null,
"references": [
"1980s"
]
},
{
"bbox": [
368,
272,
1296,
768
],
"block_id": 238,
"category": 8,
"page_index": 17,
"previous_block": null,
"parent_block": 237,
"next_block": null,
"source_code": "\\textbf{XMM/NEWTON:} Europe\u2019s first dedicated X-ray astronomy mission EXOSAT (see section \\ref{1980s}) was the ESA equivalent of NASA\u2019s Einstein mission and it carried two low energy X-ray telescopes (\\cite{lumb2012xmm}). It was operational for 3 years from 1983 to 1986 and made nearly 2000 observations. Already before its launch it was clear that a much more ambitious spectroscopy mission in the X-ray energy range held great scientific promise. An ambitious mission proposal was formulated at this stage\\cite{jansen2001xmm} and underwent significant design changes over the next 5-year period. The mission was initially called the XMM (X-ray Multimirror Mission) and was aptly called so as the first mission design called for 12 low energy telescopes and 7 high energy telescopes. The mission became the second corner stone mission of the Horizon 2000 program. It is to date the largest scientific mission built in Europe. The first set of comprehensive mission objectives was presented at a meeting in Denmark in 1985. Over the next 2 years the telescope working group reduced the number of telescopes to 7 units which eventually became 3 telescopes operating at a focal length of 7.5 meters and covering the energy range from 0.1 to 12 keV with an unprecedented effective area and wide field of view. The complete set of instruments was selected by 1989. With a focus on spectroscopy and large effective area the required imaging resolution was around 15 arcsec\\cite{aschenbach2000imaging}. This would be the perfect complementary match to the CHANDRA mission being defined at same time, which ultimately would emphasize sub-arcsecond imaging. ",
"labels": null,
"references": [
"1980s"
]
},
{
"bbox": [
368,
768,
1296,
1296
],
"block_id": 239,
"category": 9,
"page_index": 17,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "Realizing XMM/Newton goals was however no trivial task. It was clear that a highly nested set of mirrors was required to reach the effective area requirements and the solution that was eventually implemented was full revolution replicated nickel shells. Each telescope consists of 58 cylindrical, nested Wolter-1-type mirrors (see Figure \\ref{fig:xmm}) developed by Media Lario of Italy, each 600 mm long and ranging in diameter from 306 to 700 mm , producing a total collecting area of 4,425 cm$^2$ at 1.5 keV and 1,740 cm$^2$ at 8 keV\\cite{gondoin1998calibration}. The mirrors range from 0.47 mm thick for the innermost mirror to 1.07 mm thick for the outermost. Each mirror was built by vapour-depositing a 250 nm layer of gold reflecting surface onto a highly polished aluminium mandrel, followed by electroforming a monolithic nickel shell onto the gold. The finished mirrors were glued into the grooves of an inconel spider, which keeps them aligned to within the five-micron tolerance required to achieve adequate angular resolution. The shells were only held at one end to avoid distortion from eventual over-constraining. The mandrels were manufactured by Carl Zeiss AG, and the electroforming and final assembly were performed by Media Lario with contributions from Kayser Threde\\cite{dechambure1997}.",
"labels": null,
"references": [
"fig:xmm"
]
},
{
"bbox": [
368,
1304,
1296,
1568
],
"block_id": 240,
"category": 8,
"page_index": 17,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "The construction started in 1995 and the three telescopes were completed in December of 1998 and subsequently underwent calibration. The telescope modules are only supported at one to avoid distortions so special care needed to be taken during calibration. Calibration took place at the Panter long beam facility in Munich\\cite{gondoin1998calibration} and additional calibration data was taken at a special vertical beam facility that was constructed for this purpose\\cite{tock1997calibration}. The on ground and eventual on-orbit calibration was in very good agreement. The telescope performance parameters resulting from the calibration are given below. ",
"labels": null,
"references": []
},
{
"bbox": [
456,
1664,
1048,
1688
],
"block_id": 243,
"category": 1,
"page_index": 17,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[xmm]{ \\label{fig:xmm} An XMM/Newton mirror module with 58 nested nickel shells}",
"labels": null,
"references": null
},
{
"bbox": [
456,
272,
800,
304
],
"block_id": 241,
"category": 1,
"page_index": 18,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption{XMM/Newton telescope parameters}",
"labels": null,
"references": null
},
{
"bbox": [
592,
304,
1072,
624
],
"block_id": 242,
"category": 7,
"page_index": 18,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\begin{tabular}{l|l}\nParameter & Value \\\\\n \\hline\n \\hline\n Telescopes & 3 \\\\\n Number of shells & 58 \\\\\n Focal length & 7.5 m\\\\\n Intersection diameters & 0.34 - 0.70 m \\\\\n Graze angles & 42 - 72 arcminutes \\\\\nSegment length & 0.51 m \\\\\n Material & Nickel \\\\\n Coating & Gold \\\\\n Effective area & 4400 cm$^2$ at 1.5 keV \\\\\n Angular resolution (HEW) & 15 arcsec at 0.28 keV \\\\\n \\end{tabular}",
"labels": null,
"references": null
},
{
"bbox": [
368,
696,
1296,
992
],
"block_id": 244,
"category": 9,
"page_index": 18,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "The focal plane detectors were wide-field-of-view CCD detectors covering the field of view of 30 arcmin and moderate energy resolution of $E/\\Delta E$ of 20-50. In addition two of the telescopes are combined with a reflection grating spectrometer providing high-resolution spectroscopy. The grating array is placed between the telescope and the focal plane and deflects 40\\% of the focused beam (see Figure \\ref{fig:xmmGrating}). The energy range of the reflection grating array is 0.35 keV \u2013 2.5 keV covering the K shell lines of Oxygen, Neon, Magnesium, Aluminium and Silicon as well as the L lines of Iron. The mission also carried an optical monitor providing simultaneous optical/UV observations of the X-ray field.",
"labels": null,
"references": [
"fig:xmmGrating"
]
},
{
"bbox": [
456,
1088,
912,
1120
],
"block_id": 245,
"category": 1,
"page_index": 18,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[xmmGrating]{ \\label{fig:xmmGrating} XMM/Newton diffraction grating configuration}",
"labels": null,
"references": null
},
{
"bbox": [
368,
1168,
1296,
1304
],
"block_id": 246,
"category": 8,
"page_index": 18,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "XMM was ready for launch in September of 1999 at which time the mission got its official name XMM-Newton. The launch was on an ARIANE V rocket which placed the mission in a highly elliptical orbit with an inclination angle close to 40 degrees.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1304,
1304,
1632
],
"block_id": 247,
"category": 8,
"page_index": 18,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "XMM-Newton's superior effective area allows for spectroscopic studies of fainter sources compared to Chandra. This has led to significant contributions in all areas of high-energy astronomy from solar system objects to some of the most distant super-massive black holes.Some highlights include: spectra of tidal disruption events showing gas flows from disrupted stars near to the center of supermassive black holes;studies of the dynamic behavior of the inner accretion disk and corona showing the fundamental interaction between radiation and matter at the heart of quasars using reverberation mapping technique and; evidence that a large fraction of the missing baryons reside in filaments of the cosmic web observed at the outskirts of massive clusters of galaxies.",
"labels": null,
"references": []
},
{
"bbox": [
368,
264,
512,
296
],
"block_id": 248,
"category": 10,
"page_index": 19,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{2000s}",
"labels": [],
"references": null
},
{
"bbox": [
368,
344,
1312,
680
],
"block_id": 249,
"category": 9,
"page_index": 19,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\n\\textbf{SWIFT:} The Neil Gehrels Swift Observatory, a NASA mid-size explorer launched in November 2004, carried a suite of instruments to explore gamma-ray burst. Among these was the Swift X-Ray Telescope (XRT)\\cite{burrows2000swift} which was designed to measure the fluxes, spectra and light curves from the burst, including their afterglow phase. The XRT has a single mirror module, of 3.5 m focal length, comprised of 12 concentrically-nested mirror shells that were fabricated using the electroformed-nickel replication process. The shells range in diameter from 191 mm - 300 mm and give a total effective area of 120 cm$^2$ at 1.5 keV and an angular resolution of 15 arcsec HPD. The XRT mirror module is one of two originally fabricated for the JET-X telescope that was to fly on the later-cancelled Spectrum-X mission\\cite{citterio1996characteristics}.",
"labels": null,
"references": []
},
{
"bbox": [
368,
680,
1304,
1440
],
"block_id": 250,
"category": 9,
"page_index": 19,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\textbf{SUZAKU:} The SUZAKU (formerly ASTRO-E2) mission was the follow up to The ASCA mission and like ASCA is a joint Japanese-US mission\\cite{mitsuda2007x}. It was operational from 2005 to 2015 and carried five X-ray telescopes, four of which were dedicated to imaging and one dedicated to spectroscopy. The focal length, facilitated by an extendible bench, was 4.75 m for the imaging telescopes and 4.5 m for the spectroscopy telescope. The telescopes were conical approximations to a Wolter I geometry and based on thin segmented Al foils as was the case for ASCA but instead of smoothing the Al surface with a lacquer coating a novel replication technique was used where Au (thickness $\\sim 1000 \\AA$ ) was sputtered on a smooth glass mandrel and, via epoxy, replicated to the mirror foils. The inherent large-scale figure error of the glass mandrel and the accuracy of mounting of individual mirror segments limited an energy independent angular resolution to 2 arcmin\\cite{serlemitsos2007x}. This was, however, a significant improvement over the ASCA mission optics. The energy independence of the imaging resolution is testament to the much smoother short length scale (less than $\\sim50$ micron) roughness of the reflecting surface as opposed to the ASCA mission where an increased half power diameter with energy was observed due the short length scale roughness. The useful effective area range extended from 0.2 keV - 12 keV and was 450 cm$^2$ at 1.5 keV and 250 cm$^2$ at 7 keV. The science instruments at the focal plane were CCD cameras with a field of view of 20 arcmin for the imaging telescopes. The mission was the first to launch a high-resolution micro calorimeter at the focus of the spectroscopy telescope. It also carried collimated detector sensitive to 600 keV. Unfortunately, the micro calorimeter failed due to loss of cryogen before routine operations was possible.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1448,
512,
1480
],
"block_id": 251,
"category": 10,
"page_index": 19,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{2010s}",
"labels": [],
"references": null
},
{
"bbox": [
368,
1528,
1296,
1760
],
"block_id": 252,
"category": 8,
"page_index": 19,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\n\\textbf{NuSTAR:} One of the remaining frontiers of high energy Astrophysics in the post Chandra/XMM era was to extend the energy band of focusing optics into the hard X-ray region previously only observed with non- focusing coded mask instruments suffering from high background and poor sensitivity. Several balloon mission campaigns InFocus\\cite{berendse2003production}, HERO\\cite{ramsey2002hero} and HEFT\\cite{harrison2000development} were eventually realized to demonstrate the capability of doing this. In the case of HEFT, a novel approach to high throughput optics with moderate resolution was the development of inherently smooth thermally formed glass substrates and a novel method of mounting these in a tightly nested geometry using graphite spacers precisely machined and epoxied between adjacent shells\\cite{hailey1997substrates}. The mirrors was coated with novel designs of graded d-spacing W/Si and Pt/C multilayer coatings\\cite{christensen2011coatings}. These enabled the reflection of hard X-rays at larger graze angles than could be achieved with simple metal coatings thus allowing for hard X-ray telescope designs with a practical focal length of 10 m. The K absorption edge of Pt limited the upper response to 80 keV. The novel accurate mounting scheme resulted in an imaging resolution of just under 1 arcmin , the best achieved to date in a complete telescope consisting of highly segmented thin mirror shells. ",
"labels": null,
"references": []
},
{
"bbox": [
368,
272,
1304,
600
],
"block_id": 253,
"category": 8,
"page_index": 20,
"previous_block": null,
"parent_block": 252,
"next_block": null,
"source_code": "\n\\textbf{NuSTAR:} One of the remaining frontiers of high energy Astrophysics in the post Chandra/XMM era was to extend the energy band of focusing optics into the hard X-ray region previously only observed with non- focusing coded mask instruments suffering from high background and poor sensitivity. Several balloon mission campaigns InFocus\\cite{berendse2003production}, HERO\\cite{ramsey2002hero} and HEFT\\cite{harrison2000development} were eventually realized to demonstrate the capability of doing this. In the case of HEFT, a novel approach to high throughput optics with moderate resolution was the development of inherently smooth thermally formed glass substrates and a novel method of mounting these in a tightly nested geometry using graphite spacers precisely machined and epoxied between adjacent shells\\cite{hailey1997substrates}. The mirrors was coated with novel designs of graded d-spacing W/Si and Pt/C multilayer coatings\\cite{christensen2011coatings}. These enabled the reflection of hard X-rays at larger graze angles than could be achieved with simple metal coatings thus allowing for hard X-ray telescope designs with a practical focal length of 10 m. The K absorption edge of Pt limited the upper response to 80 keV. The novel accurate mounting scheme resulted in an imaging resolution of just under 1 arcmin , the best achieved to date in a complete telescope consisting of highly segmented thin mirror shells. ",
"labels": null,
"references": []
},
{
"bbox": [
368,
600,
1296,
904
],
"block_id": 254,
"category": 8,
"page_index": 20,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "Based on the HEFT balloon mission demonstrations, the NuSTAR (Nuclear Spectroscopic Telescope Array) mission concept was proposed to NASA as a SMEX mission in 2003, with Caltech as the the PI Institution. The mission also relied on independent development of an extendible boom to facilitate the 10 m focal length\\cite{craig2011fabrication}. The optical design allowed for effective areas at hard X-rays up to 80 keV similar to what was achieved for soft X-rays around 1 keV on the first focusing X-ray mission Einstein. This in turn translated to an improvement of the sensitivity of 2-3 orders of magnitude essentially opening this part of the electromagnetic spectrum to sensitive studies of narrow field of view sources. ",
"labels": null,
"references": []
},
{
"bbox": [
368,
904,
1296,
1432
],
"block_id": 255,
"category": 8,
"page_index": 20,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "NuSTAR was selected for flight in 2005. Due to budgetary constraints the mission was, however, cancelled in early 2006. In September of 2007 the mission was restarted and was launched on June 13 of 2012 on a Pegasus rocket into a near equatorial orbit as the eleventh SMEX mission. The mission baseline lifetime was two years but it is still in operation nine years after launch. NuSTAR carries two telescope modules (see Figures \\ref{fig:nustarMirror} and \\ref{fig:nustarObservatory}) that were built in the two year period from 2010-2011. In fact, 3 modules were produced. The first one was found to have significant issues with the reflecting coating (Pt/SiC). Another coating was developed (Pt/C) and the two subsequent modules met requirements and were selected for flight. The telescopes were calibrated at a custom facility at Colombia University\\cite{brejnholt2012nustar}. The effective areas match very closely those of XMM-Newton at ~ 10 keV and thus lends itself to simultaneous observations with XMM- Newton and NuSTAR. The in-flight calibration of the two telescopes imaging and effective area performance confirmed the results of the on ground calibration apart from a small asymmetric broadening of the core of the PSF and effective area features around the L-edges of Pt and W\\cite{madsen2015calibration}. NuSTAR telescope parameters are given in Table \\ref{tab:nustar}.",
"labels": null,
"references": [
"fig:nustarMirror",
"fig:nustarObservatory",
"tab:nustar"
]
},
{
"bbox": [
456,
1528,
1240,
1560
],
"block_id": 256,
"category": 1,
"page_index": 20,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[nustarMirror]{ \\label{fig:nustarMirror} One of NuSTAR's flight mirror assemblies with 133 shells of thin (0.21 mm) glass}",
"labels": null,
"references": null
},
{
"bbox": [
368,
1704,
1296,
1768
],
"block_id": 257,
"category": 1,
"page_index": 20,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[nustarObservatory]{ \\label{fig:nustarObservatory} Artist's rendition of NuSTAR with two telescope modules, the extended boom and the detector platform}",
"labels": null,
"references": null
},
{
"bbox": [
456,
272,
800,
304
],
"block_id": 258,
"category": 1,
"page_index": 21,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption{NuSTAR mirror module parameters}",
"labels": null,
"references": null
},
{
"bbox": [
488,
304,
1184,
656
],
"block_id": 259,
"category": 7,
"page_index": 21,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\begin{tabular}{l|l}\n Parameter & Value \\\\\n \\hline\n \\hline\n Telescopes & 2 \\\\\n Focal length & 10.15 m\\\\\n Intersection diameters & 109 - 382 mm\\\\\n Wall thickness & 0.21 mm \\\\\n Graze angles & 4.5 - 16.2 arcmin \\\\\n Segment length & 0.45 m \\\\\n Material & D263 Borosilicate glass \\\\\n Coating & W/Si and Pt/C graded d-spacing multilayers \\\\\n Mass per module & 37 kg \\\\\n Effective area & 800, 300 cm$^2$ at 10, 30 keV\\\\\n Angular resolution (HEW) & 58 arcsec \\\\\n \\end{tabular}",
"labels": null,
"references": null
},
{
"bbox": [
368,
712,
1296,
1040
],
"block_id": 260,
"category": 9,
"page_index": 21,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "The focal plane detectors for the NuSTAR mission is novel CdZnTe pixelated solid state detectors. The overall mission and the resulting science performance has been presented\\cite{harrison2013nuclear}. The mission has observed a broad range of objects. Some of the most significant Science high lights are the observation of the broad-band spectrum of a supermassive black hole at the center of NGC 1365 permitting a determination of the spin state of the system\\cite{risaliti2013rapidly} and the theoretical implications of how a supermassive black grows, as well as the observation of the asymmetric distribution of $^{44}$Ti emission near 80 keV in the CAS-A supernova remnant which is key to distinguishing between different models of how a supernova explosion actually occurs\\cite{grefenstette2014asymmetries}.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1040,
1296,
1304
],
"block_id": 261,
"category": 9,
"page_index": 21,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\textbf{ASTROSAT:} Astrosat, a multiwavelength observatory launched in October 2015 and still operational, was the first dedicated Indian Astronomy satellite. It carries a Soft X-ray Telescope based on thin (0.2 mm) segmented gold-coated Al foils in a nested 40 shell conical approximation to a Wolter I geometry\\cite{singh2017soft}.\nThe focal length is 2 m and the focal plane detector is a CCD with a 40 armin Field of View. This restricts the effective area to the 0.3 - 8 keV range with a maximum effective area at 1 keV of 120 cm$^2$. The imaging resolution is modest at $\\sim 5$ arcmin Half Power Radius.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1304,
1296,
1736
],
"block_id": 262,
"category": 8,
"page_index": 21,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\textbf{NICER:} The Neutron-star Interior Composition ExploreR (NICER), launched in 2017, is an instrument on the International Space Station that combines 56 X-Ray Concentrators (XRC) with a corresponding array of silicon drift detectors. Each X-ray concentrator has 24 concentrically-nested shells, raging in diameters from 30 mm to 105 mm, with a focal length of 1.085 m\\cite{okajima2016performance}. The shells are fabricated from aluminum foil that has been thermally shaped on individual aluminum forming mandrels and are full shells of revolution (minus a small gap) rather than multiple segments. A high-quality surface is subsequently achieved through an epoxy replication of the formed foils off glass mandrels. As the emphasis is on signal to noise rather than off-axis imaging, the XRCs consist of just a parabolic section rather than the combination of parabola and hyperbola. This significantly reduces mass and cost; the mass of each XRC is just 325 g. The use of heat forming means that a true parabolic shape can be imparted to the foils and this provides a significant improvement to the imaging performance (and also signal to noise) over the usual conic sections used in traditional foil optics\\cite{balsamo2016shrink}.",
"labels": null,
"references": []
},
{
"bbox": [
368,
272,
1296,
336
],
"block_id": 263,
"category": 8,
"page_index": 22,
"previous_block": null,
"parent_block": 262,
"next_block": null,
"source_code": "\\textbf{NICER:} The Neutron-star Interior Composition ExploreR (NICER), launched in 2017, is an instrument on the International Space Station that combines 56 X-Ray Concentrators (XRC) with a corresponding array of silicon drift detectors. Each X-ray concentrator has 24 concentrically-nested shells, raging in diameters from 30 mm to 105 mm, with a focal length of 1.085 m\\cite{okajima2016performance}. The shells are fabricated from aluminum foil that has been thermally shaped on individual aluminum forming mandrels and are full shells of revolution (minus a small gap) rather than multiple segments. A high-quality surface is subsequently achieved through an epoxy replication of the formed foils off glass mandrels. As the emphasis is on signal to noise rather than off-axis imaging, the XRCs consist of just a parabolic section rather than the combination of parabola and hyperbola. This significantly reduces mass and cost; the mass of each XRC is just 325 g. The use of heat forming means that a true parabolic shape can be imparted to the foils and this provides a significant improvement to the imaging performance (and also signal to noise) over the usual conic sections used in traditional foil optics\\cite{balsamo2016shrink}.",
"labels": null,
"references": []
},
{
"bbox": [
368,
336,
1296,
536
],
"block_id": 264,
"category": 8,
"page_index": 22,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\textbf{Spectrum-R\u00f6ntgen-Gamma (SRG):} is a Russian-German astrophysical mission designed to carry out an all-sky survey over the soft to medium energy X-ray range. Launched in 2019, on a 7-year mission, SRG carries two instruments\u2014the extended R\u00f6ntgen Survey with an Imaging Telescope Array (eROSITA) and the Astronomical R\u00f6ntgen Telescope (ART-XC). Each features electroformed-nickel-replicated X-ray optics.",
"labels": null,
"references": []
},
{
"bbox": [
368,
536,
1296,
800
],
"block_id": 265,
"category": 9,
"page_index": 22,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\emph{eROSITA} is a low-energy instrument ($<10$ keV) with seven mirror modules (see Figure \\ref{fig:erosita}), each with 54 gold-coated nickel mirror shells ranging in diameter from 80 mm to 356 mm. The mirror shells are significantly thinner than those for XMM-Newton: only 0.2 mm for the inner shells and up to 0.6 mm for the outer, yet very good imaging performance was achieved, with an average HEW of 16 arcsec at 8 keV over all of the flight modules. All seven mirror modules are co-aligned, giving a total on-axis effective area of over 2000 cm$^2$ at 1 keV. The system focal length is 1.6 m\\cite{predehl2016erosita}. ",
"labels": null,
"references": [
"fig:erosita"
]
},
{
"bbox": [
456,
896,
776,
920
],
"block_id": 266,
"category": 1,
"page_index": 22,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[erosita]{ \\label{fig:erosita} The mirror modules of eROSITA}",
"labels": null,
"references": null
},
{
"bbox": [
368,
984,
1296,
1480
],
"block_id": 267,
"category": 9,
"page_index": 22,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\emph{ART-XC} is a medium energy instrument (5-30 keV), which like eROSITA consists of seven co-aligned mirror modules each containing mirror shells fabricated via the electroformed nickel replication process\\cite{pavlinsky2021art-xc}. The shells in this case are fabricated from a nickel/cobalt alloy that is stronger than pure nickel. They range in size from $\\sim$50 mm to 150 mm diameter and in thickness from 0.25 to 0.33 mm, and are coated on the inside with $\\sim$10 nm of iridium. There are 28 concentrically nested shells in each module and their focal length is 2.7 m.\nThe effective area for ART-XC is approximately 65 cm$^2$ per module at 8 keV for an on-axis effective instrument area of 455 cm$^2$. The angular resolution of the ART-XC optics modules is approximately 25 arcsec HEW on axis at 8 keV\\cite{gubarev2014calibration}. However, because SRG is a scanning mission for the first 4 years, it is advantageous to improve the angular resolution off axis, where sources spend most of their time. This can be achieved by defocusing slightly the telescope, degrading the resolution on axis while improving it further out. For ART, the optics are defocused by 7 mm along the optical axis which degrades the on-axis resolution to approximately 30 arcsec HPD.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1568,
512,
1592
],
"block_id": 268,
"category": 10,
"page_index": 22,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{2020s}",
"labels": [],
"references": null
},
{
"bbox": [
368,
1648,
1296,
1776
],
"block_id": 269,
"category": 8,
"page_index": 22,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\n\\textbf{IXPE:} The Imaging X-ray Polarimetry Explorer (IXPE) is a NASA small explorer mission dedicated to x-ray polarimetry\\cite{ramsey2021imaging}. Scheduled for launch in December 2021, IXPE features 3 identical telescopes each comprised of a Mirror Module Assembly (MMA) with a polarization-sensitive imaging X-ray detector at its focus. The IXPE mirror shells are fabricated using the electroformed-nickel-replication process, although in this case the mirror shells are electroformed from a nickel-cobalt alloy which has a higher strength than the conventional pure nickel\\cite{ramsey2019ixpe}. Each IXPE mirror module is comprised of 24 concentrically nested mirror shells ranging in intersection diameter from 162 mm to 272 mm. The shells are uncoated, the bare nickel/cobalt alloy giving optimum reflection when integrated over the 2-8 keV IXPE band. Full specifications of the IXPE mirror system is given in Table \\ref{tab:ixpe}.",
"labels": null,
"references": [
"tab:ixpe"
]
},
{
"bbox": [
368,
272,
1296,
504
],
"block_id": 270,
"category": 8,
"page_index": 23,
"previous_block": null,
"parent_block": 269,
"next_block": null,
"source_code": "\n\\textbf{IXPE:} The Imaging X-ray Polarimetry Explorer (IXPE) is a NASA small explorer mission dedicated to x-ray polarimetry\\cite{ramsey2021imaging}. Scheduled for launch in December 2021, IXPE features 3 identical telescopes each comprised of a Mirror Module Assembly (MMA) with a polarization-sensitive imaging X-ray detector at its focus. The IXPE mirror shells are fabricated using the electroformed-nickel-replication process, although in this case the mirror shells are electroformed from a nickel-cobalt alloy which has a higher strength than the conventional pure nickel\\cite{ramsey2019ixpe}. Each IXPE mirror module is comprised of 24 concentrically nested mirror shells ranging in intersection diameter from 162 mm to 272 mm. The shells are uncoated, the bare nickel/cobalt alloy giving optimum reflection when integrated over the 2-8 keV IXPE band. Full specifications of the IXPE mirror system is given in Table \\ref{tab:ixpe}.",
"labels": null,
"references": [
"tab:ixpe"
]
},
{
"bbox": [
456,
560,
936,
592
],
"block_id": 271,
"category": 1,
"page_index": 23,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption{IXPE Mirror Module Assembly final specification}",
"labels": null,
"references": null
},
{
"bbox": [
480,
592,
1192,
912
],
"block_id": 272,
"category": 7,
"page_index": 23,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\begin{tabular}{l|l}\n Parameter & Value \\\\\n \\hline\n \\hline\n Number of mirror modules & 3 \\\\\n Number of shells per module & 24 \\\\\n Focal length & 4 m\\\\\n Total shell length & 600 mm \\\\\n Range of shell diameters & 162-272 mm\\\\\n Range of shell thicknesses & 0.18-0.25 mm \\\\\n Shell material & Electroformed nickel-cobalt alloy \\\\\n Effective area per module & 166 cm$^2$ (at 2.3 keV); $>175$ cm$^2$ (3-6 keV)\\\\\n Angular resolution (HEW) & $\\leq 28$ arcsec \\\\\n Module Mass & 32 kg \\\\\n \\end{tabular}",
"labels": null,
"references": null
},
{
"bbox": [
368,
968,
1296,
1232
],
"block_id": 273,
"category": 8,
"page_index": 23,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "To keep within the weight budget of the small explorer program while maximizing effective area the mirror shells are quite thin and this posed a challenge for the assembly process as it is quite easy to distort the shells during integration and bonding. The final design for the IXPE mirror modules called for the shells to be supported one end only by a rigid spider that would carry the loads to the support structure on the optical bench. A second spider on the rear of the module featured combs that were not bonded to the shells but would limit shell excursions during launch.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1232,
1312,
1600
],
"block_id": 274,
"category": 8,
"page_index": 23,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "For shell integration, an approach used for both XMM/Newton and eROSITA/SRG was adapted. In this, the individual mirror shells were suspended from 9 support wires, 6 serving as mass off-loaders and 3 adjustable via piezo electric actuators. With the shells floating in grooves of combs bonded to the front support spider the 3 actuators were adjusted under computer control to optimize the centering and alignment of each mirror shell as measured by a set of proximity sensors that monitor radial displacements of the outside of the shell. When the performance is optimized a low-shrinkage epoxy is injected into the comb slots and the assembly is left to cure overnight\\cite{bongiorno2021assembly}. Figure \\ref{fig:ixpe} shows an outer shell being bonded on the IXPE assembly station, one of four stations built for the IXPE program to assemble three flight and one spare mirror module in parallel.",
"labels": null,
"references": [
"fig:ixpe"
]
},
{
"bbox": [
456,
1696,
856,
1720
],
"block_id": 275,
"category": 1,
"page_index": 23,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[ixpe]{ \\label{fig:ixpe} An IXPE mirror module assembly station}",
"labels": null,
"references": null
},
{
"bbox": [
368,
272,
1304,
536
],
"block_id": 276,
"category": 8,
"page_index": 24,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "When completed the three flight mirror modules were calibrated in the Marshall Space Flight Center 100-m test facility, giving the effective area and angular resolution reported in Table \\ref{tab:ixpe}. Factoring in the spatial resolution of the gas-filled focal plane detectors and spacecraft aspect uncertainty, the final system-level angular resolution for IXPE was 28 arcsec HEW, averaged over the 3 mirror modules, meeting requirements. The IXPE mission will be a pathfinder for the new field of X-ray polarimetry, and in its 2-year baseline mission will look at representative examples of many classes of X-ray sources in year 1 with detailed follow-on studies in year 2.",
"labels": null,
"references": [
"tab:ixpe"
]
},
{
"bbox": [
368,
536,
1304,
992
],
"block_id": 277,
"category": 9,
"page_index": 24,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\textbf{XRISM:} The X-Ray Imaging and Spectroscopy Mission (XRISM) is a follow-on the to the Hitomi mission that ended prematurely. Due to launch in 2022, XRISM will feature two telescopes - one a wide field imager with an array of CCDs and the other a narrow-field imager with an array of microcalorimeters that will deliver imaging spectroscopy over a 0.3-12 keV energy band with a resolution of less than 7 eV at 6 keV. The X-ray mirror assemblies for XRISM are essentially direct copies of those used in Hitomi, but with slight modifications in the foil replication process for the larger diameter reflectors to improve angular resolution\\cite{okajima2020development}. Each of the two identical mirror modules will contain 203 nested shells made from heat-formed aluminum foils of thickness varying from 150 \u00b5m to 300 \u00b5m. To get the desired surface roughness the formed foils go through an epoxy replication process (10 $\\mu$m of epoxy) off gold-sputtered Pyrex mandrels\\cite{soong2014astro-h}. The XRISM mirror modules have a focal length of 5.6 m and a measured per-module effective area of nearly 600 cm$^2$ at 1.5 keV and 370 cm$^2$ at 8 keV.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1000,
1296,
1656
],
"block_id": 278,
"category": 9,
"page_index": 24,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\textbf{eXTP:} The enhanced X-ray Timing and Polarimetry mission (eXTP), is a flagship X-ray astronomy mission led by the Chinese Academy of Sciences with a substantial European contribution. Scheduled for launch in 2027, and currently in phase B, eXTP will have a suite of 4 instruments devoted to imaging, timing spectroscopy and polarimetry. Two of these instruments, the Spectroscopic Focusing Array (SFA) and the Polarimetry Focusing Array (PFA), feature grazing incidence optics. The optics for the SFA and the PFA are very similar to each other in design\\cite{basso2019eXTP}, with response from 0.5-10 keV, focal lengths of 5.25 m, and outer diameter constrained by a mirror module envelope of around 600 mm. The principal difference is in the requirement for angular resolution which is 1 arcminute for the SFA and 30 arcsec (with a goal of 15 arcsec) for the PFA. The baseline fabrication technique for all the optics is electroformed nickel replication, and the only planned difference between the SFA and PFA modules would be in the difference in shell thickness - a factor of two greater for the PFA to provide a stiffer shell for improved angular resolution. At the current stage of the design, there are expected to be around 40 mirror shells per mirror module, with the shell thickness ranging from 0.12 mm to 0.22 mm for the SFA and 0.23 mm \u2013 0.44 mm for the PFA optics. The effective area per module is expected to be greater than 820 cm$^2$ at 2 keV and greater than 550 cm$^2$ at 6 keV. The final eXTP payload will contain 9 mirror modules in the SFA and 4 mirror modules in the PFA.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1664,
1296,
1768
],
"block_id": 279,
"category": 8,
"page_index": 24,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\textbf{ATHENA:} As has been the case for every major scientific mission in the X-ray band the definition of the ATHENA mission started very early. Even before the launch of XMM-Newton a very ambitious telescope concept was studied by the first telescope working group. This originated at a meeting in 1996 in Leicester UK, where a report named \u2018Next Generation X-ray Observatories\u2019 was formulated. This telescope had a focal length of 50 m and provided up to 30 square meters of effective area at 1 keV and a sensitivity 200 times better than XMM-Newton. The scientific aim of the mission was to study the hot and energetic universe using high and medium resolution spectroscopy with a wide field of view and good spatial resolution and unprecedented effective area. These design studies eventually became the foundation for the XEUS mission concept which was presented to ESA as the candidate for the second L mission in the new cosmic visions program targeting missions in the 2015-2025 time frame. In the same period NASA studied the Constellation-X mission concept. In 2008 the two concepts were merged to form a joint ESA/NASA/JAXA mission IXO \u2013 The International X-ray Observatory, but this was abandoned in 2011 and ESA continued with a cost reduced modification which became the ATHENA mission concept and was eventually selected for The L2 mission in 2014. ",
"labels": null,
"references": []
},
{
"bbox": [
368,
272,
1296,
760
],
"block_id": 280,
"category": 8,
"page_index": 25,
"previous_block": null,
"parent_block": 279,
"next_block": null,
"source_code": "\\textbf{ATHENA:} As has been the case for every major scientific mission in the X-ray band the definition of the ATHENA mission started very early. Even before the launch of XMM-Newton a very ambitious telescope concept was studied by the first telescope working group. This originated at a meeting in 1996 in Leicester UK, where a report named \u2018Next Generation X-ray Observatories\u2019 was formulated. This telescope had a focal length of 50 m and provided up to 30 square meters of effective area at 1 keV and a sensitivity 200 times better than XMM-Newton. The scientific aim of the mission was to study the hot and energetic universe using high and medium resolution spectroscopy with a wide field of view and good spatial resolution and unprecedented effective area. These design studies eventually became the foundation for the XEUS mission concept which was presented to ESA as the candidate for the second L mission in the new cosmic visions program targeting missions in the 2015-2025 time frame. In the same period NASA studied the Constellation-X mission concept. In 2008 the two concepts were merged to form a joint ESA/NASA/JAXA mission IXO \u2013 The International X-ray Observatory, but this was abandoned in 2011 and ESA continued with a cost reduced modification which became the ATHENA mission concept and was eventually selected for The L2 mission in 2014. ",
"labels": null,
"references": []
},
{
"bbox": [
368,
768,
1296,
1328
],
"block_id": 281,
"category": 9,
"page_index": 25,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "The ATHENA telescope design has undergone several iterations but is now settled at a single telescope 2.5 m in diameter with 12 m focal length, aiming at 1.4 m$^2$ effective area at 1 keV and 0.25 m$^2$ at 6 keV\\cite{bavdaz2021athena}. The scientific aim remains the same and very much builds on the heritage of XMM-Newton and Chandra. Since the very beginning it was clear that a novel telescope concept was required to meet the stringent mass restrictions while achieving the high effective area and a required imaging resolution of 5 arcsec. The technology developed and selected for this was the Silicon Pore optics making use of the very smooth and flat Silicon wafers produced in the semiconductor industry\\cite{collon2021silicon}. In this implementation, the silicon wafers are etched to provide support ribs and a stack of wafers are cold-welded together under pressure to form a block of individual reflecting channels or pores (see Figure \\ref{fig:athena}). The net result is an optic that is extremely rigid, yet very light weight. This technology has been under development for more than a decade by ESA. The mission requires on order 90000 individual mirror elements robotically stacked into 600 units coaligned to a common focus. The resulting telescope parameters are given below (Table \\ref{tab:athena}). It is expected that a Mission Adoption Review will take place in 2023 and the launch is foreseen in 2030\u00b4s. ",
"labels": null,
"references": [
"fig:athena",
"tab:athena"
]
},
{
"bbox": [
456,
1424,
672,
1448
],
"block_id": 282,
"category": 1,
"page_index": 25,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption[athena]{ \\label{fig:athena} A silicon pore module}",
"labels": null,
"references": null
},
{
"bbox": [
368,
1600,
528,
1632
],
"block_id": 285,
"category": 10,
"page_index": 25,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\subsection{Future}",
"labels": [],
"references": null
},
{
"bbox": [
368,
1680,
1296,
1776
],
"block_id": 286,
"category": 8,
"page_index": 25,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\n\\textbf{Lynx:} Looking beyond currently-funded missions to a future follow-on mission to Chandra reveals significant technical challenges. The Lynx X-ray observatory\\cite{gaskin2019lynx} is one of four strategic mission concepts that were studied for inclusion in NASA\u2019s 2020 decadal survey. Scientific considerations levelled requirements of Chandra-level angular resolution, to avoid source confusion and facilitate counterpart identification, an effective area 20 x larger than Chandra, and significantly-improved off axis response. Achieving this, while being able to launch the observatory on a standard heavy-lift rocket calls for significant changes to mirror technology. Specifically, much lighter (thinner) reflectors must be used to limit mass and to permit the dense packing necessary to achieve the required effective area. However, thinner reflectors have much less rigidity and this makes it much harder to achieve high angular resolution when internal substrate stresses and mounting forces (such as from epoxy shrinkage) are considered.",
"labels": null,
"references": []
},
{
"bbox": [
456,
272,
848,
304
],
"block_id": 283,
"category": 1,
"page_index": 26,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\caption{Parameters of the Athena Mirror System}",
"labels": null,
"references": null
},
{
"bbox": [
600,
304,
1072,
512
],
"block_id": 284,
"category": 7,
"page_index": 26,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\begin{tabular}{c|c}\n Parameter & Value \\\\\n \\hline\n \\hline\n Focal Length & 12 m \\\\\n Outer Diameter & 2.6 m \\\\\n Graze Angles & 21 - 89 arcmin \\\\\n Effective Area & 1.7 m$^2$ at 1 keV \\\\\n Number of silicon pore modules & 600 \\\\\n Angular Resolution (HEW) & 5 arcsec \\\\ \n \\end{tabular}",
"labels": null,
"references": null
},
{
"bbox": [
368,
584,
1296,
912
],
"block_id": 287,
"category": 8,
"page_index": 26,
"previous_block": null,
"parent_block": 286,
"next_block": null,
"source_code": "\n\\textbf{Lynx:} Looking beyond currently-funded missions to a future follow-on mission to Chandra reveals significant technical challenges. The Lynx X-ray observatory\\cite{gaskin2019lynx} is one of four strategic mission concepts that were studied for inclusion in NASA\u2019s 2020 decadal survey. Scientific considerations levelled requirements of Chandra-level angular resolution, to avoid source confusion and facilitate counterpart identification, an effective area 20 x larger than Chandra, and significantly-improved off axis response. Achieving this, while being able to launch the observatory on a standard heavy-lift rocket calls for significant changes to mirror technology. Specifically, much lighter (thinner) reflectors must be used to limit mass and to permit the dense packing necessary to achieve the required effective area. However, thinner reflectors have much less rigidity and this makes it much harder to achieve high angular resolution when internal substrate stresses and mounting forces (such as from epoxy shrinkage) are considered.",
"labels": null,
"references": []
},
{
"bbox": [
368,
912,
1296,
1376
],
"block_id": 288,
"category": 9,
"page_index": 26,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "Various technologies are being considered for the 3-m-diameter Lynx mirror system. Among these are conventional (Chandra-like) full shell optics, directly fabricated, yet from substrates an order of magnitude thinner than those of Chandra. A second technology under investigation is that of active segmented optics where $\\sim$0.5-mm-thick glass substrates are coated with an array of piezoelectric surface-tangential actuators which can be used to modify the figure of the reflector after mounting\\cite{cotroneo2018progress}. A third technology, that of silicon meta-shell optics\\cite{zhang2018astronomical}, uses monocrystalline silicon, an essentially stress-free material that is ground, lapped and polished and then sliced to give a very thin substrate of dimensions 100 mm x 100 mm x 0.5 mm. After ion beam figuring, the mirror segment is coated and then point bonded (4 locations) to a silicon support structure. This is segmented approach lends itself to mass production for the $\\sim$37.5k reflectors that would be needed for Lynx. The meta-shell optic approach has been baselined for study of a Lynx design reference mission.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1376,
1296,
1448
],
"block_id": 289,
"category": 9,
"page_index": 26,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "A Lynx technology roadmap shows that if selected in 2024, the mission could go through critical design review in $\\sim$2030 and launch in the mid 2030\u2019s\\cite{gaskin2019lynx}.",
"labels": null,
"references": []
},
{
"bbox": [
368,
1448,
568,
1480
],
"block_id": 290,
"category": 10,
"page_index": 26,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\\section{Conclusion}",
"labels": [],
"references": null
},
{
"bbox": [
368,
1528,
1296,
1760
],
"block_id": 291,
"category": 9,
"page_index": 26,
"previous_block": null,
"parent_block": null,
"next_block": null,
"source_code": "\nThe use of grazing-incidence X-ray optics has transformed the field of X-ray astronomy, taking us from the few hundred sources in the first X-ray-sky catalog in 1972 to the equivalent of more than 10,000 sources per square degree in the current Chandra deep fields. Getting there has posed numerous technological challenges, all of which were successfully overcome. The next generation of instruments will be equally (or possibly even more) challenging as ever more collecting area is demanded along with high angular resolution - and all within manageable budgets and launch-able masses. The future of grazing-incidence X-ray optics promises to be just as exciting as the past $\\sim$6 decades have been.",
"labels": null,
"references": []
},
{
"bbox": [
368,
272,
1296,
336
],
"block_id": 292,
"category": 9,
"page_index": 27,
"previous_block": null,
"parent_block": 291,
"next_block": null,
"source_code": "\nThe use of grazing-incidence X-ray optics has transformed the field of X-ray astronomy, taking us from the few hundred sources in the first X-ray-sky catalog in 1972 to the equivalent of more than 10,000 sources per square degree in the current Chandra deep fields. Getting there has posed numerous technological challenges, all of which were successfully overcome. The next generation of instruments will be equally (or possibly even more) challenging as ever more collecting area is demanded along with high angular resolution - and all within manageable budgets and launch-able masses. The future of grazing-incidence X-ray optics promises to be just as exciting as the past $\\sim$6 decades have been.",
"labels": null,
"references": []
}
],
"orders": [
{
"type": "sub",
"from": 126,
"to": 125
},
{
"type": "peer",
"from": 127,
"to": 125
},
{
"type": "sub",
"from": 128,
"to": 127
},
{
"type": "identical",
"from": 129,
"to": 128
},
{
"type": "adj",
"from": 130,
"to": 129
},
{
"type": "adj",
"from": 132,
"to": 130
},
{
"type": "adj",
"from": 134,
"to": 132
},
{
"type": "peer",
"from": 135,
"to": 127
},
{
"type": "peer",
"from": 136,
"to": 135
},
{
"type": "sub",
"from": 137,
"to": 136
},
{
"type": "adj",
"from": 138,
"to": 137
},
{
"type": "adj",
"from": 139,
"to": 138
},
{
"type": "peer",
"from": 140,
"to": 136
},
{
"type": "sub",
"from": 141,
"to": 140
},
{
"type": "peer",
"from": 142,
"to": 140
},
{
"type": "sub",
"from": 143,
"to": 142
},
{
"type": "identical",
"from": 144,
"to": 143
},
{
"type": "peer",
"from": 145,
"to": 142
},
{
"type": "peer",
"from": 146,
"to": 145
},
{
"type": "sub",
"from": 147,
"to": 146
},
{
"type": "adj",
"from": 148,
"to": 147
},
{
"type": "adj",
"from": 149,
"to": 148
},
{
"type": "peer",
"from": 151,
"to": 146
},
{
"type": "sub",
"from": 152,
"to": 151
},
{
"type": "identical",
"from": 153,
"to": 152
},
{
"type": "adj",
"from": 155,
"to": 153
},
{
"type": "adj",
"from": 157,
"to": 155
},
{
"type": "peer",
"from": 158,
"to": 151
},
{
"type": "sub",
"from": 159,
"to": 158
},
{
"type": "adj",
"from": 160,
"to": 159
},
{
"type": "adj",
"from": 161,
"to": 160
},
{
"type": "adj",
"from": 162,
"to": 161
},
{
"type": "peer",
"from": 163,
"to": 158
},
{
"type": "sub",
"from": 164,
"to": 163
},
{
"type": "peer",
"from": 166,
"to": 163
},
{
"type": "peer",
"from": 167,
"to": 166
},
{
"type": "peer",
"from": 168,
"to": 167
},
{
"type": "sub",
"from": 169,
"to": 168
},
{
"type": "peer",
"from": 170,
"to": 168
},
{
"type": "sub",
"from": 171,
"to": 170
},
{
"type": "peer",
"from": 172,
"to": 170
},
{
"type": "sub",
"from": 173,
"to": 172
},
{
"type": "identical",
"from": 174,
"to": 173
},
{
"type": "adj",
"from": 175,
"to": 174
},
{
"type": "peer",
"from": 176,
"to": 172
},
{
"type": "sub",
"from": 177,
"to": 176
},
{
"type": "peer",
"from": 178,
"to": 176
},
{
"type": "sub",
"from": 179,
"to": 178
},
{
"type": "adj",
"from": 181,
"to": 179
},
{
"type": "identical",
"from": 182,
"to": 181
},
{
"type": "peer",
"from": 183,
"to": 178
},
{
"type": "sub",
"from": 184,
"to": 183
},
{
"type": "adj",
"from": 185,
"to": 184
},
{
"type": "adj",
"from": 186,
"to": 185
},
{
"type": "identical",
"from": 187,
"to": 186
},
{
"type": "adj",
"from": 188,
"to": 187
},
{
"type": "adj",
"from": 191,
"to": 188
},
{
"type": "adj",
"from": 192,
"to": 191
},
{
"type": "adj",
"from": 194,
"to": 192
},
{
"type": "identical",
"from": 195,
"to": 194
},
{
"type": "adj",
"from": 197,
"to": 195
},
{
"type": "adj",
"from": 198,
"to": 197
},
{
"type": "peer",
"from": 199,
"to": 183
},
{
"type": "sub",
"from": 200,
"to": 199
},
{
"type": "identical",
"from": 201,
"to": 200
},
{
"type": "adj",
"from": 202,
"to": 201
},
{
"type": "peer",
"from": 203,
"to": 199
},
{
"type": "sub",
"from": 204,
"to": 203
},
{
"type": "adj",
"from": 205,
"to": 204
},
{
"type": "identical",
"from": 206,
"to": 205
},
{
"type": "adj",
"from": 208,
"to": 206
},
{
"type": "adj",
"from": 209,
"to": 208
},
{
"type": "adj",
"from": 210,
"to": 209
},
{
"type": "adj",
"from": 211,
"to": 210
},
{
"type": "adj",
"from": 212,
"to": 211
},
{
"type": "identical",
"from": 213,
"to": 212
},
{
"type": "adj",
"from": 214,
"to": 213
},
{
"type": "adj",
"from": 218,
"to": 214
},
{
"type": "adj",
"from": 219,
"to": 218
},
{
"type": "identical",
"from": 220,
"to": 219
},
{
"type": "adj",
"from": 221,
"to": 220
},
{
"type": "adj",
"from": 222,
"to": 221
},
{
"type": "adj",
"from": 224,
"to": 222
},
{
"type": "identical",
"from": 225,
"to": 224
},
{
"type": "adj",
"from": 226,
"to": 225
},
{
"type": "adj",
"from": 227,
"to": 226
},
{
"type": "adj",
"from": 230,
"to": 227
},
{
"type": "adj",
"from": 232,
"to": 230
},
{
"type": "adj",
"from": 234,
"to": 232
},
{
"type": "adj",
"from": 235,
"to": 234
},
{
"type": "adj",
"from": 237,
"to": 235
},
{
"type": "identical",
"from": 238,
"to": 237
},
{
"type": "adj",
"from": 239,
"to": 238
},
{
"type": "adj",
"from": 240,
"to": 239
},
{
"type": "adj",
"from": 244,
"to": 240
},
{
"type": "adj",
"from": 246,
"to": 244
},
{
"type": "adj",
"from": 247,
"to": 246
},
{
"type": "peer",
"from": 248,
"to": 203
},
{
"type": "sub",
"from": 249,
"to": 248
},
{
"type": "adj",
"from": 250,
"to": 249
},
{
"type": "peer",
"from": 251,
"to": 248
},
{
"type": "sub",
"from": 252,
"to": 251
},
{
"type": "identical",
"from": 253,
"to": 252
},
{
"type": "adj",
"from": 254,
"to": 253
},
{
"type": "adj",
"from": 255,
"to": 254
},
{
"type": "adj",
"from": 260,
"to": 255
},
{
"type": "adj",
"from": 261,
"to": 260
},
{
"type": "adj",
"from": 262,
"to": 261
},
{
"type": "identical",
"from": 263,
"to": 262
},
{
"type": "adj",
"from": 264,
"to": 263
},
{
"type": "adj",
"from": 265,
"to": 264
},
{
"type": "adj",
"from": 267,
"to": 265
},
{
"type": "peer",
"from": 268,
"to": 251
},
{
"type": "sub",
"from": 269,
"to": 268
},
{
"type": "identical",
"from": 270,
"to": 269
},
{
"type": "adj",
"from": 273,
"to": 270
},
{
"type": "adj",
"from": 274,
"to": 273
},
{
"type": "adj",
"from": 276,
"to": 274
},
{
"type": "adj",
"from": 277,
"to": 276
},
{
"type": "adj",
"from": 278,
"to": 277
},
{
"type": "adj",
"from": 279,
"to": 278
},
{
"type": "identical",
"from": 280,
"to": 279
},
{
"type": "adj",
"from": 281,
"to": 280
},
{
"type": "peer",
"from": 285,
"to": 268
},
{
"type": "sub",
"from": 286,
"to": 285
},
{
"type": "identical",
"from": 287,
"to": 286
},
{
"type": "adj",
"from": 288,
"to": 287
},
{
"type": "adj",
"from": 289,
"to": 288
},
{
"type": "peer",
"from": 290,
"to": 285
},
{
"type": "sub",
"from": 291,
"to": 290
},
{
"type": "identical",
"from": 292,
"to": 291
}
]
} |