Difference between revisions of "RDYNLAB"
Line 1: | Line 1: | ||
This is a library for modeling Relativistic DYNamics in the LAB frame. It uses an eigth order Runge-Kutta algorithm to solve the relativistic dynamical equations for particle motion, including radiative power losses for charged particles, as described in [[Simulating Particle Trajectories|this page]]. | This is a library for modeling Relativistic DYNamics in the LAB frame. It uses an eigth order Runge-Kutta algorithm to solve the relativistic dynamical equations for particle motion, including radiative power losses for charged particles, as described in [[Simulating Particle Trajectories|this page]]. | ||
+ | |||
+ | The general problem of modeling relativistic particle trajectories for a given force boils down to solving the following system of six differential equations: | ||
+ | |||
+ | <math>\frac{d\vec{x}}{dt}=\vec{v}</math> | ||
+ | |||
+ | <math>\frac{d\vec{v}}{dt}=\vec{a}</math> | ||
+ | |||
+ | where <math>\vec{x}</math> is the position of the particle, <math>\vec{v}</math> is the momentum of the particle, and <math>\vec{a}</math> is the acceleration of the particle which can be derived from the force. Classically, we would just use <math>\vec{a}=\vec{F}/m</math>. Such a description, however, is not consistent with special relativity. Indeed, starting from the relativistic relations | ||
+ | |||
+ | <math>\frac{\vec{v}}{c}=\frac{\vec{p}c}{E}</math> | ||
+ | <math>E^2-c^2\vec{p}\cdot\vec{p}=m_0^2c^4</math> | ||
+ | |||
+ | and taking the time derivatives of both, we find | ||
+ | |||
+ | <math> \frac{1}{c}\frac{d\vec{v}}{dt}=\frac{c}{E}\frac{d\vec{p}}{dt}-c\vec{p}\frac{1}{E^2}\frac{dE}{dt}</math> | ||
+ | |||
+ | <math> 2E\frac{dE}{dt}-2c^2\vec{p}\cdot\frac{d\vec{p}}{dt}=0</math> | ||
+ | |||
+ | Solving this second equation for <math>dE/dt</math> and plugging into the first, also noting that <math>d\vec{p}/dt=\vec{F}</math>, we obtain | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | , <math>m_0</math> is the rest energy of the particle, and <math>\gamma</math> is the usual relativistic factor. These equations are solved subject to an appropriate set of boundary conditions, usually the initial position and momentum of the particle. | ||
+ | |||
+ | In simple cases, such as when the fields are uniform, this set of equations can be solved analytically. However, for the "silver" permanent magnet we plan on using for the pair spectrometer, the fields are anything but uniform. In such a case, the system must be solved numerically. | ||
I am unable to post code to the wiki, so I have copied and pasted it all here. You will need all of these files in order to compile the code. GSL must be installed before you can compile this library. | I am unable to post code to the wiki, so I have copied and pasted it all here. You will need all of these files in order to compile the code. GSL must be installed before you can compile this library. |
Revision as of 17:17, 18 June 2009
This is a library for modeling Relativistic DYNamics in the LAB frame. It uses an eigth order Runge-Kutta algorithm to solve the relativistic dynamical equations for particle motion, including radiative power losses for charged particles, as described in this page.
The general problem of modeling relativistic particle trajectories for a given force boils down to solving the following system of six differential equations:
where
is the position of the particle, is the momentum of the particle, and is the acceleration of the particle which can be derived from the force. Classically, we would just use . Such a description, however, is not consistent with special relativity. Indeed, starting from the relativistic relations
and taking the time derivatives of both, we find
Solving this second equation for
and plugging into the first, also noting that , we obtain
, is the rest energy of the particle, and is the usual relativistic factor. These equations are solved subject to an appropriate set of boundary conditions, usually the initial position and momentum of the particle.
In simple cases, such as when the fields are uniform, this set of equations can be solved analytically. However, for the "silver" permanent magnet we plan on using for the pair spectrometer, the fields are anything but uniform. In such a case, the system must be solved numerically.
I am unable to post code to the wiki, so I have copied and pasted it all here. You will need all of these files in order to compile the code. GSL must be installed before you can compile this library.
The code can be compiled into a shared object library using the autoconf, automake, and libtool tools. Optionally, you could just compile these source files into other programs.
Return to Simulating Particle Trajectories