Skip to content
Snippets Groups Projects
Commit 2e8a308b authored by Vadim Gubaidulin's avatar Vadim Gubaidulin
Browse files

- Changes to documentation

- Added more parameters for different ion species like H20
parent 01c5d8a9
No related branches found
No related tags found
1 merge request!9Emittance calculation
This commit is part of merge request !9. Comments created here will be created in the context of that merge request.
......@@ -31,7 +31,7 @@ def ion_cross_section(ring, ion):
by a relativistic electron using the relativistic Bethe asymptotic formula
[1].
Values of M02 and C02 from [2] and [3] (values of constants are independent of beam energy).
Values of M02 and C02 from [2-4] (values of constants are independent of beam energy).
Parameters
----------
......@@ -52,6 +52,9 @@ def ion_cross_section(ring, ion):
[2] : P. F. Tavares, "Bremsstrahlung detection of ions trapped in the EPA
electron beam", Part. Accel. 43 (1993).
[3] : A. G. Mathewson, S. Zhang, "Beam-gas ionisation cross sections at 7.0 TEV", CERN Tech. rep. Vacuum-Technical-Note-96-01. https://cds.cern.ch/record/1489148/
[4] : F. Rieke and W. Prepejchal, "Ionization Cross Sections of Gaseous
Atoms and Molecules for High-Energy Electrons and Positrons",
Phys. Rev. A 6, 1507 (1972).
"""
if ion == "CO":
......@@ -66,6 +69,9 @@ def ion_cross_section(ring, ion):
elif ion == "CH4":
M02 = 4.23
C0 = 42.85
elif ion == "H20":
M02 = 3.24
C0 = 32.26
else:
raise NotImplementedError
......@@ -235,6 +241,10 @@ def fast_beam_ion(
A = 28
elif ion == "H2":
A = 2
elif ion == "H2O":
A = 16
elif ion == "CO2":
A = 44
sigma_i = ion_cross_section(ring, ion)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment