@@ -5,20 +5,38 @@ import si_units, units
5
5
# # in the units of Unchained.
6
6
7
7
const
8
+ # # The speed of light in vacuum.
8
9
c* = 299792458.0 .Meter•Second⁻¹
10
+ # # The vacuum permitivity / electric constant.
9
11
ε_0* = 8.8541878128 e-12 .A•s•V⁻¹•m⁻¹
12
+ # # Charge of an electron.
10
13
e* = 1.602176634 e-19 .C
14
+ # # Mass of an electron.
11
15
m_e* = 9.1093837015 e-31 .kg
12
16
m_e_c2* = 0.510998928 .MeV
17
+ # # Mass of a muon.
18
+ m_μ* = 1.883531627 e-28 .kg # 105.6583755e3 # MeV / c²
19
+ m_μ_eV* = 105.6583755 e6 .eV # / c²
20
+ # # The Avogadro constant. The number of particles in one mole of substance, per definition.
13
21
N_A* = 6.02214076 e23 .mol⁻¹
22
+ # # The 'molar mass constant'. Prior to redefinition in 2019 it was defined as exactly
23
+ # # M_u = 1 g/mol. It relates the standard atomic weight of an element with its
24
+ # # mas for one mole of substance.
14
25
M_u* = 0.99999999965 e-3 .kg•mol⁻¹
26
+ # # The 'atomic mass constant', the "base mass" for atomic scale objects, defined as
27
+ # # `m_u = 1/12 · m(¹²C) = 1 Dalton`
28
+ # # i.e. the average mass of a single nucleon in a bound atom.
15
29
m_u* = M_u / N_A
16
- m_μ_eV* = 105.6583755 e6 .eV # / c²
17
- m_μ* = 1.883531627 e-28 .kg # 105.6583755e3 # MeV / c²
18
30
π* = PI
19
- r_e* = e* e / (4 * π * ε_0 * m_e * c * c) # classical electron radius
31
+ # # The classical electron radius.
32
+ r_e* = e* e / (4 * π * ε_0 * m_e * c * c)
20
33
# K = 4 * π * N_A * r_e * r_e * m_e_c2 * (100.0^2)# [MeV mol⁻¹ cm²]
34
+ # # The Boltzmann constant
21
35
k_B* = 1.380649 e-23 .Joule•Kelvin⁻¹
36
+ # # Planck's constant
22
37
hp* = 6.62607015 e-34 .Joule•Hertz⁻¹
38
+ # # Reduced Planck's constant
23
39
hp_bar* = hp / (2 * π)
40
+ # # Newton's constant. Note: We do not use the common variabl `G`, as it obviously conflicts
41
+ # # with the `Giga` prefix in the general case. Feel free to locally define it as such.
24
42
G_Newton* = 6.6743 e-11 .N•m²•kg⁻²
0 commit comments