blob: bf0a1eb78633c3dcc6b0ea1ae773382fca7f02f3 (
plain)
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
|
/* Copyright (c) 2019, Anthony Latorre <tlatorre at uchicago>
*
* 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 3 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, see <https://www.gnu.org/licenses/>.
*/
#ifndef SNO_H
#define SNO_H
/* Density of heavy water at 10 degrees Celsius.
*
* From Tsing-Lien Chang. "Density of Heavy Water." Nature. May 7, 1949. */
#define HEAVY_WATER_DENSITY 1.10595
/* Density of regular water at 10 degrees Celsius.
*
* From Tsing-Lien Chang. "Density of Heavy Water." Nature. May 7, 1949. */
#define WATER_DENSITY 0.99973
/* Radius of the AV in cm. */
#define AV_RADIUS_INNER 600.50
#define AV_RADIUS_OUTER 606.00
#define AV_RADIUS 603.25
#define AV_THICKNESS 6.5
/* FIXME: is this right? */
#define PSUP_RADIUS 800.0
#endif
|