Remove redundant methods

This commit is contained in:
Cory Balaton 2023-10-08 17:26:46 +02:00
parent 0b52008d4d
commit 2fd0ab9875
No known key found for this signature in database
GPG Key ID: 3E5FCEBFD80F432B
2 changed files with 0 additions and 12 deletions

View File

@ -91,10 +91,6 @@ public:
void evolve_forward_euler(double dt); void evolve_forward_euler(double dt);
sim_arr simulate(double time, int steps, std::string method = "rk4"); sim_arr simulate(double time, int steps, std::string method = "rk4");
arma::vec get_particle(int i);
double get_d();
}; };
#endif #endif

View File

@ -242,12 +242,4 @@ sim_arr PenningTrap::simulate(double time, int steps, std::string method)
return res; return res;
} }
arma::vec PenningTrap::get_particle(int i)
{
return this->particles.at(i).r_vec;
}
double PenningTrap::get_d()
{
return this->d;
}