-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreactors.html
98 lines (75 loc) · 3.27 KB
/
reactors.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>eXdb: Particle Physics Experiment Database</title>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<!-- Chart.js library -->
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<link rel="stylesheet" href="table_style.css">
</head>
<body>
<header>
<div class="header">
<div class="logo-container">
<img src="images/logos/exdb_logo.png" alt="xDB Logo", align="left">
</div>
<div class="title-container">
<h1>The Particle Physics Experiments Database</h1>
<h4>[Work In Progress]</h4>
</div>
</div>
</header>
<div class="header">
<nav>
<p><a href="experiments.html">All Experiments</a></p>
<p><a href="fixed_target.html">I: Fixed Target </a></p>
<p><a href="passive_det.html">II: Neutrino Observatories & DM Direct Detectors</a></p>
<p><a href="reactors.html">III: Reactors </a></p>
<p><a href="gw.html">IV: Gravitational Waves & Haloscopes</a></p>
<p><a href="colliders.html">V: Collider Experiments</a></p>
</nav>
</div>
<p>
Here we collect experiments that utilize large volumes of instrumented detector to capture neutrinos or dark matter. <b>Hover over experiment names for more information.</b>
</p>
<p style="font-style: italic;">
Disclaimer: This table is maintained individually and supported by community feedback.
The information within is sourced only by public references. Please check the source references for the most accurate representation of the aggregate information.
To suggest corrections or provide new data, see contact information at the bottom of the page.
</p>
<input type="text" id="search" placeholder="Search experiments...">
<h2 id="tableTitle_reactors" align="center">III: Reactor Experiments</h2>
<table id="reactorTable">
<thead>
<tr id="tableHeader_reactors"></tr>
</thead>
<tbody></tbody>
</table>
<!-- Call the external buildTable function -->
<script src="buildTable.js"></script>
<script>
// Build the tables
let visible_columns_reactors = ["Source(s)", "Reactor Power", "Reactor ON Exposure (kg-days)", "Reactor OFF Exposure (kg-days)", "Baseline (m)",
"Detector Tech", "Detector Material", "Detector Mass (t)", "Fiducial Mass (t)",
"Detector Volume (m^3)", "Energy Threshold", "Location", "Status", "Reference", "Open Data", "Anomalies?"];
buildTable(visible_columns_reactors, "data/reactors.json", "reactorTable", "tableTitle_reactors");
</script>
<br>
<br>
<h2 align="center">Community Feedback and Contact</h4>
<p align="center">
To contact the owner for any corrections, improvements or feedback please email:
</p>
<p align="center">
a.thompson AT northwestern DOT edu
</p>
<h2>About the data</h2>
<p>
Link to JSON: <a href="data/reactors.json">reactors.json</a>
</p>
<br>
<br>
</body>
</html>