This notebook was created by Sergey Tomin (sergey.tomin@desy.de). Update January 2025
Tutorials
Current tutorials can be found in ocelot/demos/ipython_tutorial
folder.
Beam dynamics
- Tutorial N1. Linear optics. Double Bend Achromat
- Linear optics. Double Bend Achromat (DBA). Simple example of usage OCELOT functions to get periodic solution for a storage ring cell.
- Tutorial N2. Tracking.
- Linear optics of the European XFEL Injector.
- Tracking. First and second order.
- Artificial beam matching - BeamTransform
- Tutorial N3. Space Charge.
- Tracking through RF cavities with SC effects and RF focusing.
- Tutorial N4. Wakefields.
- Tracking through corrugated structure (energy chirper) with Wakefields
- Tutorial N5. CSR.
- Tracking trough bunch compressor with CSR effect.
- Tutorial N6. RF Coupler Kick.
- Coupler Kick. Example of RF coupler kick influence on trajectory and optics.
- Tutorial N7. Lattice design.
- Lattice design, twiss matching, twiss backtracking
- Tutorial N8. Physics process addition. Laser heater
- Theory of Laser Heater, implementation of new Physics Process, track particles w/o laser heater effect.
- Tutorial N9. Simple accelerator based THz source
- A simple accelerator with the electron beam formation system and an undulator to generate THz radiation.
- Tutorial N10. Corrugated Structure
- In this tutorial, a few examples for tracking with parallel-plate corrugated structures are shown. The wakefields model are based on analytical wakefield formulas for flat corrugated structures.
Photon field simulation
- PFS tutorial N1. Synchrotron radiation module
- Simple examples how to calculate synchrotron radiation with OCELOT Synchrotron Radiation Module.
- PFS tutorial N2. Coherent radiation module and RadiationField object
- PFS tutorial N3. Reflection from imperfect highly polished mirror
- PFS tutorial N4. Converting synchrotron radiation Screen object to RadiationField object for viewing and propagation
- PFS tutorial N5: SASE estimation and imitation
- PFS tutorial N6: Spectral Filtering
Appendixes
- Undulator matching
- brief theory and example in OCELOT
- Some useful OCELOT functions
- Aperture
- Losses along accelerator lattice
- RK tracking
- Dump the beam distribution at a specific location of the lattice
- Energy jitter. Or simulation of the jitter in the RF parameters.
- Get Twiss paremeters from the beam slice
- Example of an accelerator section optimization
- A simple demo of accelerator section optimization with a standard scipy numerical optimization method.
Checking your installation
You can run the following code to check the versions of the packages on your system:
(in IPython notebook, press shift
and return
together to execute the contents of a cell)
import IPython
print('IPython:', IPython.__version__)
import numpy
print('numpy:', numpy.__version__)
import scipy
print('scipy:', scipy.__version__)
import matplotlib
print('matplotlib:', matplotlib.__version__)
import ocelot
print('ocelot:', ocelot.__version__)
IPython: 8.20.0
numpy: 1.26.3
scipy: 1.11.4
matplotlib: 3.8.2
initializing ocelot...
ocelot: 24.03.0
Disclaimer:
The OCELOT code comes with absolutely NO warranty. The authors of the OCELOT do not take any responsibility for any damage to equipments or personnel injury that may result from the use of the code.