/* Copyright (c) 2019, Anthony Latorre * * 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 . */ #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 /* Approximate radius of the PSUP in cm. */ #define PSUP_RADIUS 840.0 #endif