-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (90 loc) · 2.83 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<html> <head>
<title>MCViNE</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>MCViNE: Monte Carlo Virtual Neutron Experiments</h1>
MCViNE is a versatile Monte Carlo neutron ray-tracing program that provides researchers with tools for performing computer modeling and simulations that mirror real neutron scattering experiments.
<div id="news">
</div>
<h2> Team </h2>
<div id="team">
<h3> Developers </h3>
Current and past developers include
<a href="http://linjiao.info">Jiao Lin</a>, Ian Lumsden, Li Li, Alta Fang, Fahima Islam, Garrett Granroth, Alex Dementsov.
<h3> Collaborators </h3>
Fahima Islam, Gabriele Sala,
Jon Leiner,
Hillary Smith,
Matthew Doucet,
Doug Abernathy, Matt Stone,
Georg Ehlers,
Adam Aczel, Yien Yiu,
Souleymane Diallo,
Dennis Kim,
Barry Winn,
Mark Lumsden.
<h3> Advisors </h3>
Garrett Granroth and Brent Fultz
</div>
<h2> Techniques </h2>
<div id="'techniques">
<ul>
<li><a href="http://jupter.org">jupyter</a>: <a href="http://github.com/mcvine/training">training</a></li>
<li><a href="http://python.org">python</a>: high-level component framework, scripting, workflows</li>
<li>c++: ray tracing calculations</li>
<li>Some <a href="http://mcstas.org">McStas</a> components are wrapped and used in simulations of neutron beams before sample position</li>
</ul>
For more details of the MCViNE architecture and the involved techniques, please refer to
<a href="http://dx.doi.org/10.1016/j.nima.2015.11.118">MCViNE - An object oriented Monte Carlo neutron ray tracing simulation package</a>.
</div>
<h2> Funding </h2>
The development of the MCViNE software was begun at Caltech
under the DANSE project supported by the NSF award DMR-0520547.
Continuing development and research on applications of MCViNE
have been supported by
the U.S. Department of Energy, Office of Basic Energy Sciences,
the Scientific User Facilities Division.
<br>
<br>
<p>
<a href="http://danse.us">
<img src="icon/DANSE_LOGO.jpg"
height="100px"/>
</a>
</p>
<!--
<p>
MCViNE is a major component of the Virtual Neutron Facility.
</p>
<a href="https://vnf.caltech.edu">
<img src="icon/vnf-logo.png"
height="40px"/>
</a>
<div>
<a href="http://www.nsf.gov">
<img src="icon/nsf_logo.gif" height="120px"/>
</a>
<a href="http://science.energy.gov/">
<img src="icon/doe_logo.png" height="80px"/>
</a>
</div>
<a href="http://www.caltech.edu">
<img src="icon/caltech_logo.png" height="100px"/>
</a>
<a href="http://neutrons.ornl.gov/facilities/SNS/">
<img src="icon/SNS_logo.png" height="90px"/>
</a>
-->
</div> <!-- page -->
<script>
$(function() {
$("#news").load("https://mcvine.github.io/News.html #news");
});
mcvine.init();
</script>
</body>
</html>