Skip to content
/ fma_ions Public
forked from ewaagaard/fma_ions

Frequency Map Analysis (FMA) for ions in the CERN accelerator complex.

License

Notifications You must be signed in to change notification settings

JPTS2/fma_ions

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Frequency Map Analysis for ions

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 $d$

$$d = \sqrt{ (Q_{x, 2} - Q_{x, 1})^2 + (Q_{y, 2} - Q_{y, 1})^2}$$

where $Q_{x, y, 1}$ is the particle tunes in the first number of turns (e.g. first 600 turns) and $Q_{x, y, 2}$ is the tunes of the subsequent turn block (e.g. the next 600 turns).

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.

FMA_plot_SPS

Quick set-up

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

FMA class

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:

  1. 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 intensity Nb, bunch length sigma_z, normalized emittances exn and eyn, and the integer tune of the accelerator Q_int, since this technique can only detect fractional tunes. An example structure is found in fma_ions.BeamParameters_SPS().
  2. TBT x and y data are returned, tracking for the specified attribute num_turns (default 1200) in the FMA class.
  3. The diffusion coefficient d and individual particle tunes Qx and Qy are returned from the NAFF algorithm used in the FMA method
  4. Qx, Qy and d 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_Initial_distribution

Built-in sequences

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 beams and tunes

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)

Longitudinal position or momentum offset

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 $X$ and $Y$, so n_linear=100 generates 10 000 particles unformly distributed up to a desired beam size (e.g. 10 $\sigma$).

import fma_ions

fma_sps = fma_ions.FMA(z0=0.15, n_linear=200)
fma_sps.run_SPS()

FMA_plot_SPS

About

Frequency Map Analysis (FMA) for ions in the CERN accelerator complex.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%