12#ifndef __PENNING_TRAP__
13#define __PENNING_TRAP__
23#pragma omp declare reduction(+ : vec3 : omp_out += omp_in) \
24 initializer(omp_priv = omp_orig)
145 double d = 500.,
double t = 0.);
156 double V_0 = (25. *
V) / 1000.,
double d = 500.,
double t = 0.);
184 void evolve_RK4(
double dt,
bool particle_interaction =
true);
204 bool particle_interaction =
true);
215 std::string method =
"rk4",
216 bool particle_interaction =
true);
229 std::string method =
"rk4",
230 bool particle_interaction =
true);
A class that holds the properties of a particle.
A class that holds attributes of a particle.
Test class for the Penning trap.
A class that simulates a Penning trap.
std::vector< Particle > particles
The particles in the Penning trap.
double B_0
Magnetic field strength.
vec3 total_force_external(uint i)
Calculate the total external force on a particle.
vec3 total_force_particles(uint i)
Calculate the total force on a particle p_i from other particles.
vec3 external_B_field(vec3 r)
Calculate B at point r.
void evolve_RK4(double dt, bool particle_interaction=true)
Go forward one timestep using the RK4 method.
vec3 v_func(uint i, uint j, double dt)
Helper for evolve_RK4 when calculating values.
vec3 external_E_field(vec3 r)
Calculate E at point r.
double d
Characteristic dimension.
void add_particle(Particle particle)
Add a particle to the system.
double V_0
Applied potential.
simulation_t simulate(double time, uint steps, std::string method="rk4", bool particle_interaction=true)
Simulate the particle system inside the Penning trap over a certain amount of time.
vec3 force_on_particle(uint i, uint j)
Calculate the force between 2 particles.
vec3 r_func(uint i, uint j, double dt)
Helper for evolve_RK4 when calculating values.
vec3 total_force(uint i)
calculate the total force on a particle p_i.
void set_pertubation(double f, double omega_V)
Time dependent perturbation to V_0.
void reinitialize(double f, double omega_V, double t=0.)
Give all particles new positions and velocities, and change t and V_0.
void evolve_forward_euler(double dt, bool particle_interaction=true)
Go forward one timestep using the forward Euler method.
double fraction_of_particles_left(double time, uint 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...
void write_simulation_to_dir(std::string path, double time, uint steps, std::string method="rk4", bool particle_interaction=true)
Simulate and write the displacement of all particles to files.
std::function< double(double)> perturbation
Time-dependent perturbation.
Typedef for PenningTrap::simulation return value.
Useful typedefs for cleaner code.
arma::vec::fixed< 3 > vec3
Typedef for a fixed 3d arma vector.
std::vector< sim_cols > sim_arr
Typedef for the result of the simulate method.
Function prototypes and macros that are useful.