-
Notifications
You must be signed in to change notification settings - Fork 13
/
units.py
131 lines (114 loc) · 2.97 KB
/
units.py
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
"""units.py
Python module to implement physical constants
Definition of SI base units and constants used elsewhere in the code
Based on:
- CODATA recommended values of the fundamental physical constants: 2006
doi:10.1103/RevModPhys.80.633
- IAU 2012 Resolution B2, IAU 2015 Resolution B2
https:#www.iau.org/administration/resolutions/
Note:
This file is copied from CRPropa3's Units.h file. It should be synched
with the file that can be found here:
https:#github.com/CRPropa/CRPropa3/blob/master/include/crpropa/Units.h
"""
from numpy import pi
# SI units
meter = 1
second = 1
kilogram = 1
ampere = 1
mol = 1
kelvin = 1
# derived units
newton = 1 * kilogram * meter / second / second
pascal = 1 * newton / meter / meter
joule = 1 * newton * meter
tesla = 1 * newton / ampere / meter
volt = 1 * kilogram * meter * meter / ampere / second / second / second
coulomb = 1 * ampere * second
hertz = 1 / second
rad = 1
deg = pi / 180.
# SI Prefixes
yocto = 1E-24
zepto = 1E-21
atto = 1E-18
femto = 1E-15
pico = 1E-12
nano = 1E-9
micro = 1E-6
milli = 1E-3
kilo = 1E3
mega = 1E6
giga = 1E9
tera = 1E12
peta = 1E15
exa = 1E18
zetta = 1E21
yotta = 1E24
# physical constants
eplus = 1.602176487e-19 * ampere * second
c_light = 2.99792458e8 * meter / second
c_squared = c_light * c_light
amu = 1.660538921e-27 * kilogram
mass_proton = 1.67262158e-27 * kilogram
mass_neutron = 1.67492735e-27 * kilogram
mass_electron = 9.10938291e-31 * kilogram
h_planck = 6.62606957e-34 * joule * second
k_boltzmann = 1.3806488e-23 * joule / kelvin
mu0 = 4 * pi * 1e-7 * newton / ampere / ampere
epsilon0 = 1.0 / mu0 / c_squared * ampere * second / volt / meter
alpha_finestructure = eplus * eplus / 2. / epsilon0 / h_planck / c_light
radius_electron = eplus * eplus / 4. / pi / epsilon0 / mass_electron / c_squared
sigma_thomson = 8. * pi / 3. * radius_electron * radius_electron
# gauss
gauss = 1e-4 * tesla
microgauss = 1e-6 * gauss
nanogauss = 1e-9 * gauss
muG = microgauss
nG = nanogauss
erg = 1E-7 * joule
# electron volt
electronvolt = eplus * volt
kiloelectronvolt = 1e3 * electronvolt
megaelectronvolt = 1e6 * electronvolt
gigaelectronvolt = 1e9 * electronvolt
teraelectronvolt = 1e12 * electronvolt
petaelectronvolt = 1e15 * electronvolt
exaelectronvolt = 1e18 * electronvolt
eV = electronvolt
keV = kiloelectronvolt
MeV = megaelectronvolt
GeV = gigaelectronvolt
TeV = teraelectronvolt
PeV = petaelectronvolt
EeV = exaelectronvolt
barn = 1E-28 * meter * meter
# astronomical distances
au = 149597870700 * meter
ly = 365.25 * 24 * 3600 * second * c_light
parsec = 648000 / pi * au
kiloparsec = 1e3 * parsec
megaparsec = 1e6 * parsec
gigaparsec = 1e9 * parsec
pc = parsec
kpc = kiloparsec
Mpc = megaparsec
Gpc = gigaparsec
# meter
kilometer = 1000 * meter
centimeter = 0.01 * meter
km = kilometer
cm = centimeter
# second
nanosecond = 1e-9 * second
microsecond = 1e-6 * second
millisecond = 1e-3 * second
minute = 60 * second
hour = 3600 * second
ns = nanosecond
mus = microsecond
ms = millisecond
sec = second
# volume
ccm = cm*cm*cm