Coryab/implement penningtrap #3

Merged
coryab merged 20 commits from coryab/implement-Penningtrap into develop 2023-10-02 19:53:15 +00:00
Showing only changes of commit b856834adc - Show all commits

View File

@ -9,7 +9,6 @@
* *
* @bug No known bugs * @bug No known bugs
* *
* @todo Implement constructor
* @todo Implement add_particle * @todo Implement add_particle
* @todo Implement external_E_field * @todo Implement external_E_field
* @todo Implement external_B_field * @todo Implement external_B_field
@ -25,7 +24,9 @@
PenningTrap::PenningTrap(double B_0, double V_0, double d) PenningTrap::PenningTrap(double B_0, double V_0, double d)
{ {
this->B_0 = B_0;
this->V_0 = V_0;
this->d = d;
} }
void PenningTrap::add_particle(Particle particle) void PenningTrap::add_particle(Particle particle)