Non-linear effects can enhance chaotic motion and limit the performance of accelerators. Frequency Map Analysis (FMA) is a method that probes tune diffusion from particle tracking simulations and identify resonances that are excited. FMA can be used to detect chaotic behaviour in particle acceelerators, by looking at the tune diffusion
where
This repository contains FMA classes for ion beams in the CERN accelerator complex, but can also be used for other protons and other set-ups.
When using Python for scientific computing, it is important to be aware of dependencies and compatibility of different packages. This guide gives a good explanation: Python dependency manager guide. An isolated environment allows installing packages without affecting the rest of your operating system or any other projects. A useful resource to handle virtual environments is Anaconda (or its lighter version Miniconda), when once installed has many useful commands of which many can be found in the Conda cheat sheet
To directly start calculating different ion performances with the fma_ions
, create an isolated virtual environment and perform a local install to use the fma_ions
freely. Once the repository is cloned and from inside the fma_ions
repository, run in the terminal:
conda create --name test_venv python=3.11 numpy pandas scipy matplotlib
conda activate test_venv
python -m pip install -e fma_ions
The virtual environment can also be installed directly from the requirements.txt
: python -m pip install -r requirements.txt
Or within conda: conda env create -f environment.yml
The FMA
class contains all the methods and imports all helper functions needed to track particle objects and analyze the tune diffusion. The class is instantiated by
import fma_ions
fma = fma_ions.FMA()
Optional arguments can be added, such as specific output destinations for turn-by-turn (TBT) data and plots, number of turns to track, shape of particle object, longitudinal position offset z0
and so on. Arbitrary Xsuite lines can be used, although helper classes provide standard PS and SPS lattice models.
The FMA happens in several steps:
- first a line with space charge (SC) is returned, and the particle object to be tracked. Input is an Xsuite line (without space charge) and
beamParams
, which is a data class containing bunch intensityNb
, bunch lengthsigma_z
, normalized emittancesexn
andeyn
, and the integer tune of the acceleratorQ_int
, since this technique can only detect fractional tunes. An example structure is found infma_ions.BeamParameters_SPS()
. - TBT
x
andy
data are returned, tracking for the specified attributenum_turns
(default 1200) in the FMA class. - The diffusion coefficient
d
and individual particle tunesQx
andQy
are returned from the NAFF algorithm used in the FMA method Qx
,Qy
andd
can be plotted in the initial particle distribution and in the final tune diagram of the particles.
line_with_SC, particles = fma.install_SC_and_generate_particles(line, beamParams)
x, y = fma.track_particles(particles, line_with_SC)
d, Qx, Qy = fma.run_FMA(x, y)
# Set point, e.g for SPS
Qh_set, Qv_set = 26.30, 26.25
# Tune footprint range
plot_range = [[26.0, 26.35], [26.0, 26.35]]
# Generate plots.
fma.plot_FMA(d, Qx, Qy, Qh_set, Qv_set,'SPS', plot_range)
fma.plot_initial_distribution(x, y, d, case_name='SPS')
Initial distributions provide useful insights where the tune diffusion happens inside the distribution.
SPS and PS standard Pb lattice models from Xsuite are contained in helper data classes. These can be instantiated easily by using:
import fma_ions
fma_sps = fma_ions.FMA()
fma_sps.run_SPS()
fma_ps = fma_ions.FMA()
fma_ps.run_PS()
which call standard PS and SPS lattices, and perform the FMA described in the previous section with default parameters. If the tracking has already been done, plots can easily be generated from saved TBT data by using
fma_sps = fma_ions.FMA()
fma_sps.run_SPS(load_tbt_data=True)
Custom beam intensities, tunes, charge states and masses can be provided. The FMA
class rematches provided tunes and generates the desired beam
import fma_ions
# Initialize FMA object and intialize beam (mass is in atomic units)
fma_sps = fma_ions.FMA()
fma_sps.run_custom_beam_SPS(ion_type='O', m_ion=15.99, Q_SPS=8., Q_PS=4., qx=26.30, qy=26.19, Nb=82e8)
To investigate tune diagram sidebands and effects of synchrotron oscillations on off-momentum particles, non-zero z0
or delta0
can be provided to generate the particle object. If a uniform beam is used, n_linear
determines the resolution of the meshgrid in normalized coordinates n_linear=100
generates 10 000 particles unformly distributed up to a desired beam size (e.g. 10
import fma_ions
fma_sps = fma_ions.FMA(z0=0.15, n_linear=200)
fma_sps.run_SPS()