-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
98 lines (91 loc) · 5.73 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>line of sight filament velocities</title>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,400,600,300' rel='stylesheet' type='text/css'>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/d3.v3.min.js"></script>
<script src="js/skelconfig.js"></script>
<script type="text/javascript" src="js/skel.min.js"></script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-38044695-1', 'nickolas1.com');
ga('send', 'pageview');
</script>
</head>
<body>
<div id="main">
<div class="container">
<div class="row">
<div class="12u">
<div id="header" class="header not-mobile">
<h1>Line of sight velocity profiles in turbulent molecular clouds</h1>
<!--<p>test bed for giving collaborators an overview of a simulation</p>-->
</div>
</div>
</div>
<!--<div class="row">
<div id="scalebar" class="-5u 7u">
</div>
</div>-->
<div class="row">
<div class="5u">
<div id="topmatter" class="row">
<div id="blurb" class="description not-mobile">
This is a snapshot from a three dimensional simulation of about 5,700 Solar
masses of gas in a 10 pc periodic box. The gas began with fully developed turbulence at Mach 8; this is after
1.27 Myr of self-gravitating evolution.
Click around the image to explore the line-of-sight velocity structure.
</div>
<div id="columnpicker" class="imageselector not-mobile">
<h2>pick a column density image (current choice is <em class="emblue">darker</em>)</h2>
<p id="totalColumn" onclick="selectTotalColumn()">
total column density <small>(log scale)</small></p>
<p id="moderateColumn" onclick="selectModerateColumn()">
10<sup>3</sup> < n cm<sup>-3</sup> < 10<sup>4.5</sup> <small>(linear scale; approximates C<sup>18</sup>O)</small></p>
</div>
<div id="toggler" class="imageselector not-mobile">
<h2>toggle high density contours and sink particles</h2>
<span style="margin-left:1em;" id="highColumn" onclick="toggleHighDensity()">
10<sup>4.5</sup> < n cm<sup>-3</sup> <small>(approximates N<sub>2</sub>H<sup>+</sup>)</small>
</span>
<span style="margin-left:3em;" id="sinkParticles" onclick="toggleSinkParticles()">
sink particles
</span>
</div>
<div class="pointselector not-mobile">
<h2>click the image to inspect a point</h2>
<span class="columntable rowlabel">tracer<sup></sup> :</span>
<span class="columntable collabel">total<sup></sup></span>
<span class="columntable collabel">C<sup>18</sup>O</span>
<span class="columntable collabel">N<sub>2</sub>H<sup>+</sup></span>
<span class="columntable rowlabel">log N / cm<sup>-2</sup> :</span>
<span class="columntable entry" id="nTotalVal">--</span>
<span class="columntable entry" id="nC18OVal">--</span>
<span class="columntable entry" id="nN2HplusVal">--</span>
</div>
</div>
<div class="row">
<div id="spectraplot" class="12u">
</div>
</div>
</div>
<div id="snapshot" class="7u"></div>
</div>
<div class="row not-mobile">
<div class="-5u 7u">
<div id="footer" class="footer">
simulated with <a href="https://trac.princeton.edu/Athena/">Athena</a> and
<a href="https://bitbucket.org/rteyssie/ramses">Ramses</a> – analysed with <a href="http://yt-project.org">yt</a> – put together by <a href="http://nickolas1.com">Nickolas Moeckel</a> - <a href="https://github.com/nickolas1/filamentvelocities">fork me</a>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/viz.min.js"></script>
</body>
</html>