Penning Trap Simulation
Simulate particle behavior inside a Penning Trap
Loading...
Searching...
No Matches
PenningTrap.hpp
Go to the documentation of this file.
1
12#ifndef __PENNING_TRAP__
13#define __PENNING_TRAP__
14
15#include <armadillo>
16#include <omp.h>
17
18#include "Particle.hpp"
19#include "constants.hpp"
20#include "typedefs.hpp"
21#include "utils.hpp"
22
23#pragma omp declare reduction(+ : vec_3d : omp_out += omp_in) \
24 initializer(omp_priv = omp_orig)
25
32private:
33 double B_0;
34 std::function<double(double)> V_0;
35 double d;
36 double t;
37 std::vector<Particle> particles;
42
53 vec_3d v_func(unsigned int i, unsigned int j, double dt);
54
65 vec_3d r_func(unsigned int i, unsigned int j, double dt);
66
67public:
76 double B_0 = T,
77 std::function<double(double)> V_0 =
78 [](double t) { return 25. * V / 1000.; },
79 double d = 500., double t = 0.);
80
90 unsigned int i, double B_0 = T,
91 std::function<double(double)> V_0 =
92 [](double t) { return 25. * V / 1000.; },
93 double d = 500., double t = 0.);
94
104 std::vector<Particle> particles, double B_0 = T,
105 std::function<double(double)> V_0 =
106 [](double t) { return 25. * V / 1000.; },
107 double d = 500., double t = 0.);
108
113 void add_particle(Particle particle);
114
122
130
141 vec_3d force_on_particle(unsigned int i, unsigned int j);
142
152 vec_3d total_force_external(unsigned int i);
153
160 vec_3d total_force_particles(unsigned int i);
161
168 vec_3d total_force(unsigned int i);
169
175 void evolve_RK4(double dt, bool particle_interaction = true);
176
182 void evolve_forward_euler(double dt, bool particle_interaction = true);
183
194 simulation_t simulate(double time, unsigned int steps,
195 std::string method = "rk4",
196 bool particle_interaction = true);
197
206 void write_simulation_to_dir(std::string path, double time,
207 unsigned int steps, std::string method = "rk4",
208 bool particle_interaction = true);
209
220 double fraction_of_particles_left(double time, unsigned int steps,
221 std::string method = "rk4",
222 bool particle_interaction = true);
223
224 vec_3d get_r(int i);
225 double get_t();
226};
227
228#endif
A class that holds the properties of a particle.
A class that holds attributes of a particle.
Definition: Particle.hpp:21
A class that simulates a Penning trap.
Definition: PenningTrap.hpp:31
std::vector< Particle > particles
The particles in the Penning trap.
Definition: PenningTrap.hpp:37
double fraction_of_particles_left(double time, unsigned int steps, std::string method="rk4", bool particle_interaction=true)
Simulate and calculate what fraction of particles are still left inside the Penning trap after the si...
double B_0
Magnetic field strength.
Definition: PenningTrap.hpp:33
vec_3d external_E_field(vec_3d r)
Calculate E at point r.
Definition: PenningTrap.cpp:84
vec_3d total_force(unsigned int i)
calculate the total force on a particle p_i.
sim_arr k_r
Definition: PenningTrap.hpp:40
void evolve_RK4(double dt, bool particle_interaction=true)
Go forward one timestep using the RK4 method.
vec_3d r_func(unsigned int i, unsigned int j, double dt)
Helper for evolve_RK4 when calculating values.
Definition: PenningTrap.cpp:61
vec_3d total_force_particles(unsigned int i)
Calculate the total force on a particle p_i from other particles.
double d
Characteristic dimension.
Definition: PenningTrap.hpp:35
void add_particle(Particle particle)
Add a particle to the system.
Definition: PenningTrap.cpp:79
double t
Current time.
Definition: PenningTrap.hpp:36
vec_3d force_on_particle(unsigned int i, unsigned int j)
Calculate the force between 2 particles.
Definition: PenningTrap.cpp:97
std::function< double(double)> V_0
Applied potential.
Definition: PenningTrap.hpp:34
void evolve_forward_euler(double dt, bool particle_interaction=true)
Go forward one timestep using the forward Euler method.
void write_simulation_to_dir(std::string path, double time, unsigned int steps, std::string method="rk4", bool particle_interaction=true)
Simulate and write the displacement of all particles to files.
vec_3d external_B_field(vec_3d r)
Calculate B at point r.
Definition: PenningTrap.cpp:92
simulation_t simulate(double time, unsigned int steps, std::string method="rk4", bool particle_interaction=true)
Simulate the particle system inside the Penning trap over a certain amount of time.
vec_3d total_force_external(unsigned int i)
Calculate the total external force on a particle.
sim_arr k_v
Definition: PenningTrap.hpp:38
vec_3d v_func(unsigned int i, unsigned int j, double dt)
Helper for evolve_RK4 when calculating values.
Definition: PenningTrap.cpp:43
Library of constants.
#define T
1 Tesla. unit:
Definition: constants.hpp:17
#define V
1 Volt. unit:
Definition: constants.hpp:19
Typedef for PenningTrap::simulation return value.
Definition: typedefs.hpp:40
Useful typedefs for cleaner code.
arma::vec::fixed< 3 > vec_3d
Typedef for a fixed 3d arma vector.
Definition: typedefs.hpp:36
std::vector< sim_cols > sim_arr
Typedef for the result of the simulate method.
Definition: typedefs.hpp:32
Function prototypes and macros that are useful.