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
|
%&program=pdflatex
\documentclass[a4paper,10pt]{article}
\usepackage{natbib,rotating,longtable,url,amsmath,nameref}
%% font
\usepackage{mathptmx,graphicx}
\usepackage[pdftex, pdfborder={0 0 0}]{hyperref}
\usepackage{ulem}
\hypersetup{
colorlinks,
citecolor=green,
linkcolor=blue,
urlcolor=blue
}
\def\thisyear{2014 }
%HEVEA\usepackage{hevea}
%HEVEA\htmlfoot{\@hr{\textwidth}{1pt}\textsc{SPLASH}: A visualisation tool for SPH data \copyright 2004--\thisyear Daniel Price. \newline \url{http://users.monash.edu.au/~dprice/splash/}}
%HEVEA\setlinkstext{\imgsrc[ALT="Previous"]{arrow-left.png}}{\imgsrc[ALT="Up"]{arrow-up.png}}{\imgsrc[ALT="Next"]{arrow-right.png}}
%HEVEA\toplinks{../index.html}{../index.html}{intro.html}
%HEVEA\tocnumber %% use numbers in table of contents
% Now we redefine certain commands of hyperref.sty
%
\makeatletter
% The following for \url
\def\url@#1{\hyper@linkurl{\uline{\Hurl{#1}}}{#1}}
% The following for \href
\def\hyper@link@[#1]#2#3#4{%
\protected@edef\Hy@tempa{#2}%
\ifx\Hy@tempa\@empty
\hyper@link{#1}{#3}{\uline{#4}}%
\else
\expandafter\hyper@readexternallink#2\\{#1}{#3}{\uline{#4}}%
\fi
}
\makeatother
\graphicspath{{figs/}}
\setlength{\topmargin}{-2.5cm}
\setlength{\textheight}{26.5cm}
\setlength{\oddsidemargin}{-0.5cm}
\setlength{\evensidemargin}{-0.5cm}
\setlength{\textwidth}{17cm}
\newcommand{\splash}{\textsc{splash }}
\newcommand{\giza}{\textsc{giza }}
\begin{titlepage}
\title{Visualisation of Smoothed Particle Hydrodynamics data using \splash - v\input{version}}
\author{Daniel Price}
\end{titlepage}
\begin{document}
% html div style
%\begin{divstyle}{wrap}
\begin{figure}
\begin{center}
\includegraphics[width=\textwidth]{hyperbolic.pdf}
\end{center}
\end{figure}
\maketitle
\tableofcontents%HEVEA\cutname{contents.html}
\newpage
\section{Introduction}%HEVEA\cutname{intro.html}
Whilst many wonderful commercial software packages exist for visualising scientific
data (such as the widely used Interactive Data Language), I found that such packages
could be somewhat cumbersome for the manipulation and visualisation of particle-based data. The
main problem was that much of what I wanted to do was fairly specific to SPH (such as
interpolation to an array of pixels using the kernel) and while generic routines exist
for such tasks, I could not explain how they worked, nor were they
particularly fast. Also, while interactive gizmos are handy, it can prove more difficult to perform the
same tasks non-interactively, as required for the production of animations.
The major work in the visualisation of SPH data is not the image production itself but the
manipulation of data prior to plotting. Much of this manipulation makes sense
within an SPH framework.
\splash is designed for this specific task - to use SPH tools to analyse SPH data and to make this a
straightforward task such that publishable images and animations can be obtained
as efficiently as possible from the raw data with a minimum amount of effort
from the user. I have found in the process that the development of powerful
visualisation tools has enabled me to pick up on effects present in my
simulation results that I would not otherwise have noticed --- the
difference between a raw particle plot and a rendered image can be substantial. A key goal of
\splash is to eliminate the use of crap-looking particle plots as a means of representing SPH data!
\subsection{What it does}
\splash is a utility for visualisation of output from (astrophysical) simulations using the
Smoothed Particle Hydrodynamics (SPH) method in one, two and three dimensions.
It is written in Fortran 90/95 and utilises \giza, a custom-build backend graphics library to do the actual plotting. In particular the following
features are included:
\begin{itemize}
\item Rendering of particle data to an array of pixels using the SPH kernel
\item Cross-sections through 2D and 3D data (as both particle plots and rendered
images).
\item Fast projections through 3D data (i.e., column density plots, or integration of
other quantities along the line of sight)
\item Surface renderings of 3D data.
\item Vector plots of the velocity (and other vector quantities), including vector
plots in a cross section slice in 3D.
\item Rotation and animation sequence generation for 3D data.
\item Automatic stepping through timesteps, making animations simple to produce.
\item Interactive mode for detailed examination of timestep data (e.g. zooming,
rotating, stepping forwards/backwards, log axes, adapting limits).
\item Remote visualisation via simple X-Windows forwarding
\item Multiple plots on page, including option to automatically tile plots if $y-$ and $x-$ limits
are the same.
\item Plot limits can be fixed, adaptive or particle tracking.
\item Exact solutions for common SPH test problems (e.g. shock tubes, sedov blast wave).
\item Calculation of quantities not dumped (e.g. pressure, entropy)
\item Conversion of binary dump files to ascii format.
\item Interpolation of SPH data to 2D and 3D grids.
\item Transformation to different coordinate systems (for both coordinates and
vector components) and rescaling of data into physical units.
\item Straightforward production of both bitmap (png) and vector (eps, pdf) images which can then be
converted into animations or inserted into \LaTeX documents.
\end{itemize}
\subsection{What it doesn't do}
\splash is geared towards gas dynamics simulations with SPH and has basically grown out of my visualisation needs.
Thus it may not be particularly useful for things like water and solids etc. in SPH. An SPH visualisation tool geared towards the non-gaseous side of things you may want to have a look at is {\it pv-meshless}, by John Biddiscombe:
\url{https://twiki.cscs.ch/twiki/bin/view/ParaViewMeshless}
\splash also doesn't make coffee.
\subsection{\splash, the paper}
The algorithms implemented in \splash are not described here, but instead described in a paper \citep{splashpaper} (Publications of the Astronomical Society of Australia, 24, 159-173), available from:
\url{http://www.publish.csiro.au/?paper=AS07022}
\noindent This paper should be cited if you use \splash for scientific purposes, and please do so as it is my only form of thanks!
\subsection{Version History}
\begin{longtable}{|l|l|p{0.75\textwidth}|}
\hline
\input{version_history_tex}
\hline
\end{longtable}
\subsection{Licence}
\splash - a visualisation tool for SPH data \copyright 2004-\thisyear Daniel Price.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
\section{Getting started}%HEVEA\cutname{gettingstarted.html}
\subsection{Compiling the code}
The basic steps for installation are as follows:
\begin{enumerate}
\item make sure you have a recent Fortran compiler (such as gfortran)
\item compile \splash and \giza
\item write a read\_data subroutine so that \splash can read your data format
\end{enumerate}
\subsubsection{ Fortran compilers}
By now, many Fortran 90/95/2003 compilers exist. The most widely available are:
\begin{itemize}
\item gfortran, the free Gnu Fortran Compiler \\\url{http://gcc.gnu.org/wiki/GFortran}
\item g95, the other free gcc-based f90 compiler\\ \url{http://www.g95.org}
\item Oracle Solaris Studio (formerly Sun studio), which contains an excellent free Fortran compiler for Linux and Solaris \\
\url{http://www.oracle.com/us/products/tools/050872.html}
\item ifort, one of the most widely available commercial compilers (and is very good) with (limited) free licence for Linux.
\url{http://software.intel.com/en-us/articles/intel-compilers/}
\end{itemize}
All of these successfully compile \splash and the \giza library.
%\subsubsection{\giza}
%The PGPLOT graphics subroutine library is freely downloadable from
%\begin{quote}
%\url{http://www.astro.caltech.edu/~tjp/pgplot/}
%\end{quote}
%or by ftp from
%\begin{quote}
%\url{ftp://ftp.astro.caltech.edu/pub/pgplot/pgplot5.2.tar.gz}
%\end{quote}
%however check to see if it is already installed on your system (if so, the libraries are
%usually located in /usr/local/pgplot). For details of the actual plotting subroutines
%used by the \splash source code, you may want to refer to the PGPLOT userguide:
%\begin{quote}
%\url{http://www.astro.caltech.edu/~tjp/pgplot/contents.html}
%\end{quote}
\subsubsection{ Compiling and linking with \giza}
A copy of \giza is included in the \splash distribution and is compiled automatically along with \splash. \giza is also available as a standalone project at:
\begin{quote}
\url{http://giza.sourceforge.net/}
\end{quote}
For detailed instructions on compiling and linking with \giza (or the older \textsc{pgplot} library used in \splash v1.x), refer to the INSTALL file in the root directory of the \splash distribution, or at:
\begin{quote}
\url{http://users.monash.edu.au/~dprice/splash/download/INSTALL}.
\end{quote}
A successful `make' will produce a binary for each of the main supported SPH data formats -- for example for ascii formats the binary is called `asplash' (by convention the first letter refers to the data format for which \splash has been compiled). Details of these are given below.
\subsubsection{ Reading your data}
The most important part is getting \splash to read *your* data format.
If you are using a publically available code, it is reasonably likely that I
have already written a read data subroutine which will read your dumps.
If not it is best to look at some of the other examples and change the
necessary parts to suit your data files. Note that reading directly from
unformatted data files is *much* faster than reading from formatted (ascii)
output.
A standard ``make'' will create the binaries listed in Table~\ref{tab:defaultreads} which read the corresponding data formats listed in the third column. Table~\ref{tab:otherreads} lists other data reads implemented but not compiled by default.
\begin{table}[h!]
\begin{tabular}{lp{0.2\textwidth}lp{0.34\textwidth}}
\splash binary & Formats read & read\_data file & Comments \\
\hline
asplash, splash & ascii & \verb+read_data_ascii.f90+ & Generic data read for n-column ascii formats. Automatically determines number of columns and skips header lines. Can recognise SPH particle data based on the column labels. Use `asplash -e' to plot non-SPH data (e.g. energy vs time files).\\
dsplash & \textsc{dragon} & \verb+read_data_dragon.f90+ & see environment variable options. \\
gsplash & \textsc{gadget}, \textsc{gadget-2}, \textsc{gadget-3} & \verb+read_data_gadget.f90+ & Handles both default and block-labelled formats (see environment variable options). \\
nsplash & \textsc{ndspmhd} & \verb+read_data_dansph.f90+ & Format for the \textsc{ndspmhd} SPH/SPMHD code (publicly available from my website). \\
rsplash & \textsc{magma} & \verb+read_data_srosph.f90+ & Stephan Rosswog's code \\
ssplash & sphNG, \textsc{phantom} & \verb+read_data_sphNG.f90+ & sphNG is Matthew Bate's SPH code. \\
srsplash & \textsc{seren} & \verb+read_data_seren.f90+ & The \textsc{SEREN} SPH code (Hubber, McLeod et al.) \\
tsplash & \textsc{gasoline}, \textsc{tipsy} & \verb+read_data_tipsy.f90+ & Reads both binary and ascii TIPSY files (determined automatically). \\
vsplash & \textsc{vine} & \verb+read_data_VINE.f90+ & see environment variable options. \\
\hline
\end{tabular}
\caption{Binaries and data reads compiled by default}
\label{tab:defaultreads}
\end{table}
\begin{table}[h!]
\begin{tabular}{lllp{0.25\textwidth}}
Format & Binary & read\_data file & Comments \\
\hline
h5part format & h5splash & \verb+read_data_h5part.f90+ & Reads general files written with the h5part library. Requires linking against H5PART and HDF5 libraries \\
\textsc{gadget} HDF5 format & gsplash-hdf5 & \verb+read_data_gadget_hdf5.f90+ & Reads HDF5 format from the \textsc{gadget} code. Requires linking against HDF5 libraries \\
Andreas Bauswein's format & bsplash & \verb+read_data_bauswein.f90+ & \\
Sigfried Vanaverbeke's format & vsplash & \verb+read_data_vanaverbeke.f90+ & \\
Regularised SPH (Steinar Borve) & rsplash & \verb+read_data_rsph.f90+ & \\
FLASH tracer particles & fsplash & \verb+read_data_flash_hdf5.f90+ & Reads tracer particle output from the FLASH code. Requires linking against HDF5 libraries \\
Sky King/Nikos Mastrodemos & usplash & \verb+read_data_UCLA.f90+ & A good example of a simple ascii format reader \\
Jamie Bolton GADGET format & gsplash\_jsb & \verb+read_data_gadget_jsb.f90+ & Reads extra arrays before the SPH smoothing length \\
Old Matthew Bate code & bsplash & \verb+read_data_mbate.f90+ & similar to the original Benz SPH code format \\
Foulkes/Haswell/Murray & fsplash & \verb+read_data_foulkes.f90+ & An ascii format \\
Andrea Urban format & usplash & \verb+read_data_urban.f90+ & An ascii format \\
\hline
\end{tabular}
\caption{Other data reads implemented but not compiled by default}
\label{tab:otherreads}
\end{table}
Further details on writing your own subroutine are given in
appendix~\ref{sec:writeyourown}. The *easiest* way is to i) email me a sample data file and ii) the subroutine
you used to write it, and I will happily create a data read for your file format.
\subsection{Environment variables}
\label{sec:envvariables}
Several runtime options for \splash can be set using environment variables. These are variables set from your unix shell. In the bash shell, environment variables are set from the command line using
\begin{verbatim}
export VAR='blah'
\end{verbatim}
or by putting this command in your \verb+.bash_profile+/\verb+.bashrc+. In csh, the equivalent is
\begin{verbatim}
setenv VAR 'blah'
\end{verbatim}
or by putting the above in your \verb+.cshrc+ file.
%\subsubsection{ PGPLOT}
% Several useful environment variables can be set for PGPLOT and several of them
%are very useful for \splash. Firstly, to get the basic installation working it is usually necessary to set the environment variable PGPLOT\_DIR to the location of the pgplot directory and possible also PGPLOT\_FONT to specify the location of the font file (see the online faq for font problems), i.e., add the appropriate modification of the following line(s) to your .bashrc (or equivalent) file:
%\begin{verbatim}
%export PGPLOT_DIR=/mypgplotdir/pgplot
%export PGPLOT_FONT=/mypgplotdir/pgplot/grfont.dat
%\end{verbatim}
%
%Some other useful things to set which control the runtime behaviour of PGPLOT include:
%\begin{verbatim}
%export PGPLOT_DEV=/xwin
%export PGPLOT_BACKGROUND=white
%export PGPLOT_FOREGROUND=black
%\end{verbatim}
%The first command sets the default device to the X-window, rather than the /null
%device. The latter two commands set the background and foreground colours of the
%plotting page. Note that these environment variables should be set \emph{before}
%invoking \splash (it is simplest to set them upon starting the shell by placing
%them in your .bashrc or tcsh/csh equivalent file). For other environment
%variables which can be set, refer to the PGPLOT user guide.
\subsubsection{\giza}
Several environment variables affect the backend plotting library. Probably the most useful is the ability to change font:
\begin{verbatim}
export GIZA_FONT='Helvetica'
\end{verbatim}
where the name is a reasonable guess as to the font you want to use (the default is `Times'). In particular, if you are having trouble displaying unicode characters such as greek letters, you can just change the font until you find one that works.
\subsubsection{ Endian changing}
On some compilers, the endian-ness (byte order) of the file read for unformatted binary data files can also be changed at runtime. This is useful for looking at files on different systems to the one on which they were created (e.g. x86 machines create little-endian files by default, whereas IBM/powerpc machines create big-endian).
Environment variables for changing the endian-ness of the data read for some common compilers are given below:
\begin{table}[h!]
\begin{tabular}{lllll}
Compiler & Environment variable & Setting for big endian & Setting for little endian & Other options \\
\hline
\verb+g95+ & \verb+G95_ENDIAN+ & \verb+BIG+ & \verb+LITTLE+ & \\
\verb+gfortran+ & \verb+GFORTRAN_CONVERT_UNIT+ & \verb+big_endian+ & \verb+little_endian+ & \verb+swap+ \\
\verb+ifort+ & \verb+F_UFMTENDIAN+ & \verb+big+ & \verb+little+ & \\
\hline
\end{tabular}
\end{table}
For compilers without this feature, almost all can change the endian-ness at compile time, and the appropriate flags for doing so can be set using
\begin{verbatim}
export ENDIAN='BIG'
\end{verbatim}
or LITTLE before \emph{compiling} \splash (this adds the appropriate compile-time flags for the compiler selected using the SYSTEM environment variable in the \splash Makefile).
\subsubsection{ Variables affecting all data reads}
Environment variables that affect all data reads are:\newline
\begin{longtable}{p{0.35\textwidth}p{0.55\textwidth}}
SPLASH\_DEFAULTS & gives the name of a system-wide \verb+splash.defaults+ file (and splash.limits etc.) that will be used if there is none in the current directory. e.g. \verb+export SPLASH_DEFAULTS=/home/me/splash.defaults+ \\
SPLASH\_KERNEL & changes the smoothing kernel used in the interpolations (e.g. `cubic' or `quintic'). Can also be changed in the r)ender menu. \\
SPLASH\_DEBUG & if set to `yes' or `true', turns on very verbose debugging output. Useful to trace code crashes (but of course, this never happens\ldots).\\
SPLASH\_CENTRE\_ON\_SINK & if set to a number n, centres coordinates and velocities on the n{\it th} sink/star particle (e.g. \verb+export SPLASH_CENTRE_ON_SINK=2+). \\
SPLASH\_HMIN\_CODEUNITS & if given a value $>$0 enforces a minimum smoothing length, specified in code units as read from the dump file, on all the particles. This can be used to ``dumb-down'' the resolution of SPH simulations, e.g. to match observational resolution. If this variable is set it is \emph{highly} recommended that the ``use accelerated rendering'' option in the r)ender menu is also turned on as quite slow rendering can otherwise result. \\
SPLASH\_VZERO\_CODEUNITS & if set to a comma separated list of vector components (e.g. \verb+export SPLASH_VZERO_CODEUNITS='0.0,1.0,0.0'+), can be used to subtract a mean velocity field from all particles --- specified in code units as read from the dump file. \\
SPLASH\_MARGIN\_XMIN & can be used to manually adjust the left horizontal page margin (set to fraction of viewport, negative values are allowed). \\
SPLASH\_MARGIN\_XMAX & right horizontal page margin (set to fraction of viewport). \\
SPLASH\_MARGIN\_YMIN & bottom (vertical) page margin (set to fraction of viewport). \\
SPLASH\_MARGIN\_YMAX & top (vertical) page margin (set to fraction of viewport).
\end{longtable}
\subsubsection{ Ascii data read}
\label{sec:asplash}
For several data reads there are environment variables which can be set at runtime which are specific to the data read. For the
ascii data read (`asplash') these are:\newline
\begin{tabular}{p{0.35\textwidth}p{0.55\textwidth}}
ASPLASH\_NCOLUMNS & if given a value $>$0 sets the number of columns to be read from ascii data (overrides the automatic number of
columns determination). \\
ASPLASH\_NHEADERLINES & if given a value $>=$0 sets the number of header lines to skip (overrides the automatic determination). \\
ASPLASH\_COLUMNSFILE & can be used to provide the location of (path to) the default `columns' file containing the labels for ascii data (e.g. setenv ASPLASH\_COLUMNSFILE '/home/me/mylabels'). Overridden by the presence of a local `columns' file. \\
ASPLASH\_TIMEVAL & if given a nonzero value sets the time to use in the legend (fixed for all files) \\
ASPLASH\_GAMMAVAL & if given a nonzero value sets gamma to use in exact solution calculations (fixed for all files) \\
ASPLASH\_HEADERLINE\_TIME & sets the integer line number where the time appears in the header \\
ASPLASH\_HEADERLINE\_GAMMA & sets the integer line number where gamma appears in the header \\
\end{tabular}
\subsubsection{ GADGET data read}
\label{sec:gsplash}
For the GADGET read (`gsplash') the environment variable options are:\newline
\begin{tabular}{p{0.35\textwidth}p{0.55\textwidth}}
GSPLASH\_FORMAT & if set = 2, reads the block labelled GADGET format instead of the default (non block labelled) format. \\
GSPLASH\_USE\_Z & if `YES' or `TRUE' uses the redshift in the legend instead of code time. \\
GSPLASH\_DARKMATTER\_HSOFT & if given a value $>$ 0.0 will assign a smoothing length to dark matter particles for which rendered plots of column density can then be made. \\
GSPLASH\_EXTRACOLS & if set to a comma separated list of column labels, will attempt to read additional columns containing gas particle properties beyond the end of the file (not applicable if GSPLASH\_FORMAT=2). \\
GSPLASH\_STARPARTCOLS & if set to a comma separated list of column labels, will attempt to read additional columns containing star particle properties beyond the end of the file (and after any extra gas particle columns) (not applicable if GSPLASH\_FORMAT=2). \\
GSPLASH\_CHECKIDS & if set to `YES' or `TRUE', reads and checks particle IDs, excluding particles with negative IDs as accreted (gives them a negative smoothing length which means they are ignored in renderings). \\
GSPLASH\_HSML\_COLUMN & if set to a positive integer, specifies the location of the smoothing length in the columns, overriding any default settings. \\
GSPLASH\_IGNORE\_IFLAGCOOL & if set to 'YES' or `TRUE', does not assume that extra columns are present even if the cooling flag is set in the header. \\
\end{tabular}
For the GADGET read gsplash will also look for, and read if present, files called \verb+snapshot_xxx.hsml+ and/or \verb+snapshot_xxx.dens+ (where \verb+snapshot_xxx+ is the name of the corresponding GADGET dump file) which contain smoothing lengths and/or a density estimate for dark matter particles (these should just be one-column ascii files).
\subsubsection{ VINE data read}
For the VINE read (`vsplash') the environment variable options are:\newline
\begin{longtable}{p{0.35\textwidth}p{0.55\textwidth}}
VSPLASH\_HFAC & if `YES' or `TRUE' multiplies the smoothing length read from the dump file by a factor of 2.8 (for use with older VINE dumps where the smoothing length is defined as in a Plummer kernel rather than as the usual SPH smoothing length). \\
VSPLASH\_MHD & if `YES' or `TRUE' reads VINE dumps containing MHD arrays (note that setting VINE\_MHD also works). \\
\end{longtable}
\subsubsection{ sphNG data read}
For the sphNG and PHANTOM read (`ssplash') the environment variable options are:\newline
\begin{longtable}{p{0.35\textwidth}p{0.55\textwidth}}
SSPLASH\_CENTRE\_ON\_SINK \newline(**obsolete**) & if `YES' or `TRUE' resets the positions such that the sink particle is positioned at the origin (applies only where there is one, and only one, sink particle present). This option is obsolete: use SPLASH\_CENTRE\_ON\_SINK instead.\\
SSPLASH\_RESET\_CM & if `YES' or `TRUE' resets the positions such that the centre of mass is exactly at the origin. \\
SSPLASH\_OMEGA & if non-zero, subtracts solid body rotation with omega as specified to give velocities in co-rotating frame. \\
SSPLASH\_OMEGAT & if non-zero, subtracts solid body rotation with omega as specified to give positions and velocities in co-rotating frame. \\
SSPLASH\_TIMEUNITS & sets default time units, either 's', 'min', 'hrs', 'days', 'yrs' or 'tfreefall' (NB: text is used verbatim in legend).
\end{longtable}
\subsubsection{ \textsc{dragon} data read}
For the \textsc{dragon} read (`dsplash') the environment variable options are:\newline
\begin{tabular}{p{0.35\textwidth}p{0.55\textwidth}}
DSPLASH\_EXTRACOLS & specifies number of extra columns present in the file which are dumped after the itype array
\end{tabular}
\subsubsection{ Stephan Rosswog data read}
For the srosph read (`rsplash') the environment variable options are:\newline
\begin{tabular}{p{0.35\textwidth}p{0.55\textwidth}}
RSPLASH\_FORMAT & can be `MHD' or `HYDRO' which read the appropriate data format from either the MHD or hydrodynamic codes \\
RSPLASH\_RESET\_COM & if `YES' or `TRUE' resets the positions such that the centre of mass is exactly at the origin. \\
RSPLASH\_COROTATING & if `YES' or `TRUE' then velocities are transformed to corotating frame \\
RSPLASH\_HFACT & can be changed to give correct parameter in $h=h_{fact}(m/\rho)^{1/3}$ used to set the particle masses when rendering minidumps (i.e., when the mass is not dumped). Default is RSPLASH\_HFACT=1.5
\end{tabular}
\subsubsection{ \textsc{ndspmhd} data read}
For the \textsc{ndspmhd} read (`nsplash') the environment variable options are:\newline
\begin{tabular}{p{0.35\textwidth}p{0.55\textwidth}}
NSPLASH\_BARYCENTRIC & plots barycentric quantities for one-fluid dust instead of creating fake second set of particles
\end{tabular}
\subsubsection{ H5Part data read}
For the H5PART read (`h5splash') the environment variable options are:\newline
\begin{tabular}{p{0.35\textwidth}p{0.55\textwidth}}
H5SPLASH\_NDIM & number of spatial dimensions $d$ (overrides value inferred from data) \\
H5SPLASH\_HFAC & factor to use to compute h from $h = h_{fac} *(m/\rho)^{1/d}$ if smoothing length not present in data \\
H5SPLASH\_HSML & value for global smoothing length h (if h not present in data) \\
H5SPLASH\_TYPEID & name of the dataset containing the particle type identification (default is ``MatID'')
\end{tabular}
\subsection{Command line options}
\label{sec:commandline}
\splash has a number of command line options which can be used to change various things about the runtime behaviour. Typing \verb+splash -v+ gives a complete and up-to-date list of options. Currently these are:
\begin{verbatim}
Command line options:
-p fileprefix : change prefix to ALL settings files read/written by splash
-d defaultsfile : change name of defaults file read/written by splash
-l limitsfile : change name of limits file read/written by splash
-e, -ev : use default options best suited to ascii evolution files (ie. energy vs time)
-lm, -lowmem : use low memory mode [applies only to sphNG data read at present]
-o pixformat : dump pixel map in specified format (use just -o for list of formats)
Command line plotting mode:
-x column : specify x plot on command line (ie. do not prompt for x)
-y column : specify y plot on command line (ie. do not prompt for y)
-r[ender] column : specify rendered quantity on command line (ie. no render prompt)
(will take columns 1 and 2 as x and y if -x and/or -y not specified)
-vec[tor] column : specify vector plot quantity on command line (ie. no vector prompt)
-c[ontour] column : specify contoured quantity on command line (ie. no contour prompt)
-dev device : specify plotting device on command line (ie. do not prompt)
convert mode ("splash to X dumpfiles"):
splash to ascii : convert SPH data to ascii file dumpfile.ascii
to binary : convert SPH data to simple unformatted binary dumpfile.binary
write(1) time,npart,ncolumns
do i=1,npart
write(1) dat(1:ncolumns),itype
enddo
to phantom : convert SPH data to binary dump file for PHANTOM
to gadget : convert SPH data to default GADGET snapshot file format
Grid conversion mode ("splash to X dumpfiles"):
splash to grid : interpolate basic SPH data (density, plus velocity if present in data)
to 2D or 3D grid, write grid data to file (using default output=ascii)
to gridascii : as above, grid data written in ascii format
to gridbinary : as above, grid data in simple unformatted binary format:
write(unit) nx,ny,nz,ncolumns,time [ 4 bytes each ]
write(unit) (((rho(i,j,k),i=1,nx),j=1,ny),k=1,nz) [ 4 bytes each ]
write(unit) (((vx(i,j,k), i=1,nx),j=1,ny),k=1,nz) [ 4 bytes each ]
write(unit) (((vy(i,j,k), i=1,nx),j=1,ny),k=1,nz) [ 4 bytes each ]
write(unit) (((...(i,j,k),i=1,nx),j=1,ny),k=1,nz) [ 4 bytes each ]
allto grid : as above, interpolating *all* columns to the grid (and output file)
allto gridascii : as above, with ascii output
allto gridbinary : as above, with binary output
Analysis mode ("splash calc X dumpfiles") on a sequence of dump files:
splash calc energies : calculate KE,PE,total energy vs time
output to file called 'energy.out'
calc massaboverho : mass above a series of density thresholds vs time
output to file called 'massaboverho.out'
calc max : maximum of each column vs. time
output to file called 'maxvals.out'
calc min : minimum of each column vs. time
output to file called 'minvals.out'
calc diff : (max - min) of each column vs. time
output to file called 'diffvals.out'
calc amp : 0.5*(max - min) of each column vs. time
output to file called 'ampvals.out'
calc mean : mean of each column vs. time
output to file called 'meanvals.out'
calc rms : (mass weighted) root mean square of each column vs. time
output to file called 'rmsvals.out'
the above options all produce a small ascii file with one row per input file.
the following option produces a file equivalent in size to one input file (in ascii format):
calc timeaverage : time average of *all* entries for every particle
output to file called 'time_average.out'
\end{verbatim}
Command-line options can be entered in any order on the command line (even after the dump file names). For more information on the convert utility (`splash to ascii') see \S\ref{sec:convert}. For details of the \verb+-o ppm+ or \verb+-o ascii+ option see \S\ref{sec:writepixmap}. For details of the \verb+-ev+ option, see \S\ref{sec:evsplash}.
\section{Basic \splash usage}%HEVEA\cutname{basics.html}
\label{sec:basic}
\subsection{Simple two column plot}
Once you have successfully compiled \splash with a read data file that will read your data format,
\splash is invoked with the name of the data
file(s) on the command line, e.g.
\begin{verbatim}
splash myrun*.dat
\end{verbatim}
where splash should be replaced with `asplash', `gsplash' etc. depending on the data format. \\
After a successful data read, the menu should appear as something like the
following (the example given is for a ``minidump'' from Stephan Rosswog's SPH code):
\begin{verbatim}
dprice$ rsplash minidump.00001
\end{verbatim}
\begin{verbatim}
_ _
(_) _ _ _ _ (_)_
_ (_) ___ _ __ | | __ _ ___| |__ (_) _ (_)
_ (_) _ / __| '_ \| |/ _` / __| '_ \ _ (_)
(_) _ (_) \__ \ |_) | | (_| \__ \ | | | _ (_) _
(_) _ |___/ .__/|_|\__,_|___/_| |_| (_) _ (_)
(_) (_)|_| (_) (_) (_)(_) (_)(_) (_)(_)
( B | y ) ( D | a | n | i | e | l ) ( P | r | i | c | e )
...etc...
\end{verbatim}
\begin{verbatim}
You may choose from a delectable sample of plots
-------------------------------------------------------
1) x 7) particle mass
2) y 8) B\dx
3) z 9) B\dy
4) h 10) B\dz
5) \gr 11) div B
6) T
-------------------------------------------------------
12) multiplot [ 4 ] m) set multiplot
-------------------------------------------------------
d(ata) p(age) o(pts) l(imits) le(g)end h(elp)
r(ender) v(ector) x(sec/rotate) s,S(ave) q(uit)
-------------------------------------------------------
Please enter your selection now (y axis or option):
\end{verbatim}
The simplest plot is of two quantities which are not both coordinates. For
example, to plot density vs smoothing length, type
\begin{verbatim}
Please enter your selection now (y axis or option): 5
(x axis) (default=1): 4
Graphics device/type (? to see list, default /xwin): /xw
\end{verbatim}
The \verb+default=+ refers to the default value assigned if you just press the return key. The last prompt asks for the device to which output should be directed. A full list of available graphics devices is given by typing `?' at the prompt. Some of the most useful devices are given in table \ref{tab:devices}. In the
above we have selected the X-window driver which means that the output is sent to the
screen (provided X-windows is running), as demonstrated in the screenshot shown in Figure \ref{fig:rhoh}.
Many useful tasks can now be achieved by moving the mouse to the plot window and selecting areas or pressing keystrokes -- this is ``interactive mode''. Pressing `h' in the plot window shows (in the terminal) the full list of commands. Of the more useful ones are: pressing `l' with the mouse over the colour bar to use a logarithmic axis, press 'a' on either the colour bar or inside the plot to adapt the plot limits, select an area with the mouse to zoom. See also \S\ref{sec:interactive}.
To exit the plot, move the mouse to the plot window and press 'q' (quit). To exit \splash altogether press 'q' again from the \splash main menu (in the terminal).
\begin{figure}[ht]
\begin{center}
\includegraphics[width=0.8\textwidth]{rhoh.jpg}
\caption{Screenshot of simple two column plot to an X-window}
\label{fig:rhoh}
\end{center}
\end{figure}
\begin{table}[h]
\centering
\begin{tabular}{|l|l|l|l|}
\hline
\verb+/xw+, \verb+/xwin+ & X-Window (interactive) & \verb+/png+ & Portable Network Graphics (bitmap) \\
\verb+/eps+ & Encapsulated postscript (one file per page) & \verb+/svg+ & Scalable Vector Graphics \\
\verb+/pdf+ & PDF & \verb+/null+ & null device (no output) \\
\verb+/ps+ & Postscript (all pages in one file) & & \\
\hline
\end{tabular}
\caption{Commonly used graphics devices available in \giza}
\label{tab:devices}
\end{table}
\subsection{Rendered plots}
\label{sec:renderplot}
A more complicated plot is where both the $x-$ and $y-$ axes refer to coordinates. For example
\begin{verbatim}
Please enter your selection now (y axis or option):2
(x axis) (default=1): 1
(render) (0=none) ([0:11], default=0):5
(vector plot) (0=none, 8=B) ([0:8], default=0):0
Graphics device/type (? to see list, default /xwin): /xw
\end{verbatim}
Notice that in this case that options appeared for rendered and vector plots. Our choice of ``5'' at the (render) prompt corresponds to column 5, which in this case is the density, producing the plot shown in the screenshot in Figure~\ref{fig:renderplot}.
\begin{figure}[h]
\begin{center}
\includegraphics[width=0.8\textwidth]{renderplot.jpg}
\caption{Screenshot of 3D column density plot to an X-window}
\label{fig:renderplot}
\end{center}
\end{figure}
Note that the render prompts only appear if, in the read\_data subroutine, values are set for the integer parameters irho, ipmass and ih corresponding to the locations of density, particle mass and smoothing length in the data arrays and provided the number of coordinate dimensions is 2 or greater (\splash can be used for SPH codes in 1, 2 and 3 dimensions and even for plotting ascii data where there are no ``coordinates'').
\subsection{Cross section slice}
To plot a cross section slice instead of a projection in 3D, type 'x' at the main menu to open the 'cross section/3D plotting options' menu and choose option 1 ``switch between cross section and projection''. Then re-plot the rendered plot again (exactly as in the previous example \S\ref{sec:renderplot}), setting the slice position at the prompt:
\begin{verbatim}
enter z position for cross-section slice: ([-8.328:8.327], default=0.000):
\end{verbatim}
which produces the plot shown in the screenshot in Figure~\ref{fig:renderplot_xsec}.
\begin{figure}[h]
\begin{center}
\includegraphics[width=0.8\textwidth]{renderplot_xsec.jpg}
\caption{Screenshot of 3D cross section slice plot to an X-window}
\label{fig:renderplot_xsec}
\end{center}
\end{figure}
\subsection{Vector plots}
A prompt to plot vector arrows on top of rendered plots (or on top of particle plots) appears whenever vectors are present in the data (for details of how to specify this in your data read, see \S\ref{sec:writeyourown}), taking the form:
\begin{verbatim}
(vector plot) (0=none, 8=B) ([0:8], default=0):0
\end{verbatim}
where the number refers to the column of the first component of the vector quantity.
Vector plots in 3D show either the integral of each component along the line of sight or, for cross sections, the vector arrows in a cross section slice (depending on whether a projection or cross section has been selected for 3D plots -- see the rendering examples given previously). In 2D vector plots simply show the vector arrows mapped to a pixel array using the SPH kernel.
Settings related to vector plots can be changed via the v)ector plot submenu (\S\ref{sec:vectorplots}). The size of the arrows is set by the maximum plot limit over all of the vector components. Alternatively the arrow size can be changed interactively using 'v', 'V' (to decrease and increase the arrow size respectively) and 'w' (to automatically adjust the arrow size so that the longest arrow is of order one pixel width).
\subsection{Contour plots}
To plot contours of a quantity instead of a rendered plot, simply set the colour scheme used for rendering to 0 (contours only) via the ``change colour scheme'' option in the r)ender menu (type ``r2'' from the main menu as a shortcut to option 2 in the render menu).
Contours of an additional quantity can also be plotted on top of a render plot. However the prompt for an additional contour plot does not appear by default -- it can be turned on via the ``plot contours'' option in the r)ender menu (type ``r3'' at the main menu as a shortcut). With this option set \emph{and a non-zero response to the render prompt}, a prompt appears below the render prompt:
\begin{verbatim}
(render) (0=none) ([0:11], default=0):5
(contours) (0=none) ([0:11], default=0):6
\end{verbatim}
Entering the column to use in the contour plot at this prompt (e.g. column 6 in the above example would correspond to the temperature) gives a rendered plot with overlaid contours.
Entering the same quantity used in the rendering at this prompt (e.g. column 5 in the above example) triggers a subsequent prompt for the contour limits which can then be set differently to those used in the render plot. In this way it is possible to make a plot where the density of one particle type is shown by the rendered plot and the density of another particle type (with different limits) is shown by contours. This can be achieved because once contour plotting is turned on, the contribution of a given particle type to either the contours or rendered plots can be turned on or off via the ``turn on/off particles by type'' option in the particle plot o)ptions menu.
\subsection{Moving forwards and backwards through data files}
If you have put more than one file on the command line (or alternatively the file contains more than one dump), it is then possible to move forwards and backwards through the data by pressing the space bar with the cursor in the plot window (this is ``interactive mode''). To see the keystrokes for moving backwards or moving forwards/backwards by a specified number of steps, press 'h' in interactive mode. If you plot to a non-interactive device, \splash simply cycles through all the files on the command line automatically.
\subsection{Zooming in and out / changing plot limits}
Having plotted to an interactive device (e.g. /xw), tasks such as zooming in and out, selecting, colouring and hiding particles, changing the limits of both the plot and the colour bar and many other things can be achieved using either the mouse (i.e., selecting an area on which to zoom in) or by a combination of the mouse and a keystroke (e.g. move the mouse over a particle and press 'c' to see the size of the smoothing circle for that particle). One of the most useful commands in interactive mode is 'a' (adapt plot limits) which can be used to restore the plot limits to the maximum values for the data currently plotted (similarly pressing 'a' on the colour bar resets the colour bar limits to the minimum and maximum values of the rendered quantity). Pressing 'h' in interactive mode (that is, with your mouse in the plotting window) gives the full list of interactive commands (note that the text appears in the terminal from which \splash was invoked). Press 's' in the plot window to save changes between timesteps, otherwise the settings will revert when you move to the next timestep.
These tasks can also be achieved non-interactively by a series of drop-down submenus invoked from the main menu by typing a single character. For example limits changing options are contained in the l)imits submenu, so to manually set plot limits we would type ``l'' from the main menu, then ``2'' for option 2 (set manual limits) and follow the prompts to set the limits for a particular data column.
\subsection{Producing an encapsulated postscript figure for a paper}
\label{sec:postscript}
Producing a postscript plot suitable for inclusion in a \LaTeX file is simple: at the device prompt, type
\begin{verbatim}
Graphics device/type (? to see list, default /xw): /eps
\end{verbatim}
that is, instead of ``/xw'' (for an X-window), simply type ``/eps'' or ``.eps'' to use the encapsulated postscript driver. This produces a file which by default is called \verb+splash.eps+, or if multiple files have been read, a sequence of files called \verb+splash_0000.eps+, \verb+splash_0001.eps+, etc. To specify both the device and filename, type the full filename (e.g. \verb+myfile.eps+) as the device. Files produced in this way can be directly incorporated into \LaTeX using standard packages such as graphicx, psfig or epsfig.
Note that postscript devices do not have a `background' colour, so plots with a `black' background and `white' foreground will have invisible axes labels when viewed in (e.g.) gv (actually, they are there in white but the background is transparent - try inserting the figure into Keynote or Powerpoint with a dark background). For plots in papers you will therefore need to use a `black' or similarly dark foreground colour (set via the p)age submenu). When setting the foreground and background colours an option appears such that annotation drawn over the rendered region can be drawn in the opposite colour - thus enabling black axes labels (off the plot) but white text in the legend (over the rendered area).
\subsection{Producing a sequence of plots for a movie}
\label{sec:movies}
To make a movie of your simulation, first specify all of the files you want to use on the command line:
\begin{verbatim}
> splash dump_*
\end{verbatim}
and use an interactive device to adjust options until it looks right (hint: for the nicest movies, best thing is to delete nearly all of the annotation, e.g. using the backspace key in interactive mode). If in interactive mode type 's' to save the current settings, then plot the same thing again but to a non-interactive device. For example, to generate a sequence of png files:
\begin{verbatim}
Graphics device/type (? to see list, default /xw): /png
\end{verbatim}
This will generate a series of images named \verb+splash_0000.png+, \verb+splash_0001.png+, \verb+splash_0002.png+ corresponding to each new plotting page generated (or enter ``\verb+myfile.png+'' at the device prompt to generate \verb+myfile_0000.png+, \verb+myfile_0001.png+, \verb+myfile_0002.png+\ldots).
Having obtained a sequence of images there are a variety of ways to make these into an animation using both free and commercial software. Suggestions on software packages to use for Mac, Linux and Windows can be found in the online faq (\url{http://users.monash.edu.au/~dprice/splash/faqs.html}). I generally use the application ``graphic converter'' on Mac OS/X which makes quicktime movies from a sequence of images.
\subsection{Ten quick hints for producing good-looking plots}
In this section I have listed ten quick suggestions for simple changes to settings which can improve the look of a visualisation substantially compared to the default options. These are as follows:
\begin{enumerate}
\item {\bf Log the colour bar.} To do this simply move the cursor over the colour bar and hit ``l'' (for log). Or non-interactively via the ``apply log or inverse transformations to columns'' option in the l)imits menu.
\item {\bf Adjust the colour bar limits}. Position the mouse over the colour bar and left-click. To revert to the widest max/min possible for the data plotted, press `a' with the cursor positioned over the colour bar. Limits can also be set manually in the l)imits submenu.
\item {\bf Try changing the colour scheme}. Press `m' or `M' in interactive mode to cycle forwards or backwards through the available colour schemes.
\item {\bf Change the paper size}. To produce high-resolution images/movies, use the ``change paper size'' option in the p)age menu to set the paper size in pixels.
\item {\bf Try using normalised interpolations}. If your simulation does \emph{not} involve free surfaces (or alternatively if the free surfaces are not visible in the figure), turning the ``normalise interpolations'' option on (in the r)ender submenu) may improve the smoothness of the rendering. This is turned off by default because it leads to funny-looking edges.
\item {\bf Remove annotation/axes}. For movies, often axes are unnecessary and detract from the visual appeal. Axes, the colour bar and the various legends can be turned off in interactive mode by positioning the cursor appropriately and pressing backspace. Alternatively each can be turned off manually -- axes via the ``axes options'' option in the p)age submenu; the colour bar by the ``colour bar options'' entry in the r)ender menu and the legends via options in the leg)end menu.
\item {\bf Change axes/page colours}. The background colour (colour of the page) and foreground colour (used for axes etc) can be changed vie the ``set foreground/background colours'' option in the p)age submenu.
\item {\bf Move the legend or turn it off}. The time legend can be moved by positioning the mouse and pressing `G' in interactive mode. The legend can be turned off in the le(g)end submenu or by pressing backspace in interactive mode. Similarly the vector plot legend can be turned on/off in the v)ector submenu and moved by positioning the cursor and pressing `H'.
\item {\bf Use physical units on the axes}. These can be set via the d)ata submenu. See \S\ref{sec:changingunits} for more details.
\item {\bf Save settings to disk!} Don't waste your effort without being able to reproduce the plot you have been working on. Pressing `s' in interactive mode only saves the current settings for subsequent timesteps. Pressing `s' from the main menu saves these settings to disk. Pressing `S' from the main menu saves both the plot options \emph{and} the plot limits, so that the current plot can be reproduced exactly when \splash is next invoked. Adding an ``a'', as in ``SA'', ``SA'' or ``sa'' to the save options gives a prompt for a different prefix to the filenames (e.g. \verb+splash.defaults+ becomes \verb+myplot.defaults+), which \splash can be invoked to use via the \verb+-p+ command line option (e.g. \verb+splash -p myplot file1 file2...+).
\end{enumerate}
\section{Changing plot settings}%HEVEA\cutname{settings.html}
%HEVEA\cutdef{subsection}
The plot settings may be changed in a series of submenus. The options set using
the submenus can be saved using the (s)ave option from the menu. This saves all of
the current options to a file called \verb+splash.defaults+ in the current directory, which is
automatically read upon starting \splash the next time. To revert to default options, simply delete this file.
Pressing `S' from the main menu saves both the \verb+splash.defaults+ file and also saves the plot limits to a file called \verb+splash.limits+. This file is a simple two-column ascii file corresponding to the minimum and maximum plot limits for each column of data. Thus saving using 'S' means that exactly the same plot can be plotted next time \splash is invoked, where saving using 's' means that the plot settings will be the same although the limits will be different. To reset the plot limits either adjust the limits and press 'S' again or simply delete the splash.limits file.
\subsection{set (m)ultiplot}%HEVEA\cutname{multiplot.html}
\label{sec:multiplot}
\subsubsection{ Plotting more than one column from the same file on the same page (multiplot)}
\label{sec:multiplotsetup}
Press 'm' (``set multiplot'') from the main menu to set up a multiplot. Note that a ``multiplot'' (multiple columns plotted from the same file) is different to plotting ``multiple plots per page'' (divide the plotting page up into panels). The number of panels across and down on a page can be changed (see \ref{sec:nacrossndown}) irrespective of whether or not you are also plotting multiple columns from the same file.
Once you have gone through the options to set up a multiplot, to actually plot what you have set simply type the number of the column corresponding to ``multiplot'' at the $y-$axis prompt.
\subsubsection{ Plotting each particle type in a different panel (multiplot)}
To make a plot using different particle types in each panel (e.g. gas density in one panel, dust or dark matter density in another), use 'm' (``set multiplot'') from the main menu. If multiple types are present in the data read, the option appears to specify the particular types you want to use for each plot.
For example, after pressing `m' at the main menu we eventually arrive at the question:
\begin{verbatim}
use all active particle types? (default=yes): n
\end{verbatim}
Answering ``no'' brings up a possible list of types:
\begin{verbatim}
1: use gas particles
2: use ghost particles
3: use sink particles
4: use star particles
5: use unknown/dead particles
Enter type or list of types to use ([1:5], default=1): 1,3
\end{verbatim}
Thus entering e.g. ``1,3'' specifies that only gas and sink particles should be used for this plot.
Note that this is more specific than simply turning particle types on and off for \emph{all} plots, which can be achieved via the ``turn on/off particles by type'' option in the o) menu (see \S\ref{sec:plotparticlesbytype}).
\subsection{(d)ata options}%HEVEA\cutname{dmenu.html}
The following can all be achieved from the d)ata options menu:
\subsubsection{ Re-reading the initial data / changing the dump file}
\label{sec:d1}
The data can be re-read from the dump file or a new dump file can be selected by choosing the d)ata menu, option 1 (or just ``d1'' from the main menu). In practise it is usually faster to exit \splash and restart with the new dump file name on the command line (remember to save by pressing 'S' from the main menu before exiting to save both the current settings and the plot limits -- then you can continue plotting with the current settings using a new dump file).
If you have placed more than one file on the command line, then pressing space in interactive mode will read (and plot) the next file (press 'h' in interactive mode for a full list of commands - you can move forwards and backwards using arbitrary jumps). For non-interactive devices or where interactive mode is turned off dump files are cycled through automatically, plotting the same plot for each file/timestep.
\subsubsection{ Using only a subset of data files / plotting every $n-$th dump file}
\label{sec:subsetofsteps}
When \splash is invoked with more than one filename on the command line (for example, where all files are selected with something like ``splash DUMP*'') it is often helpful to use only a subset of the files. This can be set in the d)ata menu, selecting option 2 ``change number of timesteps used''. This prompts something like:
\begin{verbatim}
Start at timestep ([1:10], default=1):
End at timestep ([1:10], default=10):
Frequency of steps to read ([1:10], default=1):
\end{verbatim}
so that the beginning, end and frequency (e.g. 2 would mean read every second step) of dump files to use can be set.
To plot a subset of the data files in *any* order, see \S\ref{sec:selectedstepsonly}.
Of course, another way to achieve the same thing is to explicitly order the files on the command line. A method I often use is to write all filenames to a file, e.g.
\begin{verbatim}
> ls DUMP* > splash.filenames
\end{verbatim}
then edit the file to list only the files I want to use, then invoke \splash with no files on the command line:
\begin{verbatim}
> splash
\end{verbatim}
which will use the list of files specified in the \verb+splash.filenames+ file.
\subsubsection{ Plotting a subset of data files in non-sequential order}
\label{sec:selectedstepsonly}
A subset of data files from the command line can be chosen in any order using the ``plot selected steps only'' option from the d)ata submenu, which then prompts the user to enter something like the following:
\begin{verbatim}
Enter number of steps to plot ([1:10], default=0):5
Enter step 1 ([1:10], default=1):5
Enter step 2 ([1:10], default=2):2
Enter step 3 ([1:10], default=3):1
Enter step 4 ([1:10], default=4):4
Enter step 5 ([1:10], default=5):3
\end{verbatim}
Note that only a limited number of steps can be selected in this way. An alternative way is to order the files on the command line before invoking \splash (see \S\ref{sec:subsetofsteps}).
\subsubsection{ Plotting more than one file without re-reading the data from disk}
\label{sec:buffering}
For small data sets (or a small number of dump files) it is often useful to read all of the data into memory so that you can move rapidly forwards and backwards between dumps (e.g. in interactive mode, or where both dumps are plotted on the same page) without unnecessary re-reading of data from disk. This is achieved by turning ``buffering of data'' on in the d)ata menu (provided you have the memory of course!!). Non-buffered data means that only one file at a time is read.
\subsubsection{ Calculating additional quantities not dumped}
Turn ``calculate extra quantities'' on in the d)ata menu. As of \splash version 1.13.0 it is possible to specify new columns of data as completely arbitrary functions of the data read from the SPH particles. Option d5 in the data menu leads, for a typical data read, to a prompt similar to the following:
\begin{verbatim}
Specify a function to calculate from the data
Valid variables are the column labels, 't', 'gamma', 'x0', 'y0' and 'z0' (origin setting)
Spaces, escape sequences (\d) and units labels are removed from variable names
Note that previously calculated quantities can be used in subsequent calculations
Examples based on current data:
r = sqrt((x-x0)**2 + (y-y0)**2 + (z-z0)**2)
pressure = (gamma-1)*density*u
|v| = sqrt(vx**2 + vy**2 + vz**2)
Enter function string to calculate (blank for none) (default=""):
\end{verbatim}
Thus, one can for example calculate the pressure from the density and thermal energy according by copying the second example given. Note that the function calculation is completely general and can use any of the columns read from the file, the time for each step (`\verb+t+'), the adiabatic index $\gamma$ (`\verb+gamma+') and the current origin setting (\verb+x0+, \verb+y0+ and \verb+z0+). Previously calculated quantities can also be used - e.g. in the above example we could further compute, say, an entropy variable using \verb+s=pressure/density^gamma+ after the pressure has been specified. The resultant quantities appear in the main splash menu as standard columns just as if they had been read from the original data file.
The origin for the calculation of radius can be changed via the ``rotation on/off/settings'' option in the x) submenu. If particle tracking limits are set (see \S\ref{sec:track}) the radius is calculated relative to the particle being tracked.
Note that if you simply want to multiply a column by a fixed number (e.g. say you have sound speed squared and you want to plot temperature) - this can also be achieved by defining a unit for the column (i.e., a factor by which to multiply the column by) -- see \S\ref{sec:physicalunits} for details. The corresponding label can be changed by creating a \verb+splash.columns+ file (or for the ascii read just a file called `columns') containing labels which are used to override the default ones from the data read (one per line) -- see \S\ref{sec:columnsfile} for more details.
See also \S\ref{sec:geom} for how to transform vectors (and positions) into different coordinate systems.
\subsubsection{ Plotting data in physical units}
\label{sec:physicalunits}
Data can be plotted in physical units by turning on the ``use physical units'' option in the d)ata submenu. The settings for transforming the data into physical units may be changed via the ``change physical unit settings'' option in the d)ata menu. (see \S\ref{sec:changingunits})
For some data reads (sphNG, srosph) the scalings required to transform the data into physical units are read from the dump file. These are used as the default values but are overridden as soon as changes are made by the user (that is, by the presence of a `splash.units' file) (see \S\ref{sec:changingunits}).
\subsubsection{ Rescaling data columns}
See \S\ref{sec:physicalunits}.
\subsubsection{ Changing the default column labels}
\label{sec:columnsfile}
The labelling of columns is usually specific to the data format read (except in the case of the ascii read, asplash, where columns are labelled by the creation of a file called `columns'). Aside from changing the labels in the \verb+read_data+ file specific to the format you are reading, it is also possible to override the labelling of columns at runtime by creating a file called \verb+splash.columns+ (or with a different prefix if the \verb+-p+ command line option is used), with one label per line corresponding to each column read from the dump file, e.g.
\begin{verbatim}
column 1
column 2
column 3
my quantity
another quantity
\end{verbatim}
Note that the labels in the \verb+splash.columns+ file \emph{will not} override the labels of coordinate axes or labels for vector quantities (as these require the ability to be changed by plotting in different coordinate systems -- see \S\ref{sec:geom}).
\subsubsection{ Plotting column density in g/cm$^{2}$ without having x,y,z in cm}
See \S\ref{sec:changingunits}. In addition to units for each column (and a unit for time -- see \S\ref{sec:timeunits}) a unit can be set for the length scale added in 3D column integrated plots. The prompt for this appears after the units of either $x$, $y$, $z$ or $h$ has been changed via the ``change physical unit settings'' option in the d)ata menu. The length unit for integration is saved in the first row of the splash.units file, after the units for time.
See \S\ref{sec:setprojlabel} for details on changing the default labelling scheme for 3D column integrated (projection) plots.
\subsubsection{ Changing physical unit settings}
\label{sec:changingunits}
The settings for transforming the data into physical units may be changed via the ``change physical unit settings'' option in the d)ata menu. To apply the physical units to the data select the ``use physical units'' option in the d)ata submenu.
The transformation used is $new= old*units$ where ``old'' is the data as read from the dump file and ``new'' is the value actually plotted. The data menu option also prompts for a units label which is appended to the usual label. Brackets and spaces should be explicitly included in the label as required.
Once units have been changed, the user is prompted to save the unit settings to a file called \verb+splash.units+. Another way of changing units is simply to edit this file yourself in any text editor (the format is fairly self-explanatory). To revert to the default unit settings simply delete this file. To revert to code units turn ``use physical units'' off in the d)ata menu.
A further example of where this option can be useful is where the $y-$axis looks crowded because the numeric axis labels read something
like $1\times 10^{-4}$. The units option can be used to rescale the data so
that the numeric label reads $1$ (by setting $units=10^{4}$) whilst the label string is amended to read $y
[\times 10^{-4}]$ by setting the units label to $ [ \times 10^{-4}]$.
\subsubsection{ Changing the axis label to something like $x$ $[ \times 10^{4} ]$}
See \S\ref{sec:changingunits}.
\subsubsection{ Changing the time units}
\label{sec:timeunits}
Units for the time used in the legend can be changed using the ``change physical unit settings'' in the d)ata menu. Changing the units of column zero corresponds to the time (appears as the first row in the `splash.units' file).
\subsection{(i)nteractive mode}%HEVEA\cutname{interactive.html}
\label{sec:interactive}
The menu option i) turns on/off interactive mode (alternatively use ``interactive mode on/off'' in the p)age submenu). With this option turned on (the default) and
an appropriate device selected (i.e., the X-window, not /gif or /ps), after
each plot the program waits for specific commands from the user. With the cursor
positioned anywhere in the plot window (but not outside it!), many different
commands can be invoked. Some functions you may find useful are: Move through timesteps by pressing the space bar (press
`b' to go back); zoom/select particles by selecting an area with the mouse; rotate the
particles by using the $<$, $>$,[, ] and $\backslash$, / keys; log the axes by holding the cursor
over the appropriate axis and pressing the `l' key. Press `q' in the plot window
to quit interactive mode.
A full list of these commands is obtained by holding
the cursor in the plot window and pressing the `h' key (h for help). Note that changes made in interactive mode will only be saved by pressing the
`s' (for save) key. Otherwise pressing the space bar (to advance to the next
timestep) erases the changes made whilst in interactive mode. A more limited
interactive mode applies when there is more than one plot per page.
Many more commands could be added to
the interactive mode, limited only by your imagination. Please send me your suggestions!
\subsubsection{ Adapting the plot limits}
Press `a' in interactive mode to adapt the plot limits to the current minimum and maximum of the quantity being plotted. With the mouse over the colour bar, this applies to the colour bar limits. Also works even when the page is subdivided into panels. To adapt the size of the arrows on a vector plot, press `w'. To use ``adaptive plot limits'' (where the limits change at every timestep), see \S\ref{sec:adapt}.
\subsubsection{ Making the axes logarithmic}
Press 'l' in interactive mode with the mouse over either the x or y axis or the colour bar to use a logarithmic axis. Pressing 'l' again changes back to linear axes. To use logarithmic labels as well as logarithmic axes, see \S\ref{sec:loglabels}.
\subsubsection{Cycling through data columns interactively}
Use `f' in interactive mode on a rendered plot to interactively `flip' forwards to the next quantity in the data columns (e.g. thermal energy instead of density). Use 'F' to flip backwards.
\subsubsection{ Colouring a subset of the particles and retaining this colour through other timesteps}
\label{sec:colourparts}
\begin{figure}
\centering
\includegraphics[width=0.8\textwidth]{colourparts.pdf}
%\begin{tabular}{cc}
%\includegraphics[angle=270,width=0.4\textwidth]{colourparts.pdf} &
%\includegraphics[angle=270,width=0.4\textwidth]{colourparts_highdens.pdf}
%\end{tabular}
\caption{Example of particles coloured interactively using the mouse (left) and selection using a parameter range (right), which is the same as the plot on the left but showing only particles in a particular density range (after an intermediate plot of density vs x on which I selected a subset of particles and hit 'p')}
\label{fig:colourparts}
\end{figure}
In interactive mode, select a subset of the particles using the mouse (that is left click and resize the box until it contains the region you require), then press either 1-9 to colour the selected particles with colours corresponding to plotting library colour indices 1-9, press 'p' to plot only those particles selected (hiding all other particles), or 'h' to hide the selected particles. An example is shown in the left panel of Figure~\ref{fig:colourparts}. Particles retain these colours between timesteps and even between plots. This feature can therefore be used to find particles within a certain parameter range (e.g. by plotting density with x, selecting/colouring particles in a given density range, then plotting x vs y in which the particles will appear as previously selected/coloured). An example of this feature is shown in the right panel of Figure~\ref{fig:colourparts} where I have plotted an intermediate plot of density vs x on which I selected a subset of particles and hit 'p' (to plot only that subset), then re-plotted x vs y with the new particle selections.
To ``un-hide'' or ``de-colour'' particles, simply select the entire plotting area and press ``1'' to restore all particles to the foreground colour index.
Particles hidden in this manner are also no longer used in the rendering calculation. Thus it is possible to render using only a subset of the particles (e.g. using only half of a box, or only high density particles). An example is shown in Figure~\ref{fig:rendersubset}.
To colour the particles according to the value of a particular quantity, see \S\ref{sec:colournotrender}.
Note that selection in this way is based on the particle \emph{identity}, meaning that the parameter range itself is not preserved for subsequent timesteps, but rather the subset of particles selected from the initial timestep. This can be useful for working out which particles formed a particular object in a simulation by selecting only particles in that object at the end time, and moving backwards through timesteps retaining that selection.
\subsubsection{ Working out which particles formed a particular object in a simulation}
This can be achieved by selecting and colouring particles at a particular timestep and plotting the same selection at an earlier time. See \S\ref{sec:colourparts} for details.
\subsubsection{ Plotting only a subset of the particles}
To turn plotting of certain particle \emph{types} on and off, see \S\ref{sec:plotparticlesbytype}. To select a subset of the particles based on restrictions of a particular parameter or by spatial region see \S\ref{sec:colourparts}.
\subsubsection{ Rendering using only a subset of the particles}
\label{sec:rendersubset}
Particles can be selected and `hidden' interactively (see \S\ref{sec:colourparts}) -- for rendered plots `hidden' particles are also not used in the interpolation calculation from the particles to the pixel array. An example is shown in Figure~\ref{fig:rendersubset}, where I have taken one of the rendered examples in \S\ref{sec:basic}, selected half of the domain with the mouse and pressed 'p' to plot only the selected particles. The result is the plot shown.
\begin{figure}[h]
\begin{center}
%\includegraphics[angle=270,width=0.5\textwidth]{rendersubset.pdf}
\includegraphics[width=0.5\textwidth]{rendersubset.pdf}
\caption{Example of rendering using only a subset of the particles. Here I have selected only particles on the right hand side of the plot using the mouse and hit 'p' to plot only those particles.}
\label{fig:rendersubset}
\end{center}
\end{figure}
Note that the selection done in this manner is by default a restriction based on \emph{particle identity} -- that is, the same particles will be used for the plot in subsequent dumps (allowing one to easily track the Lagrangian evolution of a patch of gas). However \splash also has the ability to select based on particular parameter ranges (i.e., independent of time), called a `parameter range restriction' which is also more powerful in the sense that it can be saved to the \verb+splash.limits+ file -- see \S\ref{sec:rangerestrict} for more details. A range restriction can be set in interactive mode by selecting the restricted box using the mouse and pressing `x', `y' or `r' to restrict the particles used to the x, y (or r for both x and y) range of the selected box respectively. Pressing `S' at the main menu will save such range restrictions to the \verb+splash.limits+ file.
\subsubsection{ Tracking a set of particles through multiple timesteps}
See \S\ref{sec:rendersubset}.
\subsubsection{ Taking an oblique cross section interactively}
\label{sec:obliquexsec}
It is possible to take an oblique cross section through 3D data using a combination of rotation and cross section slice plotting. To set the position interactively, press 'x' in interactive mode to draw the position of the cross section line (e.g. on an x-y plot this then produces a z-x plot with the appropriate amount of rotation to give the cross section slice in the position selected). Note that this will work even if the current plot is a 3D column integrated projection (in this case the setting ``projection or cross section'' changes to ``cross section'' in order to plot the slice).
\subsection{(p)age options}%HEVEA\cutname{pmenu.html}
\label{sec:optionspage}
Options related to the page setup are changed in the p)age submenu.
\subsubsection{ Overlaying timesteps/multiple dump files on top of each other}
\label{sec:nstepsontopofeachother}
It is possible to over-plot data from one file on top of data from another using the ``plot n steps on top of each other'' option from the p)age submenu. Setting $n$ to a number greater than one means that the page is not changed until $n$ steps have been plotted. Following the prompts, it is possible to change the colour of all particles between steps and the graph markers used and plot an associated legend (see below). Note that this option can also be used in combination with a multiplot (see \S\ref{sec:multiplot}) -- for example plotting the density vs x and pressure vs x in separate panels, then with $n > 1$ all timesteps will be plotted in \emph{each} panel).
When more than one timestep is plotted per page with different markers/colours, an additional legend can be
plotted (turn this on in the le(g)end submenu, or when prompted whilst setting the "plot n steps on top of each other" option). The text for this legend is just the filename by default (if one timestep per file) or just something dull like 'step 1' (if more than one timestep per file).
To change the legend text, create a file called \verb+legend+ in the working directory, with one label per line. The position of the legend can be changed either manually via the ``legend and title options'' in the p)age submenu, or by positioning the mouse in interactive mode and pressing 'G' (similar keys apply for moving plot titles and the legend for vector plots -- press 'h' in interactive mode for a full list).
\subsubsection{ Plotting results from multiple files in the same panel}
See \ref{sec:nstepsontopofeachother}.
\subsubsection{ Plotting more than one dump file on the same page}
Note that this is slightly different to ``plotting more than one dump file on the same panel''
\subsubsection{ Changing axes settings}
\label{sec:axessettings}
Axes settings can be changed in the p)age submenu, by choosing ``axes options''. The options are as follows:
\begin{verbatim}
-4 : draw box and major tick marks only;
-3 : draw box and tick marks (major and minor) only;
-2 : draw no box, axes or labels;
-1 : draw box only;
0 : draw box and label it with coordinates;
1 : same as AXIS=0, but also draw the coordinate axes (X=0, Y=0);
2 : same as AXIS=1, but also draw grid lines at major increments of the coordinates;
3 : draw box, ticks and numbers but no axes labels;
4 : same as AXIS=0, but with a second y-axis scaled and labelled differently
10 : draw box and label X-axis logarithmically;
20 : draw box and label Y-axis logarithmically;
30 : draw box and label both axes logarithmically.
\end{verbatim}
\subsubsection{ Turning axes off}
Plot axes can be turned off by choosing ``axes options'' in the p)age submenu or by deleting them using the backspace key in interactive mode. See \S\ref{sec:axessettings} for more details.
\subsubsection{ Turning axes labels off}
Axes labels and numbering can be turned off via the ``axes options'' option in the p)age submenu or by deleting them using the backspace key in interactive mode. See \S\ref{sec:axessettings} for more details.
\subsubsection{ Using logarithmic axes labels}
\label{sec:loglabels}
Logarithmic axes (that is where the quantity plotted is logged) can be set via the ``apply log or inverse transformations'' option in the l)imits submenu or simply by pressing 'l' with the cursor over the desired axis (or the colour bar) in interactive mode. By default the axes labels reads $log(x)$ and the number next to the axis is $-4$ when $x$ is 10$^{-4}$. Logarithmic axes labels (i.e., where the label reads $x$ and the number next to the axis is $10^{-4}$ with a logarithmic scale) can be specified by choosing the ``axes options'' option in the p)age submenu and setting the axes option to 10, 20 or 30 as necessary (see \S\ref{sec:axessettings} for more details).
\subsubsection{ Plotting a second, rescaled y-axis on the right hand side of a plot}
A second y axis can be added by selecting the axis=4 option in the ``axes option'' in the p)age submenu (see \S\ref{sec:axes settings}). This will prompt for the scaling and alternative label:
\begin{verbatim}
enter axis option ([-4:30], default=0): 4
enter scale factor for alternative y axis ([0.000:], default=1.000): 10.0
enter label for alternative y axis (default=""): y [other units]
\end{verbatim}
\subsubsection{ Changing the size of the plotting surface}
\label{sec:papersize}
The physical size of the viewing surface used for plotting can be changed via the ``change paper size'' option in the p)age submenu. This affects the size of the X-window (if plotted to the screen) and the size of .png or images generated (if plotted to these devices). Several preset options are provided or the paper size in x and y can be explicitly specified in inches or pixels.
\subsubsection{ Dividing the plotting page into panels}
\label{sec:nacrossndown}
The plotting page can be divided into panels using the ``subdivide page into panels'' option in the p)age submenu. Note that for multiple plots per page (i.e., nacross $\times$ ndown $> 1$) a more limited interactive mode applies (basically because the data used for the plots is no longer stored in memory if there is more than one plot on the same page meaning that functionality such as selecting particles must be turned off).
\subsubsection{ Tiling plots with the same $x-$ and $y-$ axes}
\label{sec:tiling}
Plots with the same $x-$ and $y-$ axes are tiled if the tiling
option from the (p)age options menu (\S\ref{sec:optionspage}) is set. Tiling means that only one axis is shown where multiple plots share the same x or y axis and that the plots are placed as close to each other as possible. For rendered plots a shared colour bar is plotted which spans the full length of the page.
\subsubsection{ Using non-proportional scales for spatial dimensions}
\label{sec:squarexy}
By default if the x and y axes are both spatial coordinates, the axes are scaled proportionately. This can be changed via the ``spatial dimensions have same scale'' option in the p)age submenu.
\subsubsection{ Using non-square axes on coordinate plots}
See \S\ref{sec:squarexy}.
\subsubsection{ Changing the character height for axes, labels and legends}
The character height used for axes, labels and legends can be changed via the p)age setup options submenu. Note that the character height is relative to the paper size (which can also be changed -- see \S\ref{sec:papersize}).
\subsubsection{ Using a thicker line width on plots}
The line width used for axes and text can be changed via the p)age submenu. Note that line width changes are not always obvious when plotting to an interactive device (e.g. an X-window) but influence non-interactive devices strongly.
\subsubsection{ Changing the foreground and background colours}
\label{sec:pagecolours}
The background and foreground colour of a plot can be changed vie the ``set foreground/background colours'' option in the p)age submenu. Note that the background colour setting has no effect on postscript devices (see \S\ref{sec:postscript} for more details).
\subsubsection{ Plotting axes, legends and titles in white even when the labels are plotted in black}
By default, axes, legends and titles are plotted in the foreground colour (e.g. black). However if the plot itself is also largely black (e.g. when rendering or when lots of particles are plotted) it can be useful to overplot those parts of the axes and labelling which lie on top of the plotting surface in the background colour (e.g. white). A prompt for this is given when setting the ``set foreground/background colours'' option in the p)age submenu.
The prompt appears as follows:
\begin{verbatim}
---------------- page setup options -------------------
...
9) set foreground/background colours
enter option ([0:8], default=0):9
Enter background colour (by name, e.g. "black") (default=""):white
Enter foreground colour (by name, e.g. "white") (default=""):black
Overlaid (that is, drawn inside the plot borders) axis
ticks, legend text and titles are by default plotted in
the foreground colour [i.e., black].
Do you want to plot these in background colour [i.e., white] instead ? (default=no):y
\end{verbatim}
In the above I have selected a background colour of white, a foreground colour of black. Answering yes to the last question means that those parts of the axes which lie on top of the viewing surface (and any labels) will be plotted in white (the background colour) instead of the foreground colour (black).
\subsection{le(g)end and title options}%HEVEA\cutname{gmenu.html}
\subsubsection{ Adding titles to plots / repositioning titles}
\label{sec:title}
Plots may be titled individually by creating a file called \verb+splash.titles+ in
the current directory, with the title on each line corresponding to the position
of the plot on the page. Thus the title is the same between timesteps unless the
steps are plotted together on the same physical page. Leave blank lines for
plots without titles. For example, creating a file called \verb+splash.titles+ in
the current directory, containing the text:
\begin{verbatim}
plot one
plot two
plot three
\end{verbatim}
and positioning the title using the default options, will produce a plot with one of these titles on each panel.
\subsubsection{ Turning off/moving the time legend}
\label{sec:legendoff}
The position of the time legend can be set interactively by positioning the mouse in the plot window and pressing 'G'. To set the position non-interactively and/or change additional settings such as the justification, use the ``time legend on/off/settings'' option in the le(g)end submenu.
\subsubsection{ Changing the text in the time legend}
\label{sec:timelegendtext}
The text which appears the time legend (by default this is ``t='') can be changed via the ``time legend on/off/settings'' option in the le(g)end submenu.
To rescale the \emph{value} of the time displayed in the time legend (default value is as read from the dump file), see \S\ref{sec:timeunits}.
\subsubsection{ Making the legend read ``z='' instead of ``t=''}
See \ref{sec:timelegendtext}. An option to change the legend text is provided in the ``time legend on/off/settings'' option in the le(g)end submenu. The numeric value of the time legend is as read into the \verb+time+ array in the read\_data routine. This value can be rescaled by setting a unit for time (see \S\ref{sec:timeunits}).
\subsubsection{ Plotting the time legend on the first row/column of panels / nth panel only}
An option to plot the time legend on the first row or column of panels or on a single panel only appears in the in the le(g)end submenu.
\subsubsection{ Plotting a length scale on coordinate plots}
An option to plot a length scale (i.e., \verb+|---|+ with a label below it indicating the length) on coordinate plots (i.e., plots where both $x-$ and $y-$axes refer to particle coordinates) is provided in the le(g)end submenu.
\subsubsection{ Annotating a plot with squares, rectangles, arrows, circles and text}
Use the ``annotate plot'' option in the le(g)end submenu to annotate plots with a range of geometric objects (squares, rectangles, arrows, circles and text) with full control over attributes such as line width, line style, colour, angle and fill style.
Text annotation can also be added/deleted in interactive mode using \verb+ctrl-t+ (to add) and the backspace key (to delete). Text can also be added to plots by adding titles (\S\ref{sec:title}) which can be different in different panels. Text labels added using shape annotation differ from titles by the fact that they must appear the same in each panel and are positioned according to the world co-ordinates of the plot (rather than relative to the viewport). Shape text can also be displayed at arbitrary angles.
An option to plot length scales (\verb+|---|+) on coordinate plots is implemented separately via the ``plot scale on coordinate plots'' option in the le(g)end menu.
\subsubsection{ Adding your name to a plot/movie}
Arbitrary text annotation can be added/removed in interactive mode using \verb+ctrl-t+ (to add) and the backspace key (to delete) or via the ``annotate plot'' option in the le(g)end menu.
\subsection{particle plot (o)ptions}%HEVEA\cutname{omenu.html}
\label{sec:opts}
The following are tasks which can be achieved via options in the o) menu [particle plot o)ptions].
\subsubsection{ Plotting non-gas particles (e.g. ghosts, boundary, sink particles)}
\label{sec:plotparticlesbytype}
Particles of different types can be turned on or off (i.e., plotted or not) using the ``turn on/off particles by type'' option in the particle plot o)ptions submenu. This option also prompts to allow particles of non-SPH types to be
plotted on top of rendered plots (useful for sink or star particles - this option does not apply to SPH particle types). Turning SPH particle types on or off also determines whether or not they will be used in the rendering calculation (i.e., the interpolation to pixels). This particularly applies to ghost particles, where ghost particles will only be used in the rendering if they are turned on via this menu option.
(The fact that particles of a given type are SPH particles or not is specified by the \verb+UseTypeInRendering+
flags in the set\_labels part of the read\_data file).
\subsubsection{ Plotting non-gas particles on top of rendered plots}
An option to plot non-SPH particles on top of rendered plots (e.g. sink particles) can be set when turning particle types on/off via the ``turn on/off particles by type'' option in the particle plot o)ptions submenu (see \S\ref{sec:plotparticlesbytype}).
\subsubsection{ Using ghost particles in the rendering}
See \ref{sec:plotparticlesbytype}.
\subsubsection{ Turn off plotting of gas particles}
Particles can be turned on or off by type via the ``turn on/off particles by type'' option in the particle plot o)ptions submenu. See \ref{sec:plotparticlesbytype}.
\subsubsection{ Plotting dark matter particles}
\label{sec:darkmatter}
To plot dark matter particles (e.g. for the gadget read) the particle type corresponding to dark matter particles must be turned on via the ``turn on/off particles by type'' option in the o) submenu. Turning this option on means that dark matter particles will appear on particle plots.
To make a rendered plot of dark matter (e.g. showing column density), it is necessary to define smoothing lengths and a fake ``density'' for the dark matter particles. If your data read already supplies individual smoothing lengths for dark matter particles, the only thing to do is define a fake density field with a constant value (e.g. $\rho = 1$ for all dark matter particles). The actual density value does not matter, so long as it is non-zero, as the rendering for density does not use it unless the ``normalise interpolations'' option in the r)ender menu is set (which it is not by default). This is because SPLASH constructs the weight:
\begin{equation}
w_{part} = \frac{m_{part}}{\rho_{part} h_{part}^{\nu}},
\end{equation}
(see \citealt{splashpaper}) and then interpolates for any quantity A using
\begin{equation}
A_{pixels} = \sum_{part} w_{part} A_{part} W_{kernel},
\end{equation}
so if $A = \rho$ then the actual rho value cancels.
For the GADGET data read you can define the smoothing length for dark matter particles by setting the environment variable GSPLASH\_DARKMATTER\_HSOFT (see \S\ref{sec:gsplash} for details), which also triggers the creation of a fake density column as required. With this variable set dark matter particles are treated identically to SPH particles and can be rendered as usual (although the only meaningful quantity to render is the density). A much better way is to define smoothing lengths individually for dark matter particles, for example based on a local number density estimate from the relation
\begin{equation}
h \propto n^{-1/3}, \hspace{0.5cm} \textrm{where} \hspace{0.5cm} n_{i} = \sum_{j} W_{ij}.
\end{equation}
Actually, none of this should be necessary, as the gravity for dark matter should be softened with smoothing lengths defined like this in the first place. The historical practise of fixed softening lengths has arisen only because of confusion about what softening really means (and worries about energy conservation with adaptive softening lengths). What you are trying to do is solve Poisson's equation for the dark matter density field, defined with a kernel density estimate and using fixed softening lengths is not a way to get a good density... but don't get me started, read \citet{pm07} instead.
Note that for simulations using both SPH and dark matter particles, dark matter particles will contribute (incorrectly) to the SPH rendering when the environment variable is set and the plotting of dark matter particles is turned on. Thus to plot just gas column density in this case, dark matter particles must be turned off [via the o) menu option], and similarly to plot just dark matter density if both SPH and dark matter particles are present, SPH particles must be turned off.
\subsubsection{ Plotting a column density plot of dark matter/N-body particles}
See \ref{sec:darkmatter}.
\subsubsection{ Plotting sink particles}
\label{sec:plotsinks}
Sink particles will be plotted on particle plots once turned on via the ``turn on/off particles by type'' option in the particle plot o)ptions submenu. Setting this option also gives a prompt for whether or not to plot sink particles on top of rendered plots (to which the answer should be yes). See \ref{sec:plotparticlesbytype} for more details.
To plot sink particles as a circle scaled to the sink radius, select the appropriate marker type (32-35) in the ``change graph markers for each type'' option in the o) menu. This allows plotting of particles of a given type with circles, filled or open, proportional to their smoothing lengths. Thus, the smoothing length for sink particles needs to be set to their accretion radius (or at least proportional to it).
A good option for sinks (v1.15 onwards) is to print ``outlined'' filled circles (marker 34) --- these show up on both black or white backgrounds.
\subsubsection{ Plotting sink particles with size proportional to the sink radius}
See \ref{sec:plotsinks}.
\subsubsection{ Plotting a point mass particle with physical size}
See \ref{sec:plotsinks}.
\subsubsection{ Changing graph markers for each particle type}
The graph markers used to plot each particle type can be changed via the ``change graph markers for each type'' option in the particle plot o)ptions submenu. The full list of available markers is given in the documentation for \giza (also similar to the markers used in \textsc{pgplot}).
SPLASH also allows the particles to be marked by a circle proportional to the smoothing length for that particle, implemented as marker types 32-35 under the ``change graph markers for each type'' option in the o) menu.
\subsubsection{ Plotting each particle type in a different colour}
\label{sec:partcolours}
Each particle type can be plotted in a different colour via the ``set colour for each particle type'' option in the particle plot o)ptions submenu (press `o' from the main menu).
\subsubsection{ Changing the order in which different particle types are plotted}
The order in which particle types are plotted can be changed via the ``change plotting order of types'' option in the particle plot o)ptions submenu. Thus for example it is possible to make dark matter particles be plotted on top of gas particles rather than the default which is vice-versa. Note that at present this is only implemented for particle types which are stored contiguously (one after the other) in the data read, rather than mixed in with each other.
\subsubsection{ Plotting using lines instead of dots (e.g. for energy vs time plots)}
\label{sec:lines}
An option to plot a line joining all of the points on a plot can be set via the ``plot line joining particles'' option in the particle plot o)ptions submenu. When set, this option plots a line connecting the (gas only) particles
in the order that they appear in the data array. Useful mainly in one dimension or when plotting ascii data, although can give an indication of the relative closeness of the particles in memory and in physical space in higher dimensions. The line colours and styles can be changed.
To plot the line only with no particles, turn off gas particles using the ``turn on/off particles by type option'' from the o) submenu.
\subsubsection{ Plotting multiple lines with different colours/line styles and a legend}
When multiple timesteps are plotted on the same physical page, the line style can be
changed instead of the colour (this occurs when the change colour option is chosen for multiple steps per page
-- see the ``change plots per page" option in the p)age options submenu [\S\ref{sec:optionspage}]).
\subsubsection{ Joining the dots}
See \ref{sec:lines}.
\subsubsection{ Plotting the size of the smoothing circle around selected particles}
\label{sec:smoothingcircle}
On coordinate plots this option plots a circle of
radius $2h$ around selected particles.
This is primarily useful in debugging neighbour finding routines. Where only one of the axes is a
coordinate this function plots an error bar of length $2h$ in either direction is plotted
in the direction of the coordinate axis. See also \S\ref{sec:findingaparticle} for more details.
\subsubsection{ Locating a particular particle in the data set}
\label{sec:findingaparticle}
The best way to locate a particular particle in the data set is to use the ``plot smoothing circles'' option in the particle plot o)ptions submenu, e.g:
\begin{verbatim}
Please enter your selection now (y axis or option):o5
------------- particle plot options -------------------
Note that circles of interaction can also be set interactively
Enter number of circles to draw ([0:100], default=0):1
Enter particle number to plot circle around ([1:959], default=1): 868
\end{verbatim}
then upon plotting a coordinate plot (e.g. x vs y), particle 868 will be plotted with a circle of size $2h$ which makes it easy to distinguish from the other particles. See also \S\ref{sec:smoothingcircle}.
\subsubsection{ Making sure absolutely all particles are plotted}
By default \splash uses ``fast particle plotting'' for particle plots -- this is where the plotting surface is divided into pixels and only a limited number of particles per pixels is plotted (preventing slowdown due to lots of particles being plotted indistinguishably on top of each other). Use of this optimisation can be turned off \emph{just in case} in the particle plot o)ptions submenu, although there should almost never be a good reason to do so.
\subsubsection{ Plotting in different coordinate systems (e.g. cylindrical coordinates)}
\label{sec:geom}
The coordinates of position and of all vector components can be transformed into non-cartesian coordinate systems using the ``change coordinate system'' option in the particle plot o)ptions submenu. For example, a dump file with columns as follows:
\begin{verbatim}
-------------------------------------------------------
1) x 6) log density
2) y 7) v\dx
3) z 8) v\dy
4) particle mass 9) v\dz
5) h
-------------------------------------------------------
10) multiplot [ 4 ] m) set multiplot
-------------------------------------------------------
Please enter your selection now (y axis or option):
\end{verbatim}
choosing o), option 7) and choosing cylindrical coordinates then produces;
\begin{verbatim}
You may choose from a delectable sample of plots
-------------------------------------------------------
1) r 6) log density
2) phi 7) v\dr
3) z 8) v\dphi
4) particle mass 9) v\dz
5) h
-------------------------------------------------------
...
\end{verbatim}
transforming both coordinates and vectors into the chosen coordinate system. Note that rendering is disabled in coordinate systems other than those native to the file (i.e., anything non-cartesian for you -- part of the reason for this feature was that I was experimenting with SPH in cylindrical and spherical coordinates where the reverse transformation was necessary).
For 3D SPH simulations, extra columns will appear in the menu in cylindrical or spherical coordinates allowing plots of azimuthally-averaged surface density and Toomre Q parameter. For more details see \S\ref{sec:surfdens}.
Details of the coordinate transformations are given in \S\ref{sec:coordtransforms}.
If you have a coordinate system you would like implemented, please email me the details!
\subsubsection{ Plotting vector components in different coordinate systems}
See \S\ref{sec:geom}.
\subsubsection{ Plotting orbital velocities}
See \S\ref{sec:geom}.
\subsubsection{ Plotting against azimuthal angle/cylindrical radius/etc}
See \S\ref{sec:geom}.
\subsubsection{ Plotting the exact solution to common test problems}
\label{sec:exactsolns}
The following exact solutions are provided
\begin{itemize}
\item Any arbitrary function y = f(x,t) (can be plotted on any or all of the plots). The functions to be plotted can also be specified by creating a \verb+splash.func+ file with one function per line.
\item Hydrodynamic shock tubes (Riemann problem) -- a full solution is provided for all types of waves propagating in either direction.
\item Spherically-symmetric 3D sedov blast wave problem.
\item Polytropes (with arbitrary $\gamma$)
\item One and two dimensional toy stars. This is a particularly simple test
problem for SPH codes described in \citet{mp04}.
\item Linear wave. This simply plots a sine wave of a specified amplitude, period and
wavelength on the plot specified.
\item MHD shock tubes (tabulated). These are tabulated solutions for 7 specific MHD
shock tube problems.
\item h vs $\rho$. This is the exact solution relating smoothing length and density in
the form $h \propto (m/\rho)^{1/\nu}$ where $\nu$ is the number of spatial dimensions.
\item radial density profiles. For various models commonly used in $N-$body simulations.
\item Exact solution from a file. This option reads in an exact solution from the
filename input by the user, assuming the file contains two columns containing the $x-$ and $y-$ coordinates of
an exact solution to be plotted as a line on the plot specified.
\end{itemize}
Details of the calculation of the exact solutions are given in Appendix~\ref{sec:exact}. An example plot using the Sedov blast wave exact solution is shown in Figure~\ref{fig:sedov}.
\begin{figure}[h]
\begin{center}
\includegraphics[width=0.5\textwidth]{sedov_example.png}
\caption{Example of a plot utilising the Sedov blast wave exact solution. Taken from Rosswog \& Price (2007).}
\label{fig:sedov}
\end{center}
\end{figure}
\subsubsection{ Plotting an exact solution from a file}
See \S\ref{sec:exactsolns}. One of the options for exact solution plotting is to read the exact solution from either one or a sequence of ascii files, such that the results are plotted alongside the particle data. The filename(s) can be specified by the user and will be saved to the `splash.defaults' file so that the solution(s) will be read and plotted on subsequent invocations of \splash.
\subsubsection{ Changing the exact solution line style \& colour}
The line style and colour of the exact solution line can be changed via the ``exact solution plot options'' option in the o) submenu. This option can also be used to turn on/off calculation of various error norms
together with an inset plot of the residual error on the particles. See
Appendix~\ref{sec:exact} for details of the error norms calculated.
\subsubsection{ Setting the number of points used in an exact solution calculation}
The number of points used in an exact solution calculation can be changed via the ``exact solution plot options'' option in the o) submenu.
\subsubsection{ Plotting an inset plot of residual errors from an exact solution}
An inset plot of residual errors between the plotted points and an exact solution calculation can be turned on via the ``exact solution plot options'' option in the o) submenu.
\subsection{plot (l)imits}%HEVEA\cutname{lmenu.html}
\subsubsection{ Using plot limits which adapt automatically for each new plot}
\label{sec:adapt}
Adaptive plot limits can be set using option 1 of the l)imits menu (press 'l' from the main menu, then '1'). Different settings can be applied to coordinate axes and non-coordinate axes. Note that changing plot limits interactively and pressing 's' in interactive mode will change this option back to using fixed limits.
\subsubsection{ Using adaptive plot limits for the colour bar but not for the coordinates}
Adaptive plot limits can be set individually for coordinate axes and non-coordinate axes (e.g. the colour bar) via the ``use adaptive/fixed limits'' option in the l)imits submenu. See \S\ref{sec:adapt}.
\subsubsection{ Setting plot limits manually}
Plot limits can be set manually using option 2) of the l)imits menu (or simply ``l2'' from the main menu). Alternatively you can edit the `splash.limits' file created by a S)ave from the main menu prior to invoking \splash (this file simply contains the minimum and maximum limits for each column on consecutive lines).
\subsubsection{ Making plot limits relative to a particular particle}
\label{sec:track}
Particle tracking limits (i.e., where a chosen particle is always at the centre of the plot and limits are set relative to that position) can be set via the ``make xy limits relative to particle'' option in the l)imits menu. Alternatively particle tracking limits can be set interactively by pressing 't' in interactive mode with the cursor over the particle you wish to track. Note that this option only works if particle identities are preserved between timesteps. Also note that, with particle tracking limits set, the radius calculated via the ``calculate extra quantities'' option in the d)ata submenu is calculated relative to the tracked particle.
Centreing on a sink particle can also be achieved using the SPLASH\_CENTRE\_ON\_SINK environment variable.
\subsubsection{ Plotting in a comoving reference frame}
A co-moving reference frame can be set using the ``make xy limits relative to particle'' option in the l)imits menu. Coordinate limits are then centred on the selected particle for all timesteps, with offsets as input by the user. This
effectively gives the `Lagrangian' perspective. See \S\ref{sec:track} for more details. Centreing on a sink particle can also be achieved using the SPLASH\_CENTRE\_ON\_SINK environment variable.
\subsubsection{ Setting the origin to correspond to a particular particle}
See \S\ref{sec:track}.
\subsubsection{ Tracking a particle}
See \S\ref{sec:track}.
\subsubsection{ Setting the origin to the position of the $n$th sink particle}
\label{sec:tracksink}
This can be achieved using the ``make xy limits relative to particle'' option in the l)imits menu. For example, to track the first sink particle we would proceed as follows:
\begin{verbatim}
Please enter your selection now (y axis or option):l3
------------------ limits options ---------------------
To track particle 4923, enter 4923
To track the 43rd particle of type 3, enter 3:43
Enter particle to track: (default="0"): 3:1
\end{verbatim}
where 3:1 indicates the first particle of type 3. The origin is set to the position of this particle and limits are relative to its position. See \S\ref{sec:track} for more details.
\subsubsection{ Plotting radial plots around sink particles}
First, set the origin to the location of the sink, as described above. Then simply change to spherical coordinates using the ``change coordinate systems'' option in the o) menu. Alternatively, compute the radius using the ``calculate extra quantities'' option in the d)ata menu.
\subsubsection{ Automatically adapting plot limits to match aspect ratio of output device}
An option to automatically adjust the plot limits to match the aspect ratio of the output device is given in the l)imits menu, and is also prompted for whenever the paper size is changed (via the ``change paper size'' option in the p)age menu, see \S\ref{sec:papersize}).
\subsubsection{ Plotting with log axes.}
Log axes can be set either interactively (by pressing 'l' with the cursor over the desired axis) or manually via the ``apply log or inverse transformations to columns'' option in the l)imits menu. To use logarithmic axes labels as well, see \S\ref{sec:loglabels}.
\subsubsection{ Plotting the square root, inverse or square of a quantity}
Columns can be logged, inverted, sqrt-ed, squared or any combination of the above via the ``apply log or inverse transformations to columns'' option in the l)imits menu. If you have any additional transformations you would find useful please let me know, as it is straightforward to add more.
\subsubsection{ Resetting limits for all columns}
\label{sec:resetlimits}
Limits for all columns can be reset to their minimum and maximum values from the current dump file via the ``reset limits for all columns'' option in the l)imits menu. See \S\ref{sec:interactive} for details of resetting plot limits for a particular plot in interactive mode.
\subsubsection{ Restoring all plot limits to their minimum and maximum values in the current dump file}
See \S\ref{sec:resetlimits}.
\subsubsection{ Using a subset of data restricted by parameter range}
\label{sec:rangerestrict}
As of version 1.11.0, it is possible to use only a subset of the particles in both particle plots and rendered plots, according to restrictions on any or all of the data columns (for example, using only particles with $\rho > 10$, in the 3D box $x,y,z \in [-0.1, 0.1]$). Whilst this has always been possible by selecting, colouring and/or hiding particles in interactive mode (see \S\ref{sec:rendersubset}), the difference here is that the selection is based, for each timestep, strictly on the parameter range, rather than being a selection based on particle identity. This means that the parameter range is also saved to the \verb+splash.limits+ (i.e., by pressing `S' from the main menu) and is shown when \splash launches via lines such as:
\begin{verbatim}
>> current range restrictions set:
( 1.693E-01 < x < 1.820E-01 )
( 2.205E-01 < y < 2.265E-01 )
( 7.580E-06 < density < 2.989E-05 )
>> only particles within this range will be plotted
and/or used in interpolation routines
\end{verbatim}
or more usually:
\begin{verbatim}
>> no current parameter range restrictions set
\end{verbatim}
Parameter range restrictions can be set either manually via the l)imits menu (option 7) or interactively by selecting a region in the plot and pressing `x', `y' or `r' to restrict using the $x$, $y$ or both $x$ and $y$ limits of the selected area respectively (pressing `R' instead removes all currently set restrictions). Another way of setting manual range restrictions is simply to edit the \verb+splash.limits+ file directly (this simply contains the min and max limits for each column, followed optionally by a third and fourth column specifying, respectively, the min and max of the range restriction).
\subsubsection{ Plotting only particles with $\rho > 10$, $u > 20$ and $-0.25 < x < 0.25$}
Plotting a subset of the particles restricted by a parameter can be achieved by setting a parameter range restriction (which does not change between timesteps -- see \S\ref{sec:rangerestrict}), or alternatively by an interactive selection based on particle identity (see \S\ref{sec:rendersubset}).
\subsection{(r)endering options}%HEVEA\cutname{rmenu.html}
\subsubsection{ Changing the number of pixels in a rendered image}
The number of pixels in a rendered image can be set manually using the r)ender menu, option 1 (or simply type ``r1'' from the main menu). The number set is the number of pixels along the $x-$axis. The number of pixels along the $y-$axis is determined by the aspect ratio of the plot.
As of version 1.11.1, the number of pixels used in an image is, by default, automatically determined by the actual number of pixels available on the graphics device, which depends in turn on the size of the page (the page size can be set manually in the p)age menu -- see \S\ref{sec:papersize}). For pixel devices use of the automatic pixel number determination is \emph{highly} recommended (hence why it is the default) to avoid interpolation artefacts in the image. For vector (non-pixel) devices such as postscript, svg or pdf, the number of pixels is set to $1024/\textrm{n}$, where n is the number of panels across the page.
\subsubsection{ Changing the colour scheme}
The colour scheme used for rendered plots can be changed either by pressing `m' or `M' in interactive mode to cycle through the available schemes or manually by using the ``change colour scheme'' option in the r)ender menu.
A demonstration of all the colour schemes can be also be invoked from
this menu option. Setting the colour scheme to zero plots only the contours of
the rendered quantity (assuming that plot contours is set to true). The colour
schemes available are shown in Figure~\ref{fig:colourschemes}.
\begin{figure}
\begin{center}
\includegraphics[angle=270,width=\textwidth]{colourschemes.pdf}
%%\begin{turn}{270}\epsfig{file=colourschemes.ps,height=\textwidth}\end{turn}
\caption{\splash colour schemes}
\label{fig:colourschemes}
\end{center}
\end{figure}
User contributed colour schemes are eagerly invited (just send me either: a table of r,g,b colour indices [if you know them] or just an image of a colour bar you wish to reproduce and I will add it).
\subsubsection{ Plotting contours as well as the rendered image}
Contours of either the rendered pixel array or of another (separate) quantity can be plotted on top of the rendered plot by setting the ``plot contours'' option from the r)ender menu. With this option set, an extra prompt will appear after the render prompt asking the user for a quantity to be contoured. The contoured quantity can also be set via the command line options (\S\ref{sec:commandline}). If the rendered and contoured quantities are the same, further prompts appear which enable the limits for the contour plot to be set separately to the render plot. These limits are also saved separately in the \verb+splash.limits+ file when written.
To plot contours \emph{instead} of the rendered image, use the ``change colour scheme'' option from the r)ender menu and choose colour scheme 0 (contours only).
\subsubsection{ Plotting contours instead of a rendered image}
To plot contours instead of the rendered image, use the ``change colour scheme'' option from the r)ender menu and choose colour scheme 0 (contours only).
\subsubsection{ Changing the number of contour levels}
The number of contour levels used whenever contours are drawn can be set via the ``change number of contours'' option in the r)ender menu. The contour levels can also be manually specified (see \S\ref{sec:contoursmanual}).
\subsubsection{ Setting the contour levels manually}
\label{sec:contoursmanual}
As of v1.15.0, contour levels can be set manually by creating a file called \verb+splash.contours+ in the current directory (or \verb+prefix.contours+ if the \verb+splash -p prefix+ is specified on the command line). This file should contain one contour level per line, optionally with a label for each contour, e.g.
\begin{verbatim}
1.e-2 level 1
1.e-1 level 2
0.1 my really great contour
1.0 hi mum
\end{verbatim}
\subsubsection{ Adding numeric labels to contours}
An option to write numeric labels on contours appears as part of the ``change number of contours'' option in the r)ender menu.
\subsubsection{ Adding arbitrary contour labels}
Contours can also be labelled manually by creating a \verb+splash.contours+ file. See \S\ref{sec:contoursmanual}.
\subsubsection{ Turning the colour bar off/ moving the colour bar label}
The colour bar can be turned on or off and the style chosen (e.g. horizontal vs vertical) and for the vertical bar, the label moved closer to the bar itself, via the ``colour bar options'' option in the r)ender menu.
To change the text in the colour bar label, see \S\ref{sec:setprojlabel}.
\subsubsection{ Changing the style of the colour bar}
\label{sec:colourbarstyle}
The colour bar style (i.e., vertical vs. horizontal, plot-hugging vs. non plot-hugging, one-sided vs. two-sided, floating vs. fixed) can be changed via the ``colour bar options'' option in the r)ender submenu. If you want a different style implemented, email me!
\subsubsection{ Using a horizontal colour bar}
An option to use a horizontal colour bar instead of the default vertical arrangement is given in the ``colour bar options'' option in the r)ender submenu.
\subsubsection{ Using `plot-hugging' colour bars}
See \S\ref{sec:colourbarstyle}.
\subsubsection{ Using floating/inset colour bars}
See \S\ref{sec:colourbarstyle}.
\subsubsection{ Plotting ticks on only one side of the colour bar}
See \S\ref{sec:colourbarstyle}.
\subsubsection{ Changing the text in the colour bar label}
See \S\ref{sec:setprojlabel}.
\subsubsection{ Using coloured particles instead of rendering to pixels}
\label{sec:colournotrender}
As a simpler alternative to interpolating to a pixel array, particles can simply be coloured according to the value of a particular quantity by setting the ``use particle colours not pixels'' option in the r)ender menu. With this option set, rendered plots are simply plotted by colouring the particles according to the rendered field. This is somewhat
cruder but can be a good indication of where individual particles might be affecting results.
Note that any colouring of the particles set in interactive mode will be overwritten by use of this option.
\subsubsection{ Using normalised interpolations}
A normalised interpolation to pixels can be used by setting the ``normalise interpolations'' option from the r)ender menu. In general this leads to smoother rendering but also means that edges and surfaces appear
more prominently (and a bit strange). The general rule-of-thumb I use is therefore to use this option whenever there are no free surfaces in the simulation. Note that in 3D this option only affects cross-section slices (as it is a bit meaningless to normalise a column-integrated or opacity-rendered plot).
\subsubsection{ Speeding up the rendering on 3D column integrated plots}
Interpolation on 3D column integrated plots can be made faster by setting the ``use accelerated rendering'' option in the r)ender menu. The reason this is an option is that it makes a small approximation by assuming that each particle lies exactly in the centre of a pixel. In general this works very well but is not set by default because it can produce funny looking results when the particles are aligned on a regular grid (e.g. as is often the case in initial conditions). Typical speed-ups range from $\times 2$ up to $\times 4$, so it is highly recommended for interactive work.
\subsubsection{ Using density weighted interpolation}
Density weighted interpolation (where a quantity is plotted times $\rho$) can be turned on in the r)ender menu.
\subsubsection{ Selecting and rendering only a subset of the particles}
An example of how to render using only a selected subset of the particles was given in \S\ref{sec:rendersubset}.
\subsubsection{ Changing the label used for 3D projection plots}
\label{sec:setprojlabel}
The labelling scheme used to determine the colour bar label can be changed via the ``customize label on projection plots'' option in the r)ender menu. Information specific to the quantity being rendered can be incorporated via format codes as follows:
\begin{verbatim}
Example format strings:
\(2268) %l d%z %uz : this is the default format "\int rho [g/cm^3] dz [cm]"
column %l : would print "column density" for density
surface %l : would print "surface density"
%l integrated through %z : would print "density integrated through z"
Format codes:
%l : label for rendered quantity
%z : label for 'z'
%uz : units label for z (only if physical units applied)
\end{verbatim}
\subsubsection{ Changing ``column density'' to ``surface density'' on 3D plots}
See \S\ref{sec:setprojlabel}.
\subsubsection{ Changing the interpolation kernel}
The kernel used for the interpolations is by default the M$_{4}$ cubic B-spline, which has been standard in SPH calculations since the mid-1980's. Other kernels can be selected via the ``change kernel'' option in the r)ender menu. The kernel can also be changed by setting the \verb+SPLASH_KERNEL+ environment variable to either the kernel name as listed in the render menu option, or something sensible resembling it. At present only a few kernels are implemented, with `cubic' , `quartic' and `quintic' referring to the M$_{4}$, M$_{5}$ and M$_{6}$ B-splines with support of 2h and 3h, respectively. See \citet{price12} for more details.
\subsection{(v)ector plot options}%HEVEA\cutname{vmenu.html}
\label{sec:vectorplots}
\subsubsection{ Changing the number of arrows on vector plots}
See \S\ref{sec:vecpix}.
\subsubsection{ Changing the number of pixels in vector plots}
\label{sec:vecpix}
The number of pixels used on vector plots can be changed via the ``change number of pixels'' option in the v)ector menu. This controls the number and average size of the arrows which appear (i.e., one arrow is plotted at the centre of each pixel).
\subsubsection{ Changing the size of arrows on vector plots}
The size of the arrows on vector plots is proportional to the magnitude of the vector quantity at that pixel, where the maximum size is set from the maximum plot limit for the x, y and z components of the vector quantity being plotted such that the longest arrow fills one pixel. These limits can be changed manually via the l)imits menu options. Where these limits are nowhere near the actual values of the vector field, arrows can appear either very big (just a line across the screen) or extremely small (appearing as just dots). Pressing `w' in interactive mode automatically adjusts the arrows to sensible proportions (this is the equivalent of pressing `a' for non-vector quantities). Alternatively pressing `v' (to decrease) or `V' (to increase) can be used to adjust the arrow lengths (the change can be multiplied by 10 or more by first pressing `z' one or more times before pressing 'v' or 'V').
\subsubsection{ Plotting vector arrows in white instead of black or vice-versa}
Vector arrows are by default plotted using the current foreground colour index (i.e., as used for plotting the axes). To plot in the background colour index instead set the ``use background colour for arrows'' option in the v) menu.
\subsubsection{ Turning off the legend for vector plots}
The legend which appears on vector plots can be turned on or off via the ``vector plot legend settings'' option in the v) menu.
\subsubsection{ Moving the vector plot legend}
The position of the vector plot legend can be set either interactively by positioning the mouse and pressing 'H' or manually via the ``vector plot legend settings'' option in the v) menu.
\subsubsection{ Plotting stream/fieldlines instead of arrows}
To plot a vector plot that uses stream/fieldlines instead of arrows, set the ``plot stream/field lines instead of arrows'' option in the v) menu. This option performs a simple integration of the interpolated vector field to get the stream function, the contours of which are then plotted (note that the number of contours can be changed via the ``change number of contours'' option in the r)ender menu). It is generally advantageous to use a larger number of pixels for the vector interpolation (See \S\ref{sec:vecpix}) to get smooth contours.
At present this option works quite well for smooth vector fields but can perform poorly for vector fields with strong gradients.
\subsubsection{ Turning arrow heads off for vector plots}
Vector plots can be plotted using arrows without heads using the ``turn arrow heads on/off'' option in the v)ector plot options menu.
\subsubsection{ Hiding vector arrows where there are no SPH particles}
On rendered plots often arrows can appear where there are apparently no SPH particles because the interpolation is performed to all pixels within $2h$ of an SPH particle. Such arrows in regions of few or no particles can be hidden using the ``hide arrows where there are no particles'' option in the v) menu. A threshold number of particles for each pixel can be specified, below which no arrow will be plotted on that pixel.
\subsubsection{ Plotting a vector plot in a cross section slice}
Vector plots are either in a cross section slice or are column integrated projections depending on the setting of the ``switch between cross section/projection'' option in the x) menu. Setting this to cross section and plotting a vector plot produces a vector plot in a cross section slice.
\subsubsection{ Making all arrow the same length (i.e., showing direction only, not magnitude)}
An option to plot all vector arrows of the same length (instead of the default option where the length of the arrow is proportional to the vector magnitude) can be set from the v) menu.
\subsection{(x) cross section/3D plotting options}%HEVEA\cutname{xmenu.html}
\subsubsection{ Plotting a cross section slice through 3D data}
When plotting a rendered plot of 3D data, the default option is to plot a column-integrated plot. To change this to a cross section slice, use option 1) in the x) menu (``switch between cross section/projection''). See \S\ref{sec:basic} for examples of how this works. An oblique cross section slice can be set interactively using the 'x' key, see \S\ref{sec:obliquexsec} which works by setting a combination of rotation and a cross section slice position.
\subsubsection{ Plotting a cross section line through 2D data}
In 2D, setting the ``switch between cross section/projection'' option in the x) menu to cross section means that rendered plots are in fact a 1D cross section (i.e., a line) through 2D data. The position of the line is completely arbitrary (i.e., can be set for oblique cross sections as well as straight lines) and is set interactively after the usual $y-$ and $x-$ axis prompts.
\subsubsection{ Rotating the particles}
An angle of rotation about may be set each axis may be set in the x)sec/rotate submenu using the ``rotation on/off/settings'' option or
interactively (press 'h' in interactive mode to see the exact keystrokes). The position of the origin about which particles are rotated can be set from the ``rotation on/off/settings'' option in the x) menu.
Rotated axes or boxes can be plotted using the ``set axes for rotated/3D plots'' option in the same menu.
Rotations are performed in the order $z-y-x$. This means that the $y-$ rotation angle is an angle about the \emph{new} $y-$axis, defined by the $z$ rotation and similarly for the $x-$ rotation. If you think about it long enough, it makes sense. If in doubt, do it interactively and set the angles in the order $z-y-x$.
\subsubsection{ Setting the origin about which particles are rotated}
The origin about which particles are rotated and relative to which the radius is calculated when the ``calculate extra quantities'' option is set in the d)ata menu can be changed via the ``rotation on/off/settings'' option in the x) menu.
\subsubsection{ Adding 3D perspective}
\label{sec:3Dperspective}
3D perspective can be turned on via the ``3D perspective on/off'' option in the x) menu. Prompts for setting the perspective position then appear after the usual prompts for y and x axes, rendering and vector plots, i.e., something like the following:
\begin{verbatim}
Please enter your selection now (y axis or option):2
(x axis) (default=1):
(render) (0=none) ([0:20], default=0):
(vector plot) (0=none, 7=B, 10=v, 17=J) ([0:17], default=0):
enter z coordinate of observer (default=1.800):
enter distance between observer and projection screen ([0.000:], default=0.1800):
Graphics device/type (? to see list, default /xwin):
\end{verbatim}
3D perspective is defined by two parameters: a distance to the observer $zobs$ and a distance between the observer and a screen placed in front of the observer, $dscreen$.
The transformation from usual $x$ and $y$ to screen $x'$ and $y'$ is then given by
\begin{eqnarray}
x' & = & x*dscreen/(zobs-z), \nonumber \\
y' & = & y*dscreen/(zobs-z).
\end{eqnarray}
This means that objects at the screen distance will have unit magnification, objects closer than the
screen will appear larger (points diverge) and objects further away will appear smaller (points
converge). The situation could be beautifully illustrated if I could be bothered drawing a figure. I have found reasonable results with something like a $1/10$ reduction at the typical distance of the object (i.e., observer is placed at a distance of $10\times$ object size with distance to screen of $1\times$ object size). \splash sets this as default using the z plot limit as the `object size'.
The position of the 3D observer in $z$ can also be changed in interactive mode using 'u' or 'U' (to move 'up') and 'd' or 'D' (to move 'down').
\subsubsection{ Using 3D surface rendering}
3D surface rendering (turned on using the ``3D surface rendering on/off'' option in the x) menu) performs a ray-trace through the particle data, thus visualising the "last scattering surface". When set, the user is prompted for an "optical depth" before plotting which determines the position of the surface. Only applies to 3D data. When set with cross-section (instead of projection), particles at or below the z value of the slice are used.
%The one caveat is that the rendering algorithm needs to use more than 256 colours (for example, if we have a colour map with 256 colours, we need to then have all 256 colours at varying levels of intensity), at present this is implemented by
%(optionally) writing the pixel map directly to a .ppm file (called splash\_\#\#\#\#\#.ppm where the number is the number of the current dumpfile) and the approximate version (i.e., without the background fade)
%is given to the graphics device (e.g. the /xw screen). The .ppm files are uncompressed and therefore somewhat large but can be converted easily to any
%other format (e.g. png, ps) using netpbm tools (\url{http://netpbm.sourceforge.net/}) such as
%ppmtopng, ppmtops.
For examples of the 3D surface rendering in \splash, have a look at my movies of neutron star mergers:
\begin{quote}
\url{http://users.monash.edu.au/~dprice/research/nsmag}.
\end{quote}
\subsubsection{ Plotting 3D box / 3D axes}
Rotated axes or boxes can be plotted using the ``set axes for rotated/3D plots'' option in the x) menu.
\subsubsection{ Setting up animation sequences}
\label{sec:animseq}
Animation sequences can be set via the ``set animation sequence'' option in the x) menu. At present the possible sequences that can be added are:
\begin{verbatim}
1 : steady zoom on x and y axes
2 : steady rotation
3 : steady change of limits (e.g. for colour bar)
4 : steady movement of 3D observer
5 : sequence of cross section slices through a 3D box
6 : steady change of opacity for 3D surface plots
\end{verbatim}
Up to one sequence of each type can be added (i.e., up to 6 in total) with different start and end points (specified in terms of dump file number), with the additional possibility of inserting extra frames between dump files (e.g. to plot a sequence of frames consisting of a changing view of the same dump file).
Animation sequences can also be set using `e' in interactive mode. To set a sequence interactively first adjust the plot settings to correspond to the start of the sequence (pressing `s' to save if this is done in interactive mode). Then in interactive mode move to the dump file you want to be the end-point and also adjust the plot settings to correspond to the end-point of your desired sequence (i.e., adjust the colour bar limits and/or adjust the rotation angle and/or the x/y limits and/or the 3D observer position and/or the opacity). Then, rather than pressing `s' (which would make these become the default plot settings) press `e' instead, saving these settings as the end-point of the desired animation sequence. This can be done multiple times to set multiple sequences.
Animation sequences set up in this manner are saved to a file called \verb+splash.anim+ either when prompted (if setting sequences non-interactively) or by pressing 'S' from the main menu which then saves both the \verb+splash.limits+ and \verb+splash.anim+ files in addition to the usual \verb+splash.defaults+ file.
\textbf{Note:} As of version 1.11.1, animation sequences act on a `per page' basis rather than simply `per frame'. This means that you can produce a multi-panelled movie (e.g.) showing the evolution of different runs side by side, with the same animation sequence applied to each.
\subsubsection{ Plotting a sequence of frames rotating a data set through 360 degrees}
This can be achieved by setting an animation sequence with a steady change of rotation angle. See \S\ref{sec:animseq}.
\subsubsection{ Plotting a `fly-around' of 3D data}
This can be achieved by setting an animation sequence with a steady change of rotation angle. See \S\ref{sec:animseq}.
\subsubsection{ Plotting a flythru of 3D data}
A sequence of cross section slices progressively deeper into a 3D box or alternatively a steady movement of the 3D observer (on projection plots) can be plotted by setting up an animation sequence. See \S\ref{sec:animseq} for details.
\subsubsection{ Adding a steady zoom sequence to a movie}
A steady change of $x-$ and $y-$ limits can be added by setting up an animation sequence. See \S\ref{sec:animseq} for details.
\subsubsection{ Adding a steady change of colour bar limits}
A steady change of limits on the colour bar over one or more dump files for a movie can be implemented by setting up an animation sequence. See \S\ref{sec:animseq} for details.
\subsubsection{ Adding steady movement of the 3D observer}
\label{sec:move3Dobserver}
The position of the 3D observer can be steadily changed over several dump files (or several frames produced of the same dump file) by setting up an animation sequence. See \S\ref{sec:animseq} for details.
\subsection{Miscellaneous other useful things}%HEVEA\cutname{misc.html}
\subsubsection{ Saving plot settings / plot limits to disk}
The (s)ave option saves the default options to a file called `splash.defaults' in the
current directory which is read automatically upon the next invocation of
\splash. This file uses namelist formatting and may be edited manually prior to
startup if so desired (this is quite useful for setting multiplots with many plots per
page).
The (S)ave option writes both the defaults file and also saves the current plot
limits to a file called `splash.limits' which is also read automatically
at startup. If animation sequences have been set (see \S\ref{sec:animseq}), this also saves the `splash.anim' file to disk.
Typing ``sa'' or ``Sa'' gives a ``save-as'' option, whereby the prefix of files saved by \splash can be changed (e.g. using ``sa'' the defaults file can be renamed, whereas using ``Sa'' all files saved by \splash are given a new prefix). The prefix to the configuration files which are written by \splash can also be changed using the \verb+-p+ option on the command line (the default is ``splash'', i.e., ``splash.defaults'', ``splash.limits'' etc).
\subsubsection{ My attempt at in-built help}
The (h)elp option at the moment does nothing particularly useful apart from tell you about menu shortcuts (see \S\ref{sec:menushortcuts}). It seemed like a good idea at the time\ldots
\subsubsection{ Keyboard shortcuts to menu options}
\label{sec:menushortcuts}
Menu options which normally require two keystrokes (e.g. x menu, option 1) can be shortcut to by simply typing the letter and number together at the main menu prompt (so e.g. ``x1'' for x menu, option 1, ``r2'' for render menu, option 2, etc.). This can be quite useful if you are playing around with one particular option a lot.
\subsubsection{ Exiting \splash}
(q)uit, unsurprisingly, quits. Typing a number greater than the number of
data columns also exits the program (e.g. I often simply type 99 to exit).
%HEVEA\cutend
\section{Advanced plotting examples}%HEVEA\cutname{tutorials.html}
\subsection{Rendered plot of star formation data}
This is an example using data provided by Paul Clark. The data is from an SPH simulation of star formation in sphNG format. We read the dump file as follows:
\begin{verbatim}
dprice/dustfrag> ssplash omuk162
\end{verbatim}
after which we get output along the lines of:
\begin{verbatim}
...
reading single dumpfile
>>>>>>>>>>>>>>>>>>>>>>>>>> omuk162 <<<<<<<<<<<<<<<<<<<<<<<<<<
double precision dump
File ID: FHydroRTMHD1
npart = 11744854
...
\end{verbatim}
and arrive at the main menu:
\begin{verbatim}
You may choose from a delectable sample of plots
-------------------------------------------------------
1) x 7) v\dx
2) y 8) v\dy
3) z 9) v\dz
4) particle mass 10) u
5) h 11) grad h
6) density
-------------------------------------------------------
12) multiplot [ 4 ] m) set multiplot
-------------------------------------------------------
d(ata) p(age) o(pts) l(imits) le(g)end h(elp)
r(ender) v(ector) x(sec/rotate) s,S(ave) q(uit)
-------------------------------------------------------
Please enter your selection now (y axis or option):
\end{verbatim}
here we want to plot a rendered plot of column density (density is in column 6), so we type `2' for column 2 (y) as the y axis, `1' for column 1 (x) as the x-axis and at the render prompt `6', for density, ie:
\begin{verbatim}
Please enter your selection now (y axis or option):2
(x axis) (default=1):
(render) (0=none) ([0:11], default=0):6
(vector plot) (0=none, 7=v) ([0:7], default=0):0
Graphics device/type (? to see list, default /xw): /xw
\end{verbatim}
producing the plot shown in Figure~\ref{fig:starpart1} -- somewhat black! The main thing to note is the limits on the colour bar (extending from $0$ to $10^{7}$ on a linear scale) which is the main source of all the blackness. Moving the cursor over the colour bar and pressing `l' for log produces the figure shown on the right hand side --- a vast improvement!
\begin{figure}[h]
\begin{center}
\begin{tabular}{cc}
\includegraphics[width=0.5\textwidth]{starpart1.png} &
\includegraphics[width=0.5\textwidth]{starpart2.png}
\end{tabular}
\caption{First stage in the star formation figure tutorial: a simple render plot of density (left) and with a log axis after having placed cursor over colour bar and pressed `l' (right)}
\label{fig:starpart1}
\end{center}
\end{figure}
For this visualisation we will eventually want the data in physical units rather than code units. For the sphNG read these units are already specified in the read\_data routine, so all we have to do is turn physical units on. Pressing `q' from interactive mode (that is, with the cursor in the plot window) returns us to the main menu.
Physical units are turned on from the d)ata menu, as follows:
\begin{verbatim}
Please enter your selection now (y axis or option):d
----------------- data read options -------------------
0) exit
1) read new data /re-read data
2) change number of timesteps used ( 1 )
3) plot selected steps only ( OFF )
4) buffering of data on/off ( OFF )
5) turn calculate extra quantities on/off ( OFF )
6) use physical units ( OFF )
7) change physical unit settings
enter option ([0:7], default=0):6
current settings for conversion to physical units are:
x [cm] = x x 1.000E+17
y [cm] = y x 1.000E+17
z [cm] = z x 1.000E+17
particle mass [g] = particle mass x 1.991E+33
h [cm] = h x 1.000E+17
density [g/cm\u3\d] = density x 1.991E-18
v\dx [cm/s] = v\dx x 3.645E+04
v\dy [cm/s] = v\dy x 3.645E+04
v\dz [cm/s] = v\dz x 3.645E+04
u [erg/g] = u x 1.328E+09
grad h = grad h x 1.000E+00
time = time x 1.69E+00
Use physical units? (default=yes):
\end{verbatim}
returning us to the main menu with labels changed as follows:
\begin{verbatim}
You may choose from a delectable sample of plots
-------------------------------------------------------
1) x [cm] 7) v\dx [cm/s]
2) y [cm] 8) v\dy [cm/s]
3) z [cm] 9) v\dz [cm/s]
4) particle mass [g] 10) u [erg/g]
5) h [cm] 11) grad h
6) log density [g/cm\u3
-------------------------------------------------------
12) multiplot [ 4 ] m) set multiplot
-------------------------------------------------------
d(ata) p(age) o(pts) l(imits) le(g)end h(elp)
r(ender) v(ector) x(sec/rotate) s,S(ave) q(uit)
-------------------------------------------------------
Please enter your selection now (y axis or option):
\end{verbatim}
at this stage we will save the current settings to file by pressing `s' from the main menu.
\begin{verbatim}
Please enter your selection now (y axis or option):s
default options saved to file splash.defaults
\end{verbatim}
Actually we would prefer the column labels in AU, but we will come to that later. Replotting the same plot (that is 2, 1, 6, 0, /xw from the main menu) plots the same plot we had before, but with the axes in physical units. Zooming in (using the mouse) on the region of interest and adapting the colour bar limits by moving the mouse over the colour bar and pressing `a' produces the plot shown in the left panel of Figure~\ref{fig:starpart2}.
\begin{figure}[h]
\begin{center}
\begin{tabular}{cc}
\includegraphics[width=0.5\textwidth]{starpart3.png} &
\includegraphics[width=0.5\textwidth]{starpart4.png}
\end{tabular}
\caption{Second stage in the star formation figure tutorial: having applied physical units, zooming in and pressing `a' on the colour bar (left) and having changed the colour scheme (right)}
\label{fig:starpart2}
\end{center}
\end{figure}
For this kind of plot, the Bate colour scheme looks better -- pressing `m' with the mouse in the plot window changes the colour scheme, producing the plot shown in the right hand panel of Figure~\ref{fig:starpart2}. Pressing `s' in interactive mode (that is, with the mouse in the plot window) saves the current zoom and colour bar settings (but not to disk until you also press `S' from the main menu). Pressing `q' from interactive mode returns to the main menu.
Next we want to turn on the plotting of sink particles (all particle types other than gas are turned off by default). This is done in the o)ptions submenu as follows:
\begin{verbatim}
Please enter your selection now (y axis or option):o
------------- particle plot options -------------------
0) exit
1) turn on/off particles by type ( ON, OFF, OFF, OFF )
2) change graph markers for each type ( 1, 4, 17, 1 )
3) set colour for each particle type ( -1, -1, -1, -1 )
4) plot line joining particles ( OFF )
5) plot smoothing circles ( 0 )
6) use fast particle plotting ( ON )
7) change coordinate systems ( 1 )
8) plot exact solution ( 0 )
9) exact solution plot options
enter option ([0:9], default=0):1
Plot gas particles? (default=yes):
Plot ghost particles? (default=no):
Plot sink particles? (default=no):y
>> Plot sink particles on top of rendered plots? (default=no):y
Plot unknown/dead particles? (default=no):
\end{verbatim}
Repeating our previous plot (i.e., 2, 1, 6, 0, /xw) produces the plot shown in the left panel of Figure~\ref{fig:starpart3}.
\begin{figure}[h]
\begin{center}
\begin{tabular}{cc}
\includegraphics[width=0.5\textwidth]{starpart5.png} &
\includegraphics[width=0.5\textwidth]{starpart6.png}
\end{tabular}
\caption{Third stage in the star formation figure tutorial: having turned sink particle plotting on (left) replacing the axes with a scale (right)}
\label{fig:starpart3}
\end{center}
\end{figure}
The axes in [cm] are kind of ugly, so we could either change this to a sensible unit or plot a scale instead. We will do the latter. The axes can be turned off in the p)age submenu, as follows:
\begin{verbatim}
Please enter your selection now (y axis or option):p
---------------- page setup options -------------------
...
2) axes options ( 0)
...
enter option ([0:8], default=0):2
-4 : draw box and major tick marks only;
-3 : draw box and tick marks (major and minor) only;
-2 : draw no box, axes or labels;
-1 : draw box only;
0 : draw box and label it with coordinates;
1 : same as AXIS=0, but also draw the coordinate axes (X=0, Y=0);
2 : same as AXIS=1, but also draw grid lines at major increments of the coordinates;
10 : draw box and label X-axis logarithmically;
20 : draw box and label Y-axis logarithmically;
30 : draw box and label both axes logarithmically.
enter axis option ([-4:30], default=0):-2
axis = -2
\end{verbatim}
The option to plot a scale of a particular length is also to be found in the le(g)end menu. We will choose to plot a scale of length 0.1 pc.
\begin{verbatim}
Please enter your selection now (y axis or option):g
---------------- legend and title options -------------------
To set the plot titles, create a file called
'splash.titles' in the working directory, with one title per line
0) exit
1) time legend on/off/settings ( ON 0.87 1.87 0.00 "t=")
2) titles on/off/settings ( ON 0.20 -0.92 0.00)
3) legend for multiple steps per page on/off ( OFF )
4) plot scale on co-ordinate plots ( OFF )
5) legend only on nth panel/first row/column ( 0 )
Enter option ([0:5], default=0):4
Plot scale on co-ordinate plots? (default=no):y
Enter length of scale in the current x,y,z units (default=1.000):3.0856e15
Enter text to appear below scale (e.g. '10 AU') (default=1 unit): 0.1 pc
Enter horizontal position as fraction of viewport ([0.000:1.000], default=0.5000):
Enter vertical position in character heights above bottom (default=1.000):
\end{verbatim}
Note that because the x axis units were already in cm, we simply entered the value for 0.1pc in these units. Before plotting again, we should save what we have done so far to disk: Pressing `S' from the main menu saves both the current plot settings \emph{and} the plot limits to disk:
\begin{verbatim}
Please enter your selection now (y axis or option):S
default options saved to file splash.defaults
saving plot limits to file splash.limits
\end{verbatim}
Plotting our figure again (2-1-6-0-/xw) produces the plot shown in the right hand panel of Figure~\ref{fig:starpart3}.
Nearly there...! To add the finishing touches we want to increase the number of pixels substantially. This is done in the r)ender menu, option 1, for which we can use the shortcut `r1':
\begin{verbatim}
Please enter your selection now (y axis or option):r1
----------------- rendering options -------------------
enter number of pixels along x axis ([1:10000], default=200):1000
\end{verbatim}
then, to plot the figure to file instead of the screen, we simply choose a different PGPLOT device at the prompt:
\begin{verbatim}
Please enter your selection now (y axis or option):2
(x axis) (default=1):
(render) (0=none) ([0:11], default=6):
(vector plot) (0=none, 7=v) ([0:7], default=0):
Graphics device/type (? to see list, default /xw): starpartfinal.gif/gif
\end{verbatim}
producing our final finished Figure shown in Figure~\ref{fig:starfinal}.
\begin{figure}[h!]
\begin{center}
\includegraphics[width=0.5\textwidth]{starpartfinal.png}
\caption{Finished star formation plot}
\label{fig:starfinal}
\end{center}
\end{figure}
Pressing `S' from the main menu saves all of the settings and plot limits to disk, so invoking \splash again will produce the same plot. To produce the same plot on a sequence of dumps, simply put more than one file on the command line and plot to a non-interactive device (see \ref{sec:movies}). Use the postscript devices /ps or /cps (for colour) to make figures suitable for inclusion in a paper.
Other things you may want to do with this plot include:
\begin{itemize}
\item Turn the time legend off. See \S\ref{sec:legendoff}.
\item Change the colour of sink particles. See \S\ref{sec:partcolours}.
\item Change the foreground/background colour of the page. See \S\ref{sec:pagecolours}.
\end{itemize}
\subsection{Multi-panelled figure}
The following is an example plot taken from \citet{pb07}. Here I will plot a sequence of plots tiled on the same page, so that columns correspond to dumps taken from different runs at the same time and rows correspond to an evolutionary sequence from a given run. The plot uses sphNG data which contains sink particles, so I also want these to appear on the plots and be plotted in white. Basically I want the plots to be plotted such that as much of the plot is taken up by data and very little by axes and the like but still conveying all of the necessary infomation.
We proceed as follows: Firstly, each different run (corresponding in this case to a series of runs with different magnetic field strength) are in different subdirectories with names like \verb+mbossbod_f10.0/+, \verb+mbossbod_f5.0/+, etc. which all contain a sequence of dump files with names like \verb+mbos001+, \verb+mbos002+ etc. To begin the plot, I start by creating a new, empty subdirectory so that the \verb+splash.defaults+ and \verb+splash.limits+ files created by pressing 'S' from the main menu will be in this directory such that running \splash from that directory always produces this plot. So:
\begin{verbatim}
dprice% mkdir plot1
dprice% cd plot1
\end{verbatim}
then having decided which dump files from each run to use, I create a text file listing these filenames (with the full relative pathname) in the order in which I will plot them. For example, calling this file (arbitrarily) \verb+filelistplot+, the contents should be something like the following:
\begin{verbatim}
dprice% more filelistplot
../mbossbod_f20.0/mbos259
../mbossbod_f20.0/mbos263
../mbossbod_f20.0/mbos268
../mbossbod_f20.0/mbos275
../mbossbod_f20.0/mbos294
../mbossbod_f10.0/mbos259
../mbossbod_f10.0/mbos263
../mbossbod_f10.0/mbos268
../mbossbod_f10.0/mbos275
../mbossbod_f10.0/mbos294
../mbossbod_f7.5/mbos259
../mbossbod_f7.5/mbos263
../mbossbod_f7.5/mbos268
...
\end{verbatim}
Then invoke \splash (ssplash for sphNG) with these filenames on the command line:
\begin{verbatim}
ssplash `cat filelistplot`
\end{verbatim}
after which the first dump file should be read, indicated by output along the lines of:
\begin{verbatim}
reading single dumpfile
>>>>>>>>>>>>>>>>>>>>>>>>>> ../mbossbod_f20.0/mbos259 <<<<<<<<<<<<<<<<<<<<<<<<<<
double precision dump
File ID: SHydroRTMHD1
npart = 491567
...
\end{verbatim}
An alternative method is to rename the `filelistplot' file \verb+splash.filenames+, from which the filenames will be read if there are none specified on the command line (this feature was implemented as a workaround for a limit to the number of command line arguments on the some compilers).
The first stage is to get a plot of a single panel looking good. So, from the main menu, we will plot a simple rendering of density and adjust the plot limits until we are happy:
\begin{verbatim}
You may choose from a delectable sample of plots
-------------------------------------------------------
1) x 6) density
2) y 7) B\dx
3) z 8) B\dy
4) particle mass 9) B\dz
5) h
-------------------------------------------------------
10) multiplot [ 4 ] m) set multiplot
-------------------------------------------------------
d(ata) p(age) o(pts) l(imits) le(g)end h(elp)
r(ender) v(ector) x(sec/rotate) s,S(ave) q(uit)
-------------------------------------------------------
Please enter your selection now (y axis or option):2
(x axis) (default=1):
(render) (0=none) ([0:9], default=0):6
(vector plot) (0=none, 7=B) ([0:7], default=0):
Graphics device/type (? to see list, default /xw): /xw
\end{verbatim}
which should produce the plot shown in the left hand panel of Figure~\ref{fig:multipart1}. Not much can be seen at first -- just a few white dots. This is mainly a result of the density axis (i.e., the colour bar) not being logged. Moving the cursor over the colour bar and pressing `l' results in the plot shown in the right hand panel of Figure~\ref{fig:multipart1}.
\begin{figure}[h]
\begin{center}
\begin{tabular}{cc}
\includegraphics[width=0.5\textwidth]{multipart1.png} &
\includegraphics[width=0.5\textwidth]{multipart2.png}
\end{tabular}
\caption{First stage in the multi-panelled figure tutorial: a simple render plot of density (left) and with a log axis after having placed cursor over colour bar and pressed `l' (right)}
\label{fig:multipart1}
\end{center}
\end{figure}
Before we proceed any further, we will first change the axes to be in physical units rather than code units. Pressing `q' in the plot window to exit interactive mode and return to the main menu, and from the d)ata menu, turn the ``use physical units option'' on:
\begin{verbatim}
Please enter your selection now (y axis or option):d
----------------- data read options -------------------
0) exit
1) read new data /re-read data
2) change number of timesteps used ( 1 )
3) plot selected steps only ( OFF )
4) buffering of data on/off ( OFF )
5) turn calculate extra quantities on/off ( OFF )
6) use physical units ( OFF )
7) change physical unit settings
enter option ([0:7], default=0):6
current settings for conversion to physical units are:
x [cm] = x x 1.000E+16
y [cm] = y x 1.000E+16
z [cm] = z x 1.000E+16
particle mass [g] = particle mass x 1.991E+33
h [cm] = h x 1.000E+16
density [g/cm\u3\d] = density x 1.991E-15
B\dx [G] = B\dx x 1.000E+00
B\dy [G] = B\dy x 1.000E+00
B\dz [G] = B\dz x 1.000E+00
time = time x 1.13E-01
Use physical units? (default=yes):yes
\end{verbatim}
The default transformations to physical units are in this case set in the data read. However it would be nicer in this case to set the x and y axis units to AU (Astronomical Units), rather than cm. From the d)ata menu we proceed as follows:
\begin{verbatim}
enter option ([0:7], default=0):7
enter column to change units (-2=reset all,-1=quit,0=time) ([-2:9], default=-1):1
enter x [cm] units (new=old*units) (default=0.1000E+17):668.3893
enter label amendment (default=[cm]): [AU]
Apply these units to all coordinates and h? (default=yes):
Enter unit for 'z' in 3D column integrated plots (default=0.1000E+17):
Enter label for z integration unit (e.g. [cm]) (default=[cm]):
enter column to change units (-2=reset all,-1=quit,0=time) ([-2:9], default=-1):
save units to file? (default=yes):
saving plot limits to file splash.units
\end{verbatim}
where in the above I set the multiplicative factor such that the x axis will be in AU and correspondingly changed the units label to `` [AU]'' (note the preceding space). I was also prompted to change the unit for 'z integration' -- this is the length unit added when integrating a quantity through z. Leaving this in cm means that, even though the coordinate axes are in AU, the density (in g/cm$^{3}$) is integrated through z in cm, giving column density in g/cm$^{2}$ (as opposed to g /cm$^{3}$ AU).
To save what we have done so far, press `s' from the main menu to save the current settings to the \verb+splash.defaults+ file:
\begin{verbatim}
Please enter your selection now (y axis or option):s
default options saved to file splash.defaults
\end{verbatim}
Having turned physical units on, we replot the same plot (i.e., answering 2, 1, 6, 0, /xw to the prompts, as previously). First of all we find simply a white screen. This is a result of the colour bar axis now being wrong. Moving the mouse over the colour bar and pressing `a' (to adapt) results in the plot shown in the left hand panel of Figure~\ref{fig:multipart3}. The plot looks basically identical to the previous plot, except that the axes are now in physical units (x and y are in AU and column density is in g/cm$^{2}$).
Next, we zoom in to the central region of interest using the mouse -- selecting a region and clicking to zoom in. Pressing `o' centres the plot on the origin and as we zoom in it we also press `a' over the colour bar to readjust the colour bar limits to the max/min on the zoomed-in plot. Finishing with the adjustments (and pressing `s' in the plot window to save the current settings) results in the plot shown in the right hand panel of Figure~\ref{fig:multipart3}.
\begin{figure}[h]
\begin{center}
\begin{tabular}{cc}
\includegraphics[width=0.5\textwidth]{multipart3.png} &
\includegraphics[width=0.5\textwidth]{multipart4.png}
\end{tabular}
\caption{Second stage in the multi-panelled figure tutorial: having changed the axes into physical units (left) and zooming in and adjusting the colour bar (right).}
\label{fig:multipart3}
\end{center}
\end{figure}
\subsection{Surface rendering}
Here I will give an example of how to use the 3D surface rendering feature starting with a dump file kindly supplied by Giuseppe Lodato from an SPH simulation of a warped accretion disc. First we read the file (in sphNG format, so we use ssplash):
\begin{verbatim}
dprice$ ssplash warp001
\end{verbatim}
after which we reach the main menu:
\begin{verbatim}
You may choose from a delectable sample of plots
-------------------------------------------------------
1) x 6) density
2) y 7) v\dx
3) z 8) v\dy
4) particle mass 9) v\dz
5) h
-------------------------------------------------------
10) multiplot [ 4 ] m) set multiplot
-------------------------------------------------------
d(ata) p(age) o(pts) l(imits) le(g)end h(elp)
r(ender) v(ector) x(sec/rotate) s,S(ave) q(uit)
-------------------------------------------------------
Please enter your selection now (y axis or option):
\end{verbatim}
Firstly we want to plot just a simple render plot of density. Thus we choose:
\begin{verbatim}
Please enter your selection now (y axis or option):2
(x axis) (default=1):
(render) (0=none) ([0:9], default=0):6
(vector plot) (0=none, 7=v) ([0:7], default=0):
Graphics device/type (? to see list, default /xwin): /xw
\end{verbatim}
producing the plot shown in the left panel of Figure~\ref{fig:surfpart1} (I have used \verb+/png+ instead of \verb+/xw+ to produce the figures for the userguide). Moving the cursor over the colour bar and pressing `l' to log the colour bar axis produces the Figure in the right panel of Figure~\ref{fig:surfpart1}.
\begin{figure}[h]
\begin{center}
\begin{tabular}{cc}
\includegraphics[width=0.5\textwidth]{surfpart1.png} &
\includegraphics[width=0.5\textwidth]{surfpart2.png}
\end{tabular}
\caption{First stage in the surface rendering tutorial: a simple render plot of density (left) and with a log axis after having placed cursor over colour bar and pressed `l' (right)}
\label{fig:surfpart1}
\end{center}
\end{figure}
The next step is to adjust the viewing angle. Pressing `h' in the plot window brings up the list of keystrokes which can be used to change the angle. Here we want to add a rotation about the $x-$ axis, so we press \verb+{+ three times to change the x angle by -90 degrees and then press \verb+[+ once to increment the angle by a further -15 degrees. The \splash output in the terminal reads, amongst other things:
\begin{verbatim}
rotating particles about z by 0.00
rotating particles about y by 0.00
rotating particles about x by 255.00
\end{verbatim}
Then we have the Figure shown in the left panel of Figure~\ref{fig:surfpart2}.
\begin{figure}[h]
\begin{center}
\begin{tabular}{cc}
\includegraphics[width=0.5\textwidth]{surfpart3.png} &
\includegraphics[width=0.5\textwidth]{surfpart4.png}
\end{tabular}
\caption{Second stage in the surface rendering tutorial: after adjusting the rotation angle (left) and with 3D surface rendering turned on (which also turns on 3D perspective) and having adjusted the colour bar limits (right)}
\label{fig:surfpart2}
\end{center}
\end{figure}
Next, we need to turn the 3D surface rendering on. This cannot be done in interactive mode so we need to exit -- pressing `s' first to save what we have done so far, then 'q' to quit interactive mode. Then, back at the \splash main menu, we type x4 for the x)sec/3D plotting options menu, option 4 which is ``3D surface rendering on/off'' with prompts appearing as follows:
\begin{verbatim}
Please enter your selection now (y axis or option):x4
---------- cross section / 3D plotting options --------
Use 3D opacity rendering? (default=yes):y
also turning on 3D perspective (which must be set for this to work)
Warning: 3D opacity rendering sends only an approximate version
to the PGPLOT device (not corrected for brightness)
Do you want to write a ppm file in addition to PGPLOT output? (default=yes):y
\end{verbatim}
Now we replot the original plot with the new settings as follows:
\begin{verbatim}
Please enter your selection now (y axis or option):2
(x axis) (default=1):
(render) (0=none) ([0:9], default=6):
(vector plot) (0=none, 7=v) ([0:7], default=0):
enter z coordinate of observer (default=53.58):
enter distance between observer and projection screen ([0.000:], default=5.358):
using current h and pmass limits to calculate kappa (cross section/unit mass)
min h = 0.1197254 min particle mass = 3.812551E-11
[ kappa = pi*h_min**2/(particle_mass*n_smoothing_lengths) ]
enter approximate surface depth (number of smoothing lengths): ([0.000:], default=2.000):
kappa (particle cross section per unit mass) = 1.2369025E+9
Graphics device/type (? to see list, default /xwin):
\end{verbatim}
Note that several new prompts appear -- for the moment I have just used the default answers by pressing return. The first result is rather frightening : just a black image with a black colour bar! This is because the limits we set for column density are several orders of magnitude away from the limits on density. Moving the cursor over the colour bar and pressing `a' to adapt the limits produces the plot shown in the right panel of Figure~\ref{fig:surfpart2}.
Note that the plot suddenly appears much smaller -- this is a consequence of the 3D perspective settings. Moving the cursor into the plot window and pressing `a' adapts the plot limits. After also clicking on the colour bar and adjusting the colour bar limits, we arrive at the plot shown in the left panel of Figure~\ref{fig:surfpart3}.
\begin{figure}[h]
\begin{center}
\begin{tabular}{cc}
\includegraphics[width=0.5\textwidth]{surfpart5.png} &
\includegraphics[width=0.5\textwidth]{surfpart6.png}
\end{tabular}
\caption{Third stage in the surface rendering tutorial: after adjusting the xy and colour bar limits interactively (left) and increasing the number of pixels and having turned the axes off (right)}
\label{fig:surfpart3}
\end{center}
\end{figure}
Now that we are nearly there, to add the finishing touches we need to i) increase the number of pixels in the image and ii) turn the axes off, since they are no longer meaningful with 3D perspective set. The number of pixels can be increased by returning to the \splash main menu (pressing `s' in interactive mode before doing so to save what we have done so far), then typing `r1' for render menu, option 1:
\begin{verbatim}
Please enter your selection now (y axis or option):r1
----------------- rendering options -------------------
enter number of pixels along x axis ([1:10000], default=200):1000
\end{verbatim}
Next, we turn the axes off using the p)age submenu:
\begin{verbatim}
Please enter your selection now (y axis or option):p2
---------------- page setup options -------------------
-4 : draw box and major tick marks only;
-3 : draw box and tick marks (major and minor) only;
-2 : draw no box, axes or labels;
-1 : draw box only;
0 : draw box and label it with coordinates;
1 : same as AXIS=0, but also draw the coordinate axes (X=0, Y=0);
2 : same as AXIS=1, but also draw grid lines at major increments of the coordinates;
10 : draw box and label X-axis logarithmically;
20 : draw box and label Y-axis logarithmically;
30 : draw box and label both axes logarithmically.
enter axis option ([-4:30], default=0):-2
axis = -2
\end{verbatim}
Plotting the same plot again now results in the plot shown in the right panel of Figure~\ref{fig:surfpart3}.
Finally we will also set the background colour to black, adjust the opacity and move the time legend.
Notice that in the right panel of Figure~\ref{fig:surfpart3} the surface looks quite blotchy. This is an indication that the surface is too shallow (that is we are only seeing particles on the very top). Thus we will adjust the opacity for a slightly deeper plot. We proceed as follows: Exiting interactive mode (pressing `s' then `q' in the plot window), we first set the foreground and background colours in the p)age submenu:
\begin{verbatim}
Please enter your selection now (y axis or option):p8
---------------- page setup options -------------------
Enter background colour (by name, e.g. "black") (default=):black
Enter foreground colour (by name, e.g. "white") (default=):white
Do you want to plot axes and overlaid text in background colour (default is foreground) ? (default=no):
\end{verbatim}
Now, replotting the same plot again, but this time adjusting the opacity at the prompt:
\begin{verbatim}
enter approximate surface depth (number of smoothing lengths): ([0.000:], default=2.000):200.0
\end{verbatim}
Finally, moving the time legend by positioning the cursor and pressing 'G' and zooming out slightly by pressing `-' once, we arrive at our finished figure (or movie frame) shown in Figure~\ref{fig:surfpartfinal}. Pressing `s' in interactive mode saves the settings, then pressing `q' returns to the \splash main menu. To save the settings to disk, press `S' from the main menu to save both the \verb+splash.defaults+ file and the \verb+splash.limits+ file.
\begin{figure}[h!]
\begin{center}
\includegraphics[width=0.5\textwidth]{surfpartfinal.png}
\caption{Finished surface-rendered plot}
\label{fig:surfpartfinal}
\end{center}
\end{figure}
To create a sequence of images with these settings, then simply invoke \splash again with multiple files:
\begin{verbatim}
ssplash warp???
\end{verbatim}
then plotting the same plot as previously to a non-interactive device will cycle through all dump files producing a sequence of plots with names like \verb+splash_0000.png+, \verb+splash_0001.png+ etc. These can be easily converted into an animation.
\subsection{Using asplash to plot energy vs time plots}
\label{sec:evsplash}
asplash (that is, the compilation of \splash which reads ascii files) can also be used for non-SPH data. For example I often use it to plot the contents of the .ev file my SPH code dumps monitoring quantities like energy and angular momentum at every timestep. A shortcut way of setting options appropriate to reading such files (e.g. plotting lines instead of dots, plotting all files on the same page) is implemented by adding the ``-e'' option to the command line: e.g.
\begin{verbatim}
asplash -e file1.ev file2.ev file3.ev
\end{verbatim}
also, using the -e option on the command line means that any modification to the preset options /limits are saved to files called \verb+evsplash.defaults+ and \verb+evsplash.limits+ instead of the usual \verb+splash.defaults+ and \verb+splash.limits+. This means the defaults for this type of plot are saved separately to those for ``normal'' plots of SPH data.
For other command line options, see \S\ref{sec:commandline}.
\subsection{Powerspectrum of 1D data}
In one dimension an extra plot item appears
in the data menu which takes a power spectrum (in space) of a particular
variable defined on the particles. Upon selection the user is prompted for
various settings before plotting the power spectrum. For data defined on
irregularly distributed particles, there are two methods for taking the power
spectrum: Either to interpolate to an even grid and use a Fourier
transform or to use a method for calculating a periodogram of
irregularly sampled data which can have significant advantages over
interpolation. Algorithms for both of these methods have been
implemented. For the first, the SPH data is interpolated to a one dimensional
grid using the kernel before calculating the (slow!) fourier
transform. The second method computes a Lomb/Scargle periodogram as described in \citet{numericalrecipes}.
It should be stressed, however, that \emph{neither} of the subroutines for
calculating the power spectrum is particularly fast and have \emph{only} been included as a preliminary feature since I have used them once or twice in one dimensional simulations where speed is not an issue. The algorithms are fairly simple to extend to multidimensional
data, although faster implementations would be needed (such as a Fast
Fourier Transform routine).
\subsection{Plotting azimuthally-averaged disc surface density and Toomre Q parameter}
\label{sec:surfdens}
For analysis of accretion disc simulations, it is useful to make azimuthally averaged plots of the disc properties such as the surface density and, for self-gravitating discs, the Toomre Q parameter. Extra columns appear to plot both of these quantities when the simulation is 3D and the coordinate system is changed to cylindrical or spherical co-ordinates (in the particle plot (o)ptions menu -- see \S\ref{sec:geom}). For the Toomre Q parameter to appear it is also necessary to have read the thermal energy from the dump file. For example, having read a dump file, change the coordinate system to cylindricals:
\begin{verbatim}
Please enter your selection now (y axis or option):o7
------------- particle plot options -------------------
0) reset (= 1)
1) cartesian x,y,z
2) cylindrical r,phi,z
3) spherical r,phi,theta
4) toroidal r,theta,phi
Enter coordinate system to plot in: ([0:4], default=1):2
\end{verbatim}
then extra columns appear in the menu:
\begin{verbatim}
You may choose from a delectable sample of plots
-------------------------------------------------------
1) r 13) u
2) phi 14) grad h
3) z 15) grad soft
... ...
11) v\dphi 23) Surface density
12) v\dz 24) Toomre Q parameter
-------------------------------------------------------
\end{verbatim}
Then (in this example), select column 23 to plot surface density,
\begin{verbatim}
Please enter your selection now (y axis or option):23
setting x axis to r for surface density plot
\end{verbatim}
...and the plot will appear - an example surface density plot is shown in Figure~\ref{fig:surfdens}.
\begin{figure}[h!]
\begin{center}
\includegraphics[width=0.5\textwidth]{surfdens.pdf}
\caption{Plot of azimuthally averaged surface density in a 3D accretion disk simulation}
\label{fig:surfdens}
\end{center}
\end{figure}
Azimuthally averaged quantities are calculated by binning the particles into a fixed number of annuli in radius. The mean surface density is calculated using
\begin{equation}
\Sigma(r_{ann}) = \frac{M_{ann}}{\pi [(r_{ann} + 0.5\Delta r)^{2} - (r_{ann} - 0.5\Delta r)^{2}]},
\end{equation}
that is, the total mass in the annulus (sum of the particle masses) divided by its area, where $r_{ann}$ is the radius (cylindrical or spherical) of the annulus. The Toomre Q parameter, defined as
\begin{equation}
Q_{Toomre}(r) = \frac{\bar{c}_{s}(r)\kappa(r)}{\pi \Sigma(r)},
\end{equation}
where $\kappa$ is the epicyclic frequency and $\bar{c}_{s}$ is the RMS sound speed, is calculated using the above surface density, assuming a Keplerian rotation profile and a central star mass of unity (i.e., $\kappa(r) = \Omega(r)$, where $\Omega(r) = r^{-3/2}$). The sound speed for each particle $i$ is calculated from the stored thermal energy and $\gamma$ (ratio of specific heats) according to
\begin{equation}
c_{s,i}^{2} = \left\{ \begin{array}{ll}
\frac23 u_{i}, & \gamma = 1; \\
(\gamma-1)\gamma u_i, & \gamma \neq 1;
\end{array}\right.
\end{equation}
from which the RMS sound speed is calculated as the square root of the average of $c_{s}^{2}$ on the particles in the annulus.
\section{Other useful information}%HEVEA\cutname{other.html}
\subsection{Converting binary dump files to ascii using \splash}
\label{sec:convert}
\splash has a command line feature which can be used to convert binary SPH dump files into ascii format. The syntax is
\begin{verbatim}
splash to ascii dump001 dump002 dump???
\end{verbatim}
which will convert all of the dump files listed on the command line into ascii format (called \verb+dump001.ascii+, \verb+dump002.ascii+ etc.), with columns as would be listed in the main menu if you opened the dump file in \splash. Note that the output \emph{includes} calculated extra quantities such as the radius if these have been turned on [in the d) menu] and the settings saved to the \verb+splash.defaults+ file. Similarly the data will be output in physical units if a \verb+splash.units+ file is present.
For other command line options, see \S\ref{sec:commandline}.
\subsection{Converting SPH data files to 3D gridded data using \splash}
\label{sec:converttogrid}
\splash has a command line feature which can be used to read binary SPH dump files and output 3D gridded data in a variety of formats. The syntax is
\begin{verbatim}
splash to grid dump001 dump002 dump???
\end{verbatim}
which will interpolate the density, velocity (if present) and magnetic field (if present) onto a 3D grid and output the results to files (the default output format is ascii, with one file for each quantity interpolated). Other data columns in the SPH file can be interpolated using the ``allto'' option, which interpolates \emph{all} of the columns to the grid:
\begin{verbatim}
splash allto grid dump001 dump002 dump???
\end{verbatim}
The grid interpolation uses the $x$, $y$, and $z$ limits --- as saved to the \verb+splash.limits+ file --- for the box, and the grid size is given by the ``set number of pixels'' option in the r)ender menu --- as saved to the \verb+splash.defaults+ file. Automatic pixel determination also works (if npixels = 0) but there is a sensible upper limit placed on the grid size determined in this manner to avoid ridiculous memory/disk usage. Various environment variable options are available (these are output at runtime) that can be used to change various aspects of the grid interpolation behaviour (e.g. setting \verb+SPLASH_TO_GRID_PERIODIC=yes+ enforces periodic boundary conditions).
For all possible output formats, use \verb+splash --help+ or see the full list of command line options in \S\ref{sec:commandline}.
\subsection{Using \splash to calculate global quantities as a function of time.}
\label{sec:splashcalc}
\splash has a command line feature that can be used to calculate global quantities on the particles as a function of time, for example kinetic, thermal, magnetic and total energy, total linear and angular momentum. An example to calculate the energies in a sequence of dump files is:
\begin{verbatim}
splash calc energies dump001 dump002 dump???
\end{verbatim}
Other options are given by typing 'splash calc', which currently has the following options:
\begin{verbatim}
splash calc energies : calculate KE,PE,total energy vs time
output to file called 'energy.out'
calc massaboverho : mass above a series of density thresholds vs time
output to file called 'massaboverho.out'
calc max : maximum of each column vs. time
output to file called 'maxvals.out'
calc min : minimum of each column vs. time
output to file called 'minvals.out'
calc mean : mean of each column vs. time
output to file called 'meanvals.out'
calc rms : (mass weighted) root mean square of each column vs. time
output to file called 'rmsvals.out'
calc timeaverage : time average of *all* entries for every particle
output to file called 'time_average.out'
\end{verbatim}
For the `energies' and `massaboverho' options to be successful, \splash must be aware of the locations of the corresponding columns in the data (i.e., by the column identification given in the set\_labels routine corresponding to the data read). For the `massaboverho' option an input file is required specifying the density thresholds (a default version is written if the appropriate file is not already present).
\subsection{Using \splash to time average a series of files}
The `splash calc timeaverage' command line option (see \S\ref{sec:splashcalc}) can be used to produce a time average of a series of files from any splash-readable format. This computes the time-average of every individual entry in the file as represented in \splash as a table of rows (or `particles') and columns (or `quantities defined on particles'). The output is an ascii file with the same rows and columns, averaged over all the snapshots on the command line. The number of columns is doubled in the output, giving the standard deviation for each quantity in the corresponding column (e.g., the standard deviation for column 1 is output in column $N + 1$).
Examples of how this could be use might be to produce the time-averaged power spectrum from a series of ascii files containing power spectra for individual output times, or the time averaged probability density function (PDF) from PDFs produced by \splash.
The resulting ascii file, called \verb+time_average.out+ can be plotted using the ascii splash binary (asplash).
For other command line options, see \S\ref{sec:commandline}.
%\subsection{Fixing the PGPLOT file naming system}
%\label{sec:fixpgplotnames}
%
%When you run \splash to make a series of plots it generate files with names..
%\begin{verbatim}
%pgplot.gif
%pgplot.gif_1
%pgplot.gif_2
%...
%pgplot.gif_10
%pgplot.gif_11
%pgplot.gif_12
%..
%pgplot.gif_200
%pgplot.gif_201
%\end{verbatim}
%The annoying thing is that the numeric indices on these files are out of order and, when using
%standard programs to make animations, results in frames out of sequence.
%
% The problem is related to PGPLOT file naming conventions. The fix is that, included in the splash/scripts directory is a script called 'fixpgplotnames.bash'. If you run this in the directory where your files are located, i.e.,
%\begin{verbatim}
%cd mydir
%~/splash/scripts/fixpgplotnames.bash
%\end{verbatim}
%will rename all of the files sensibly. If you run it with a number as the argument
%\begin{verbatim}
%~/splash/scripts/fixpgplotnames.bash 10
%\end{verbatim}
%it will rename filenames adding 10 to the number (actually 11 because it starts from 1). This is
%useful if you run \splash multiple times to get different parts of an animation.
\subsection{Reading/processing data into images without having to answer prompts}
\label{sec:batchmode}
Previously, the only way to run \splash
non-interactively was to write a small shell script which runs \splash
and answers the prompts appropriately. For example:
\begin{verbatim}
#!/usr/bin/tcsh
cd plot
splash myrun* << ENDINPUT
2
1
8
0
/png
q
ENDINPUT
\end{verbatim}
which would plot the data in columns 2 and 1 and render the data in column 8 with
output to file \verb+mypostscript.ps+.
However, in more recent versions \splash can be invoked with plot options on the command line. Thus to achieve the same as in the example given above we would simply use
\begin{verbatim}
splash myrun* -x 1 -y 2 -render 8 -dev /png
\end{verbatim}
or simply
\begin{verbatim}
splash myrun* -r 8 -dev /png
\end{verbatim}
which will assume sensible default values (2 and 1 respectively) for the y and x axes. Similarly a vector plot can be specified with \verb+-vec+ and a contour plot with \verb+-cont+. The full list of command-line flags is given in \S\ref{sec:commandline}.
If plotting options have been only partially specified on the command line, then prompts will appear for only the remaining options. This can be used for example to specify the graphics device via the \verb+-dev+ command line option, which means that only the device selection prompt does not appear.
\subsection{Making frames across multiple processors}
Making identical plots of a series of dump files for a movie is a task which can inherently be done in parallel. Included in the splash/scripts directory is a perl wrapper for \splash (``\verb+splash_parallel.pl+'') which distributes multiple instances of \splash across multiple machines, either via ssh or using Apple's xgrid, with a common input file as described in \S\ref{sec:batchmode}. The limitation to this is that you need to have a disk which can be mounted from all client machines (i.e., they can read the data files) and preferably with password-less access (e.g. using an ssh key-exchange or Kerberos authentication). The script itself may need some slight adjustment for your particular system.
However, with large datasets often the slowest part of the rendering process can be reading the data file. A good way of crippling a system is therefore to set 100 jobs going which all decide to read a large data file from disk at the same time. To avoid this the script allows the user to set a delay between launching jobs (preferably slightly longer than the length of time it takes to read a single dump file), but some care is needed to avoid disaster. You have been warned!
\subsection{What about boundaries? How does the rendering work near a boundary?}
Usual practise in SPH simulations near boundaries is
to introduce ghost particles which mirror the real particles. \splash does not
explicitly setup any ghost particles but will use any that are present in the data
(see next question for how to specify multiple particle types). Additional particle types contribute
to the rendering calculations but not to the determination of the plot limits. Note,
however, that \splash does \emph{not} set up ghost particles itself, as this may depend
on the type and location of the boundary. Thus if your simulation uses ghost particle
boundaries, the ghost particles should be dumped alongside the gas particles in the
output file so that their positions, masses, densities and smoothing lengths can be
read into \splash and used to render the image appropriately.
\subsection{How does \splash handle multiple particle types?}
\splash can handle up to 6 different particle types. These can be turned on and off in the particle plot
o)ptions menu (\S\ref{sec:opts}). These types are be specified in the set\_labels part of the read\_data
routine, which contains some lines of code along the lines of:
\begin{verbatim}
ntypes = 3
labeltype(1) = 'gas'
labeltype(2) = 'ghost'
labeltype(3) = 'sink'
UseTypeInRenderings(1) = .true.
UseTypeInRenderings(2) = .true.
UseTypeInRenderings(3) = .false.
\end{verbatim}
which says that there are 3 particle types, with names as given, and that types 1 and 2 are SPH particles and
should be used in the rendering where appropriate (i.e., only when plotting of this type is turned on in the
o)pts menu). Particle types which are to be used in renderings should have masses, densities and smoothing
lengths read. Non-SPH particle types (e.g. sink particles) can be optionally plotted on top of rendered plots.
\subsection{Using special characters in the plot labels}
Several of the examples shown in this manual use special characters (such as
the $\int$ character) in the plot labels. In \giza these can be specified using \TeX-like escape sequences, or with the escape sequences used in \textsc{pgplot}. For example to plot the greek letter $\rho$ we would use
\begin{verbatim}
label = 'this would print the greek letter \rho'
\end{verbatim}
or, in \textsc{pgplot}-style:
\begin{verbatim}
label = 'this would print the greek letter \gr'
\end{verbatim}
where \verb+\gr+ is the \textsc{pgplot} escape sequence for $\rho$.
\begin{quote}
In \giza, which uses real fonts rather than the bitmapped characters used in \textsc{pgplot}, special characters are implemented with unicode characters. Thus, you need to select a font that has the appropriate characters included. The font can be changed using the \verb+GIZA_FONT+ environment variable.
\end{quote}
For other characters the procedure is similar. For example for the integral
\begin{equation}
\int v_x \mathrm{dx}
\end{equation}
we would use the \TeX-like expression
\begin{verbatim}
label = '\int v_x dx'
\end{verbatim}
or equivalently, in \textsc{pgplot}-style
\begin{verbatim}
label = '\(2268) v\d x \u dx'
\end{verbatim}
where \verb+\(2268)+ is the \textsc{pgplot} escape sequence for the integral sign. The
\verb+\d+ indicates that what follows should be printed as subscript and
\verb+\u+ correspondingly indicates a return to normal script (or from normal script to
superscript). All of the escape sequences for special characters are listed in
the appendix to the \textsc{pgplot} user guide.
\begin{quote}
WARNING: Note that the use of escape characters can be compiler dependent and
may not therefore work on all compilers (for example the intel compiler needs
the -nbs flag).
\end{quote}
\subsection{Making movies}
See \S\ref{sec:movies} and the online FAQ (\url{http://users.monash.edu.au/~dprice/splash/faqs.html}).
\subsection{Outputting the raw pixel map to a file}
\label{sec:writepixmap}
The actual pixel map rendered to the graphics device (i.e., when a quantity is rendered to pixels, not for particle plots) can be output directly to a file, or series of files by using the \verb+-o+ command line option when you invoke \splash. Invoking \splash with \verb+-o+ produces a list of currently implemented formats (at the moment these are an ascii dump file and ppm format). This is useful if you need to compare the image to the output from another code (e.g. using a different visualisation tool) or if you wish to have a ``raw'' rendering, that is without annotation on the plots, but which (in the ppm case) uses more colours. The files are given default names such as ``splash\_00001.dat'' or ``splash\_00001.ppm'' where the number corresponds to the frame number as would be rendered to the graphics device.
For other command line options, see \S\ref{sec:commandline}.
\section{User contributions}%HEVEA\cutname{wishlist.html}
Please contribute! All user contributions or suggestions are greatly
appreciated. In particular, please send:
\begin{itemize}
\item Bugs!
\item Feature requests/suggestions.
\item Pretty pictures for the gallery.
\end{itemize}
If you are *really* keen, you may also like to consider:
\begin{itemize}
\item Exact solution routines for test problem(s). Even just an analytic description from which I can write the code.
\item Suggestions/tips on possible visualisation techniques
\item More colour schemes (simply email me a table of the rgb colour indices, or failing that simply an image of the colour scheme and I will add it).
\end{itemize}
I am also very open to allowing commit access to the repositories - just let me know. Otherwise, contributions, comments and inevitable bugs should be sent to:
\begin{verbatim}
splash-users@googlegroups.com
\end{verbatim}
or
\begin{verbatim}
daniel.price@monash.edu
\end{verbatim}
\section*{Acknowledgements}%HEVEA\cutname{thanks.html}
Several of the routines were developed from ideas used by Matthew Bate and \splash has been refined by many useful discussions with Matthew. The
polytrope exact solution is from a routine by Joe Monaghan. I am indebted to one Thomas S. Ullrich at the University of Heidelberg who wrote the prompting module
which is used throughout the program and to Roland Schmehl who wrote the excellent function parser module (made available at \url{http://fparser.sourceforge.net}). Last but not least, a huge thanks especially to all the users who have given feedback which has helped to improve \splash including, but not limited to:
Stefan Adami,
Craig Agnor,
Richard Alexander,
Gabe Altay,
Pau Amaro-Seoane,
Sumedh Anathpindika,
Ben Ayliffe,
Andreas Bauswein,
Mark Bennett,
Florian Buerzle,
Paul Cornwall,
Jared Coughlin,
Carlos Cuesta,
Alan Duffy,
Clare Dobbs,
Claude-Andr\'e Faucher-Gigu\`ere,
Christoph Federrath,
Laure Fouchet,
Sergio Gelato,
Thomas Grief,
Doron Grossman,
Johnny Hitti,
Vid Ir\v{s}i\v{c},
John Jones,
Sky King,
Laura Kreidberg,
Guillaume Laibe,
Giuseppe Lodato,
David Madlener,
John Mansour,
Ruben Martin,
Farzana Meru,
Andrew McLeod,
Nick Moeckel,
Shazrene Mohamed,
Chris Nixon,
Cody Raskin,
John Regan,
Dave Rundle,
Alison Sills,
Kevin Sooley,
Terry Tricco,
Yusuke Tsukamoto,
Sigfried Vanaverbeke,
Enrique Vazquez-Semadeni
Antonio Vazquez,
and Matt Young.
And to everyone who has cited the \splash paper!
\newpage
\appendix
\section{Source code overview}%HEVEA\cutname{sourcecode.html}
Here is a brief description of all the files making up the code:
\begin{longtable}{|lp{0.7\textwidth}|}
\hline
Filename & Description \\
\hline \endhead
\multicolumn{2}{|r|}{\emph{continued on next page}} \\
\hline \endfoot
\hline \endlastfoot
allocate.f90 & allocates memory for main arrays \\
calc\_quantities.f90 & calculates additional quantities from particle data \\
colours.f90 & colour schemes for rendering\\
colourparts.f90 & colours particles\\
defaults.f90 & writes/reads default options to/from file\\
exact.f90 & module handling exact solution settings\\
exact\_densityprofiles.f90 & various $N-$body density profiles \\
exact\_fromfile.f90 & reads an exact solution tabulated in a file\\
exact\_mhdshock.f90 & some tabulated solutions for mhd shocks\\
exact\_polytrope.f90 & exact solution for a polytrope\\
exact\_rhoh.f90 & exact relation between density and smoothing length\\
exact\_sedov.f90 & exact solution for sedov blast wave\\
exact\_shock.f90 & exact solution for hydrodynamic shocks\\
exact\_wave.f90 & exact solution for a propagating sine wave\\
exact\_toystar.f90 & exact solution for the toy star problem\\
exact\_toystar2D.f90 & exact solution for the 2D toy star problem\\
get\_data.f90 & wrapper for main data read\\
geometry.f90 & module handling different coordinate systems\\
globaldata.f90 & various modules containing "global" variables\\
interactive.f90 & drives interactive mode\\
interpolate1D.f90 & interpolation of 1D SPH data to grid using kernel\\
interpolate2D.f90 & interpolation of 2D SPH data to grid \\
interpolate3D\_xsec.f90 & 3D cross section interpolations\\
interpolate3D\_projection.f90 & 3D interpolation integrated through domain\\
legends.f90 & plots (time) legend on plot\\
limits.f90 & sets initial plot limits and writes to/reads from limits file\\
menu.f90 & main menu\\
options\_data.f90 & sets options relating to current data\\
options\_limits.f90 & sets options relating to plot limits\\
options\_page.f90 & sets options relating to page setup\\
options\_particleplots.f90 & sets options relating to particle plots\\
options\_powerspec.f90 & sets options for power spectrum plotting\\
options\_render.f90 & sets options for render plots\\
options\_vector.f90 & sets options for vector plots\\
options\_xsecrotate.f90 & sets options for cross sections and rotation\\
particleplot.f90 & subroutines for particle plotting\\
plotstep.f90 & main ``backbone'' of the code which drives plotting of a single timestep\\
powerspectrums.f90 & calculates power spectrum of 1D data (2 methods)\\
read\_data\_dansph.f90 & reads data from my format of data files\\
read\_data\_mbate.f90 & reads data from matthew bate's format of data files\\
read\_data\_xxx.f90 & reads data from \ldots \\
render.f90 & takes array of pixels and plots render map/contours etc\\
rotate.f90 & subroutines controlling rotation of particles\\
setpage.f90 & sets up the PGPLOT page (replaces call to PGENV/PGLAB)\\
splash.f90 & main program, handles startup/ command line reading\\
timestepping.f90 & controls stepping through timesteps\\
titles.f90 & reads a list of titles to be used to label each timestep\\
transform.f90 & applies various transformations to data (log10, 1/x, etc) \\
\end{longtable}
\section{Coordinate transformation details}%HEVEA\cutname{geometry.html}
\label{sec:coordtransforms}
Particle positions and vectors defined on the particles can be plotted in non-cartesian coordinate
systems. The coordinate system can be set via the particle plot o)ptions menu, via the ``change coordinate
system'' option. The actual coordinate transformations are defined in a standalone Fortran module called
\verb+geometry.f90+ and the precise details can be determined by looking in this file. For reference, however the transformations are given below.
\subsection{ Cylindrical Polar Coordinates}
For cylindrical coordinates the transformations are:
\begin{displaymath}
\begin{array}{lclp{1cm}lcl}
r & = & \sqrt{x^2 + y^2} & & x & = & r\cos\phi \\
\phi & = & \tan^{-1}{(y/x)} &; & y & = & r\sin\phi \\
z & = & z & & z & = & z\\
\end{array}
\end{displaymath}
where vectors transform according to:
\begin{displaymath}
\begin{array}{lclp{1cm}lcl}
v_r & = & v_x \frac{x}{r} + v_y \frac{y}{r} & & v_x & = & v_r \cos\phi - v_\phi \sin\phi \\
v_\phi & = & v_x \left(\frac{-y}{r}\right) + v_y \left(\frac{x}{r}\right) &; &v_y & = & v_r \sin\phi + v_\phi \cos\phi \\
v_z & = & v_z & & v_z & = & v_z. \\
\end{array}
\end{displaymath}
In the case where these vectors are velocities, the $v_{\phi}$ component corresponds to $v_{\phi} = r\dot{\phi}$.
\subsection{ Spherical Polar Coordinates}
For spherical coordinates the transformations are:
\begin{displaymath}
\begin{array}{lclp{1cm}lcl}
r & = & \sqrt{x^2 + y^2 + z^{2}} & & x & = & r\cos\phi\sin\theta\\
\phi & = & \tan^{-1}{(y/x)} &; & y & = & r\sin\phi\sin\theta \\
\theta & = & \cos^{-1}(z/r) & & z & = & r\cos\theta \\
\end{array}
\end{displaymath}
where vectors transform according to:
\begin{displaymath}
\begin{array}{lclp{1cm}lcl}
v_r & = & v_x \frac{x}{r} + v_y \frac{y}{r} + v_{z}\frac{z}{r} & & v_x & = & v_r \cos\phi\sin\theta- v_\phi \sin\phi + v_\theta \cos\phi\cos\theta \\
v_\phi & = & v_x \left(\frac{-y}{\sqrt{x^2 + y^{2}}}\right) + v_y \left(\frac{x}{\sqrt{x^2 + y^{2}}}\right) &; &v_y & = & v_r \sin\phi\sin\theta + v_\phi \cos\phi + v_{\theta} \sin\phi\cos\theta \\
v_\theta & = & v_{x}\frac{xz}{r \sqrt{x^{2} + y^{2}}} + v_{y}\frac{yz}{r \sqrt{x^{2} + y^{2}}} - v_{z}\frac{(x^{2} + y^{2})}{r\sqrt{x^{2} + y^{2}}} & & v_z & = & v_r \cos\theta - v_\theta \sin\theta. \\
\end{array}
\end{displaymath}
In the case where these vectors are velocities, the components $v_{\phi}$ and $v_{\theta}$ correspond to $v_{\phi} = r\sin{\theta}\dot{\phi}$ and $v_{\theta} = r\dot{\theta}$ respectively.
\subsection{ Toroidal Coordinates}
Toroidal coordinates represent a local frame of reference inside a torus. The coordinate transformations are given by
\begin{displaymath}
\begin{array}{lclp{1cm}lcl}
r & = & \sqrt{[(x^2 + y^2)^{1/2} - R]^{2} + z^{2}} & & x & = & (r\cos\theta + R) \cos\phi \\
\theta & = & \sin^{-1}{(z/r)} &; & y & = & (r\cos\theta + R)\sin\phi \\
\phi & = & \tan^{-1}(y/x) & & z & = & r\sin\theta \\
\end{array}
\end{displaymath}
where $R$ is the radius of the torus and vectors transform according to:
\begin{displaymath}
\begin{array}{lclp{2cm}lcl}
v_r & = & v_x \frac{x(r_{cyl} - R)}{r r_{cyl}} + v_y \frac{y(r_{cyl} - R)}{r r_{cyl}} + v_{z} \frac{z}{r} & & v_x & = & v_r \cos\theta\cos\phi- v_\theta \sin\theta\cos\phi - v_\phi\sin\phi \\
v_\theta & = & v_x \frac{-zx}{r r_{cyl}} + v_y\frac{-zy}{r r_{cyl}} + v_{z}\frac{(r_{cyl} - R)}{r} &; &v_y & = & v_r \cos\theta\sin\phi - v_\theta \sin\theta\sin\phi + v_\phi\cos\phi \\
v_\phi & = & v_{x} \left(\frac{-y}{r_{cyl}}\right) + v_{y} \left(\frac{x}{r_{cyl}}\right) & & v_z & = & v_{r}\sin\theta + v_{\theta} \cos\theta \\
\end{array}
\end{displaymath}
where we have defined, for convenience,
\begin{equation}
r_{cyl} = \sqrt{x^{2} + y^{2}} = r\cos\theta + R. \nonumber
\end{equation}
The torus radius $R$ is a parameter in the \verb+geometry+ module and is set to $1$ by default.
\section{Exact solution details}%HEVEA\cutname{exactsolutions.html}
\label{sec:exact}
\subsection{Errors}
The error norms calculated when exact solutions are plotted are as follows: The
error for each particle is given by
\begin{equation}
e_i = f_i - f_{exact},
\end{equation}
where the exact solution $f_{exact}(x)$ is the solution returned from the exact
solution subroutines (with resolution adjustable in the exact solution options menu
option) interpolated to the position of the current particle $x_i$ via a simple linear
interpolation. The absolute $L_1$ error norm is simply the average of the errors across
the domain, calculated according to
\begin{equation}
\Vert e \Vert_{L_1} = \frac{1}{N f_{max}} \sum_{i=1}^N \vert e_i \vert,
\end{equation}
where $f_{max}$ is the maximum value of the exact solution in the region in which the
particles lie (also only particles in the current plot are used) which is used to
normalise the error estimate. A better error norm is the $L_2$ or \emph{Root Mean Square}
(RMS) norm given by
\begin{equation}
\Vert e \Vert_{L_2} = \left[\frac{1}{N} \left( \frac{1}{f_{max}^2} \sum_{i=1}^N \vert e_i
\vert^2 \right)\right]^{1/2}.
\end{equation}
Finally the maximum error, or $L_\infty$ norm is calculated according to
\begin{equation}
\Vert e \Vert_{L_\infty} = \frac{1}{f_{max}} {\rm max}_i \vert e_i \vert.
\end{equation}
which is the most stringent error norm.
The inset plot of the individual particle errors shows the fractional deviation for
each particle given by
\begin{equation}
e_{i,frac} = (f_i - f_{exact}) / f_{exact}.
\end{equation}
\subsection{Shock tubes (Riemann problem)}
The subroutine \verb+exact_shock+ plots the exact solution for a one-dimensional shock tube
(Riemann problem). The difficult bit of the problem is to determine the jump in
pressure and velocity across the shock front given the initial left and right
states. This is performed in a separate subroutine (riemannsolver) as there are
many different methods by which this can be done (see e.g. \citealt{toro92}).
The actual subroutine exact\_shock reconstructs the shock profile (consisting of
a rarefaction fan, contact discontinuity and shock, summarised in Figure
\ref{fig:shocktube}), given the post-shock values of pressure and
velocity.
\begin{figure}
\begin{center}
\includegraphics[width=0.8\textwidth]{figs/sodshock.pdf}
\caption{Example of exact solution for one-dimensional shock tube problem (red line) compared to the SPH solution (black line/particles), utilising the exact solutions incorporated in \splash}
\label{fig:shocktube}
\end{center}
\end{figure}
The speed at which the shock travels into the `right' fluid can be computed from the post shock
velocity using the relation
\begin{equation}
v_{shock} = v_{post}\frac{(\rho_{post}/\rho_R)}{(\rho_{post}/\rho_R)- 1},
\end{equation}
where the jump conditions imply
\begin{equation}
\frac{\rho_{post}}{\rho_R} = \frac{(P_{post}/P_R) + \beta}{1 + \beta (P_{post}/P_R)}
\end{equation}
with
\begin{equation}
\beta = \frac{\gamma - 1}{\gamma + 1}.
\end{equation}
\subsubsection{ Riemann solver}
The algorithm for determining the post-shock velocity and pressure is taken
from \citet{toro92}.
\subsection{Polytrope}
The subroutine \verb+exact_polytrope+ computes the exact solution for a static polytrope with
arbitrary $\gamma$. From Poisson's equation
\begin{equation}
\nabla^2 \phi = 4\pi G \rho,
\end{equation}
assuming only radial dependence this is given by
\begin{equation}
\frac{1}{r^{2}} \frac{d}{dr} \left(r^{2} \frac{d\phi}{dr} \right) = 4\pi G \rho(r).
\label{eq:poissonsph}
\end{equation}
The momentum equation assuming an equilibrium state (${\bf v} = 0$) and a
polytropic equation of state $P = K\rho^{\gamma}$ gives
\begin{equation}
\frac{d\phi}{dr} = - \frac{\gamma K}{\gamma-1}\frac{d}{dr} \left[\rho^{(\gamma -1)} \right]
\label{eq:polyk}
\end{equation}
Combining (\ref{eq:poissonsph}) and (\ref{eq:polyk}) we obtain an equation for the density profile
\begin{equation}
\frac{\gamma K}{4\pi G (\gamma - 1)} \frac{1}{r^{2}} \frac{d}{dr} \left[r^{2}
\frac{d}{dr}\left( \rho^{\gamma-1} \right) \right] + \rho(r) = 0.
\label{eq:dens}
\end{equation}
This equation can be rearranged to give
\begin{equation}
\frac{\gamma K}{4\pi G (\gamma - 1)} \frac{d^2}{dr^2}
\left[r\rho^{\gamma-1}\right] + r\rho = 0.
\end{equation}
The program solves this equation numerically by defining a variable
\begin{equation}
\mathcal{E} = r \rho^{\gamma-1}
\end{equation}
and finite differencing the equation according to
\begin{equation}
\frac{\mathcal{E}^{i+1} - \mathcal{E}^i + \mathcal{E}^{i-1}}{(\Delta r)^2} =
\frac{4\pi G (\gamma - 1)}{\gamma K} r
\left(\frac{\mathcal{E}}{r}\right)^{1/(\gamma-1)}.
\end{equation}
\subsection{Linear wave}
The subroutine \verb+exact_wave+ simply plots a sine function on a given graph.
The function is of the form
\begin{equation}
y = \sin{(k x - \omega t)}
\end{equation}
where $k$ is the wavenumber and $\omega$ is the angular frequency. These
parameters are set via the input values of wavelength $\lambda = 2\pi/k$ and
wave period $P = 2\pi/\omega$.
\begin{table}
\centering
\begin{tabular}{|l|l|}
\hline
$\lambda$ & wavelength \\
$P$ & period \\
\hline
\end{tabular}
\caption{Input parameters for the linear wave exact solution}
\end{table}
\subsection{Sedov blast wave}
The subroutine \verb+exact_sedov+ computes the self-similar Sedov solution for a blast wave.
\subsection{Toy stars}
The subroutine \verb+exact_toystar1D+ computes the exact solutions for the `Toy
Stars' described in \citet{mp04}. The system is one dimensional with velocity $v$, density $\rho$, and pressure
$P$. The acceleration equation is
\begin{equation}
\frac{dv}{dt} = - \frac{1}{\rho} \frac{\partial P}{\partial x} - \Omega^2 x,
\end{equation}
We assume the equation of state is
\begin{equation}
P = K \rho^\gamma,
\end{equation}
The exact solutions provided assume the equations are scaled such that
$\Omega^2 = 1$.
\subsubsection{ Static structure}
The static structure is given by
\begin{equation}
\bar \rho = 1- x^2,
\end{equation}
\subsubsection{ Linear solutions}
The linear solution for the velocity is given by
\begin{equation}
v = 0.05 C_s G_n(x) \cos{\omega t} )
\end{equation}
density is
\begin{equation}
\rho = \bar{\rho} + \eta
\end{equation}
where
\begin{equation}
\eta = 0.1 C_s \omega P_{n+1}(x) \sin{(\omega t)})
\end{equation}
\subsubsection{ Non-linear solution}
In this case the velocity is given by
\begin{equation}
v = A(t) x,
\end{equation}
whilst the density solution is
\begin{equation}
\rho^{\gamma -1} = H(t) - C(t) x^2.
\end{equation}
where the parameters A, H and C are determined by solving the ordinary
differential equations
\begin{eqnarray}
\dot{H} & = & -AH(\gamma -1), \\
\dot{A} & = & \frac{2K \gamma}{\gamma -1} C - 1 - A^2 \\
\dot{C} & = & -AC(1+ \gamma),
\end{eqnarray}
The relation
\begin{equation}
A^2 = -1 - \frac{2 \sigma C}{\gamma -1} + kC^{\frac{2}{\gamma +1}},
\label{eq:kconst}
\end{equation}
is used to check the quality of the solution of the differential equations by
evaluating the constant $k$ (which should remain close to its initial value).
\subsection{MHD shock tubes}
These are some tabulated solutions for specific MHD shock tube problems at a
given time taken from the tables given in \citet{dw94} and \citet{rj95}.
\subsection{h vs $\rho$}
The subroutine exact\_hrho simply plots the relation between smoothing length
and density, i.e.,
\begin{equation}
h = h_{fact} \left(\frac{m}{\rho}\right)^{1/\nu}
\end{equation}
where $\nu$ is the number of spatial dimensions. The parameter $h_{fact}$ is
output by the code into the header of each timestep. For particles of different
masses, a different curve is plotted for each different mass value.
\newpage
\section{Writing your own read\_data subroutine}%HEVEA\cutname{readdata.html}
\label{sec:writeyourown}
Essentially, this is not recommended. The best way is just to email me a sample data file and a copy of the routine that wrote it. I am very happy to do this, will mean that your read is officially supported, will appear in the development repository, and will be updated with new features as necessary. It doesn't matter if your code only has one user, I am still happy to do this as it makes \splash more widely useable and saves trouble later.
The second best way is to attempt to modify one of the existing data reads. Even then, there are some things to note: Most important is that, for the rendering routines to work, the density, particle masses and smoothing lengths for \emph{all} of the (gas) particles \emph{must} be read in from
the data file and their locations in the main data array labelled using the integer
parameters \verb+irho+, \verb+ipmass+ and \verb+ih+. Labelling of the location of other particle
quantities (e.g. \verb+iutherm+ for the thermal energy) is used in
order to plot the exact solutions on the appropriate graphs and also for calculating
additional quantities (e.g. calculation of the pressure uses \verb+iutherm+ and
\verb+irho+).
The positions of vector components in the data columns are indicated by setting the variable \verb+iamvec+ of that
column equal to the first component of the vector of which this component is a part. So if column 4
is a vector quantity (say ${\bf v}$ in 3D), then \verb+iamvec(4) = 4+, \verb+iamvec(5) = 4+ and
\verb+iamvec(6) = 4+. Similarly the string \verb+labelvec+ should be set, i.e., \verb+labelvec = 'v'+ for these columns.
\bibliographystyle{bibstyle}
\bibliography{sph,mhd}%HEVEA\cutname{refs.html}
%\end{divstyle}
\end{document}
|