1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #ifndef BOOST_UNITS_CODATA_ATOMIC_AND_NUCLEAR_CONSTANTS_HPP
- #define BOOST_UNITS_CODATA_ATOMIC_AND_NUCLEAR_CONSTANTS_HPP
- #include <boost/units/systems/si/codata/alpha_constants.hpp>
- #include <boost/units/systems/si/codata/deuteron_constants.hpp>
- #include <boost/units/systems/si/codata/electron_constants.hpp>
- #include <boost/units/systems/si/codata/helion_constants.hpp>
- #include <boost/units/systems/si/codata/muon_constants.hpp>
- #include <boost/units/systems/si/codata/neutron_constants.hpp>
- #include <boost/units/systems/si/codata/proton_constants.hpp>
- #include <boost/units/systems/si/codata/tau_constants.hpp>
- #include <boost/units/systems/si/codata/triton_constants.hpp>
- namespace boost {
- namespace units {
- namespace si {
-
- namespace constants {
- namespace codata {
- BOOST_UNITS_PHYSICAL_CONSTANT(alpha,quantity<dimensionless>,7.2973525376e-3*dimensionless(),5.0e-12*dimensionless());
- BOOST_UNITS_PHYSICAL_CONSTANT(R_infinity,quantity<wavenumber>,10973731.568527/meter,7.3e-5/meter);
- BOOST_UNITS_PHYSICAL_CONSTANT(a_0,quantity<length>,0.52917720859e-10*meters,3.6e-20*meters);
- BOOST_UNITS_PHYSICAL_CONSTANT(E_h,quantity<energy>,4.35974394e-18*joules,2.2e-25*joules);
- }
- }
- }
- }
- }
- #endif
|