Ion beam with different charge state of the same element

Click For Summary
SUMMARY

The discussion focuses on simulating ion beam transport in a Thomson Spectrometer, specifically addressing issues with higher charge states of carbon ions (C) not passing through pinholes. The user is attempting to simulate beams with multiple charge states, such as C+ and C2+, but encounters limitations in the program that restrict the output to lower charge states. The energy of the ions is calculated using the formula E=q*V, where V represents the voltage of the post-acceleration device, and the user employs random number generation to determine ion velocity and divergence angles.

PREREQUISITES
  • Understanding of ion beam dynamics and transport
  • Familiarity with Thomson Spectrometer operation
  • Knowledge of kinetic energy calculations in particle physics
  • Experience with programming simulations, particularly in MATLAB
NEXT STEPS
  • Research ion beam collimation techniques in particle accelerators
  • Learn about the effects of charge state on ion beam behavior
  • Explore advanced simulation tools for ion transport, such as Geant4
  • Investigate methods for optimizing pinhole design for higher charge states
USEFUL FOR

Researchers and engineers working in particle physics, particularly those involved in ion beam simulations, Thomson Spectrometer design, and kinetic energy calculations for charged particles.

1Keenan
Messages
99
Reaction score
4
I'm writing a script to simulate the transport of ion beam in a Thomson Spectrometer.
My concern is that the program doesn't allow the passage of higher charge states through out the pinholes that I use to collimate the beam.
I mean if I want to simulate a 3 charge states beam of C ions I will have only C+ and C 2+ at the end of the line
Similarly if I want to simulate a 6 charge state beam of C ions I will have only C+, C2+ and C3+ at the end of the line.

The energy of the particle is calculated assuming a post-acceleration device than E=q*V
where V is the voltage of the post-acceleration device.
Then I estract a random number in [E, E/10] to calculate the ion velocity as:

K_ion=normrnd(Ein_s,Ein_s/10); % Kinetic energy
Etot_ion(i)=K_ion+((m_ions*uma1)/uma); % everything is in Mev
betasquare_ion(i)=1-(((m_ions*uma1)/(uma*Etot_ion(i)))^2);
v_ion(i)=sqrt(betasquare_ion(i)*c^2);

Then I select a random number in a certain interval that I use as divergence angle of the beam in order to have the 3 components of v_ion.

Finally I solve the equation of motion in a drift sector where I have two pinholes.

Is it possible that the higher charge states have such an energy, and velocity, that they are shifted at the boundary of the beam and lost on the pinholes?
 
Physics news on Phys.org
no sympathy here for me, isn't it?
 

Similar threads

  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 13 ·
Replies
13
Views
4K
  • · Replies 3 ·
Replies
3
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 9 ·
Replies
9
Views
2K
  • · Replies 0 ·
Replies
0
Views
1K
Replies
0
Views
3K
  • · Replies 12 ·
Replies
12
Views
3K
  • · Replies 28 ·
Replies
28
Views
3K