File indexing completed on 2025-01-19 09:48:52
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011 #ifndef BOOST_UNITS_CODATA_ELECTROMAGNETIC_CONSTANTS_HPP
0012 #define BOOST_UNITS_CODATA_ELECTROMAGNETIC_CONSTANTS_HPP
0013
0014
0015
0016
0017
0018
0019
0020
0021 #include <boost/units/quantity.hpp>
0022 #include <boost/units/static_constant.hpp>
0023
0024 #include <boost/units/systems/detail/constants.hpp>
0025 #include <boost/units/systems/si/conductance.hpp>
0026 #include <boost/units/systems/si/current.hpp>
0027 #include <boost/units/systems/si/electric_charge.hpp>
0028 #include <boost/units/systems/si/electric_potential.hpp>
0029 #include <boost/units/systems/si/energy.hpp>
0030 #include <boost/units/systems/si/frequency.hpp>
0031 #include <boost/units/systems/si/magnetic_flux.hpp>
0032 #include <boost/units/systems/si/magnetic_flux_density.hpp>
0033 #include <boost/units/systems/si/resistance.hpp>
0034
0035 #include <boost/units/systems/si/codata/typedefs.hpp>
0036
0037 namespace boost {
0038
0039 namespace units {
0040
0041 namespace si {
0042
0043 namespace constants {
0044
0045 namespace codata {
0046
0047
0048
0049 BOOST_UNITS_PHYSICAL_CONSTANT(e,quantity<electric_charge>,1.602176487e-19*coulombs,4.0e-27*coulombs);
0050
0051 BOOST_UNITS_PHYSICAL_CONSTANT(e_over_h,quantity<current_over_energy>,2.417989454e14*amperes/joule,6.0e6*amperes/joule);
0052
0053 BOOST_UNITS_PHYSICAL_CONSTANT(Phi_0,quantity<magnetic_flux>,2.067833667e-15*webers,5.2e-23*webers);
0054
0055 BOOST_UNITS_PHYSICAL_CONSTANT(G_0,quantity<conductance>,7.7480917004e-5*siemens,5.3e-14*siemens);
0056
0057 BOOST_UNITS_PHYSICAL_CONSTANT(K_J,quantity<frequency_over_electric_potential>,483597.891e9*hertz/volt,1.2e7*hertz/volt);
0058
0059 BOOST_UNITS_PHYSICAL_CONSTANT(R_K,quantity<resistance>,25812.807557*ohms,1.77e-5*ohms);
0060
0061 BOOST_UNITS_PHYSICAL_CONSTANT(mu_B,quantity<energy_over_magnetic_flux_density>,927.400915e-26*joules/tesla,2.3e-31*joules/tesla);
0062
0063 BOOST_UNITS_PHYSICAL_CONSTANT(mu_N,quantity<energy_over_magnetic_flux_density>,5.05078324e-27*joules/tesla,1.3e-34*joules/tesla);
0064
0065 }
0066
0067 }
0068
0069 }
0070
0071 }
0072
0073 }
0074
0075 #endif