Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
PhysicalConstants.h
Go to the documentation of this file.
1// -*- C++ -*-
2// ----------------------------------------------------------------------
3// HEP coherent Physical Constants
4//
5// This file has been provided by Geant4 (simulation toolkit for HEP).
6//
7// The basic units are :
8// millimeter
9// nanosecond
10// Mega electron Volt
11// positon charge
12// degree Kelvin
13// amount of substance (mole)
14// luminous intensity (candela)
15// radian
16// steradian
17//
18// Below is a non exhaustive list of Physical CONSTANTS,
19// computed in the Internal HEP System Of Units.
20//
21// Most of them are extracted from the Particle Data Book :
22// Phys. Rev. D volume 50 3-1 (1994) page 1233
23//
24// ...with a meaningful (?) name ...
25//
26// You can add your own constants.
27//
28// Author: M.Maire
29//
30// History:
31//
32// 23.02.96 Created
33// 26.03.96 Added constants for standard conditions of temperature
34// and pressure; also added Gas threshold.
35// 29.04.08 use PDG 2006 values
36// 03.11.08 use PDG 2008 values
37// 17.07.20 use PDG 2019 values
38
39#ifndef HEP_PHYSICAL_CONSTANTS_H
40#define HEP_PHYSICAL_CONSTANTS_H
41
43
44namespace CLHEP {
45
46//
47//
48//
49static constexpr double Avogadro = 6.02214076e+23/mole;
50
51//
52// c = 299.792458 mm/ns
53// c^2 = 898.7404 (mm/ns)^2
54//
55static constexpr double c_light = 2.99792458e+8 * m/s;
56static constexpr double c_squared = c_light * c_light;
57
58//
59// h = 4.13566e-12 MeV*ns
60// hbar = 6.58212e-13 MeV*ns
61// hbarc = 197.32705e-12 MeV*mm
62//
63static constexpr double h_Planck = 6.62607015e-34 * joule*s;
64static constexpr double hbar_Planck = h_Planck/twopi;
65static constexpr double hbarc = hbar_Planck * c_light;
66static constexpr double hbarc_squared = hbarc * hbarc;
67
68//
69//
70//
71static constexpr double electron_charge = - eplus; // see SystemOfUnits.h
72static constexpr double e_squared = eplus * eplus;
73
74//
75// amu_c2 - atomic equivalent mass unit
76// - AKA, unified atomic mass unit (u)
77// amu - atomic mass unit
78//
79static constexpr double electron_mass_c2 = 0.510998910 * MeV;
80static constexpr double proton_mass_c2 = 938.272013 * MeV;
81static constexpr double neutron_mass_c2 = 939.56536 * MeV;
82static constexpr double amu_c2 = 931.494028 * MeV;
83static constexpr double amu = amu_c2/c_squared;
84
85//
86// permeability of free space mu0 = 2.01334e-16 Mev*(ns*eplus)^2/mm
87// permittivity of free space epsil0 = 5.52636e+10 eplus^2/(MeV*mm)
88//
89static constexpr double mu0 = 4*pi*1.e-7 * henry/m;
90static constexpr double epsilon0 = 1./(c_squared*mu0);
91
92//
93// electromagnetic coupling = 1.43996e-12 MeV*mm/(eplus^2)
94//
95static constexpr double elm_coupling = e_squared/(4*pi*epsilon0);
96static constexpr double fine_structure_const = elm_coupling/hbarc;
97static constexpr double classic_electr_radius = elm_coupling/electron_mass_c2;
98static constexpr double electron_Compton_length = hbarc/electron_mass_c2;
99static constexpr double Bohr_radius = electron_Compton_length/fine_structure_const;
100
101static constexpr double alpha_rcl2 = fine_structure_const
102 *classic_electr_radius
103 *classic_electr_radius;
104
105static constexpr double twopi_mc2_rcl2 = twopi*electron_mass_c2
106 *classic_electr_radius
107 *classic_electr_radius;
108//
109//
110//
111static constexpr double k_Boltzmann = 8.617333e-11 * MeV/kelvin;
112
113//
114//
115//
116static constexpr double STP_Temperature = 273.15*kelvin;
117static constexpr double STP_Pressure = 1.*atmosphere;
118static constexpr double kGasThreshold = 10.*mg/cm3;
119
120//
121//
122//
123static constexpr double universe_mean_density = 1.e-25*g/cm3;
124
125} // namespace CLHEP
126
127#endif /* HEP_PHYSICAL_CONSTANTS_H */
128
129
130
131
132
Definition: DoubConv.h:17
const G4double pi