Chris@16
|
1 // Boost.Units - A C++ library for zero-overhead dimensional analysis and
|
Chris@16
|
2 // unit/quantity manipulation and conversion
|
Chris@16
|
3 //
|
Chris@16
|
4 // Copyright (C) 2003-2008 Matthias Christian Schabel
|
Chris@16
|
5 // Copyright (C) 2008 Steven Watanabe
|
Chris@16
|
6 //
|
Chris@16
|
7 // Distributed under the Boost Software License, Version 1.0. (See
|
Chris@16
|
8 // accompanying file LICENSE_1_0.txt or copy at
|
Chris@16
|
9 // http://www.boost.org/LICENSE_1_0.txt)
|
Chris@16
|
10
|
Chris@16
|
11 #ifndef BOOST_UNITS_CODATA_ATOMIC_AND_NUCLEAR_CONSTANTS_HPP
|
Chris@16
|
12 #define BOOST_UNITS_CODATA_ATOMIC_AND_NUCLEAR_CONSTANTS_HPP
|
Chris@16
|
13
|
Chris@16
|
14 #include <boost/units/systems/si/codata/alpha_constants.hpp>
|
Chris@16
|
15 #include <boost/units/systems/si/codata/deuteron_constants.hpp>
|
Chris@16
|
16 #include <boost/units/systems/si/codata/electron_constants.hpp>
|
Chris@16
|
17 #include <boost/units/systems/si/codata/helion_constants.hpp>
|
Chris@16
|
18 #include <boost/units/systems/si/codata/muon_constants.hpp>
|
Chris@16
|
19 #include <boost/units/systems/si/codata/neutron_constants.hpp>
|
Chris@16
|
20 #include <boost/units/systems/si/codata/proton_constants.hpp>
|
Chris@16
|
21 #include <boost/units/systems/si/codata/tau_constants.hpp>
|
Chris@16
|
22 #include <boost/units/systems/si/codata/triton_constants.hpp>
|
Chris@16
|
23
|
Chris@16
|
24 namespace boost {
|
Chris@16
|
25
|
Chris@16
|
26 namespace units {
|
Chris@16
|
27
|
Chris@16
|
28 namespace si {
|
Chris@16
|
29
|
Chris@16
|
30 namespace constants {
|
Chris@16
|
31
|
Chris@16
|
32 namespace codata {
|
Chris@16
|
33
|
Chris@16
|
34 /// CODATA recommended values of the fundamental physical constants: NIST SP 961
|
Chris@16
|
35
|
Chris@16
|
36 // ATOMIC AND NUCLEAR
|
Chris@16
|
37 /// fine structure constant
|
Chris@16
|
38 BOOST_UNITS_PHYSICAL_CONSTANT(alpha,quantity<dimensionless>,7.2973525376e-3*dimensionless(),5.0e-12*dimensionless());
|
Chris@16
|
39 /// Rydberg constant
|
Chris@16
|
40 BOOST_UNITS_PHYSICAL_CONSTANT(R_infinity,quantity<wavenumber>,10973731.568527/meter,7.3e-5/meter);
|
Chris@16
|
41 /// Bohr radius
|
Chris@16
|
42 BOOST_UNITS_PHYSICAL_CONSTANT(a_0,quantity<length>,0.52917720859e-10*meters,3.6e-20*meters);
|
Chris@16
|
43 /// Hartree energy
|
Chris@16
|
44 BOOST_UNITS_PHYSICAL_CONSTANT(E_h,quantity<energy>,4.35974394e-18*joules,2.2e-25*joules);
|
Chris@16
|
45
|
Chris@16
|
46 } // namespace codata
|
Chris@16
|
47
|
Chris@16
|
48 } // namespace constants
|
Chris@16
|
49
|
Chris@16
|
50 } // namespace si
|
Chris@16
|
51
|
Chris@16
|
52 } // namespace units
|
Chris@16
|
53
|
Chris@16
|
54 } // namespace boost
|
Chris@16
|
55
|
Chris@16
|
56 #endif // BOOST_UNITS_CODATA_ATOMIC_AND_NUCLEAR_CONSTANTS_HPP
|