Uncomment

This commit is contained in:
Cory Balaton 2023-10-20 11:24:41 +02:00
parent 335907d435
commit 2348d06070
No known key found for this signature in database
GPG Key ID: 3E5FCEBFD80F432B

View File

@ -139,9 +139,8 @@ void simulate_100_particles()
double time = 50.; // microseconds double time = 50.; // microseconds
//trap.write_simulation_to_dir("output/simulate_100_particles", time, N, trap.write_simulation_to_dir("output/simulate_100_particles", time, N,
//"rk4", false); "rk4", false);
trap.simulate(time, N);
} }
/** @brief Simulate 100 particles over 500 \f$ \mu s \f$ using a time /** @brief Simulate 100 particles over 500 \f$ \mu s \f$ using a time
@ -264,16 +263,16 @@ int main()
{ {
double t0 = omp_get_wtime(); double t0 = omp_get_wtime();
//simulate_single_particle(); simulate_single_particle();
//simulate_two_particles(); simulate_two_particles();
//simulate_single_particle_with_different_steps(); simulate_single_particle_with_different_steps();
simulate_100_particles(); simulate_100_particles();
//simulate_100_particles_with_time_potential_wide_sweep(); simulate_100_particles_with_time_potential_wide_sweep();
//simulate_100_particles_with_time_potential_narrow_sweep(); simulate_100_particles_with_time_potential_narrow_sweep();
double end = omp_get_wtime(); double end = omp_get_wtime();