-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexamples.html
117 lines (98 loc) · 1.97 KB
/
examples.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<html> <head>
<title>MCViNE Examples</title>
<script language="javascript" type="text/javascript" src="flot/jquery.js"></script>
<script src="mcvine.js"></script>
<link rel="stylesheet" type="text/css" href="mcvine.css">
</head>
<body>
<div id="page" class="top">
<!--
<h1>Neutron Scattering Data Analysis by Reduction, Modeling, and Simulation --
Support for Virtual Neutron Facility at SNS</h1>
-->
<h1>Examples</h1>
<a href="QIKR.html">
<table class="case-container">
<tr>
<td>
<div class="label">
QIKR, a STS reflectometer simulated using numpy-based components
</div>
</td>
<td>
<img src="QIKR/sim-data.png" width="400px">
</td>
</tr>
</table>
</a>
<a href="KVO.html">
<table class="case-container">
<tr>
<td>
<img src="KVO/sim-IhE.jpg" width="400px">
</td>
<td>
<div class="label">
Spin wave measured at HYSPEC, SNS
</div>
</td>
</tr>
</table>
</a>
<a href="Si.html">
<table class="case-container">
<tr>
<td>
<div class="label">
Coherent phonon scattering from single crystal sample measured
at ARCS, SNS
</div>
</td>
<td>
<img src="Si/modeled-IxE.jpg" width="400px">
</td>
</tr>
</table>
</a>
<a href="Al.html">
<table class="case-container">
<tr>
<td>
<img src="Al/exp-IQE.jpg" width="400px">
</td>
<td>
<div class="label">
Coherent inelastic phonon scattering from powder
</div>
</td>
</tr>
</table>
</a>
<a href="V-plate.html">
<table class="case-container">
<tr>
<td>
<div class="label">
Simplest inelastic scattering -- Incoherent inelastic phonon scattering
</div>
</td>
<td>
<img src="V-plate/exp-IQE.jpg" width="400px">
</td>
</tr>
</table>
</a>
</div> <!-- page -->
<script>
$(
function(){
$(".case-container").hover(function() {
$(".case-container").removeClass("active");
$(this).addClass("active");
});
}
);
mcvine.init();
</script>
</body>
</html>