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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
use Constant;
/// # Atomic mass constant
/// The atomic mass constant goes by the symbols *Da* and *m_u*. It's measured in *kilograms*.
pub const ATOMIC_MASS: Constant = new;
/// # Avogadro's constant
/// Avogadro's constant goes by the symbols *N_A* and *L*. It's measured in *mole*.
pub const AVOGADRO: Constant = new;
/// # Bohr's magneton constant
/// Bohr's magneton constant goes by the symbol *µ_B*. It's measured in *joules per tesla*.
pub const BOHR_MAGNETON: Constant = new;
/// # Bohr's radius constant
/// Bohr's radius constant goes by the symbols *µ_B* and sometimes *r_Bohr*. It's measured in *joules per tesla*.
pub const BOHR_RADIUS: Constant = new;
/// # Boltzmann's constant
/// Boltzmann's constant goes by the symbols *k_B* and *k*. It's measured in *joules per kelvin*.
pub const BOLTZMANN: Constant = new;
/// # Coulomb's constant
/// Coloumb's constant goes by the symbol *k_e*. It's measured in *newton squaremeters per squared coulomb*.
pub const COULOMB: Constant = new;
/// # Electron mass constant
/// The constant defining the mass of an electron goes by the symbol *m_e*. It's measured in *kilograms*.
pub const ELECTRON_MASS: Constant = new;
/// # Electron radius constant
/// The electron radius constant goes by the symbol *r_e*. It's measured in *meters*.
pub const ELECTRON_RADIUS: Constant = new;
/// # Elementary charge constant
/// The elementary charge constant goes by the symbol *e*. It's measured in *coulomb*.
pub const ELEMENTARY_CHARGE: Constant = new;
/// # Faraday's constant
/// Faraday's constant goes by the symbol *F*. It's measured in *coulomb per mole*.
pub const FARADAY: Constant = new;
/// # Fermi's coupling constant
/// Fermi's coupling constant goes by the symbol *G_F*. It's measured in *G per squared electronvolt*.
pub const FERMI: Constant = new;
/// # Quantum conductance constant
/// The quantum conductance constant goes by the symbol *G_0*. It's measured in *siemens*.
pub const QUANTUM_CONDUCTANCE: Constant = new;
/// # First radiation constant
/// The first radiation constant goes by the symbol *c_1*. It's measured in *watts per squaremeter*.
pub const RADIATION_1: Constant = new;
/// # Second radiation constant
/// The second radiation constant goes by the symbol *c_2*. It's measured in *meters per kelvin*.
pub const RADIATION_2: Constant = new;
/// # Impedance of vacuum constant
/// The impedance of vacuum constant goes by the symbol *Z_0*. It's measured in *ohm*.
pub const VACUUM_IMPEDANCE: Constant = new;
/// # Planck's constant
/// Planck's constant goes by the symbol *h*. It's measured in *joules per hertz*.
pub const PLANCK: Constant = new;