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 bce50754d4 - Show all commits

Implement Particle constructor

Cory Balaton 2023-09-29 13:53:18 +02:00
No known key found for this signature in database
GPG key ID: 3E5FCEBFD80F432B

View file

@ -18,5 +18,9 @@ Particle::Particle(double q, double m,
arma::vec::fixed<3> r_vec,
arma::vec::fixed<3> v_vec)
{
// Giving the particle its properties
this->q = q;
this->m = m;
this->r_vec = r_vec;
this->v_vec = v_vec;
}