Skip to content
Snippets Groups Projects
Commit 4748d28f authored by Armin Damon Riess's avatar Armin Damon Riess
Browse files

prepare implementation of time step

parent 2d6b8ccf
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,6 @@ nBodySim::~nBodySim() {
void nBodySim::runSimulation(double dt, unsigned nSteps) {
for (unsigned i=0; i < nSteps; ++i) {
calculateForces();
doTimeStep(dt);
}
}
......
......@@ -12,9 +12,9 @@ public:
~Tree();
// update tree: visit each node, check if it needs to be split or merged (for example if a particle has left the region)
void update();
// drift tree: visit each node, update center of mass and center of mass velocity
// drift tree: visit each node, update positions
void drift(double dt);
// kick tree: visit each node, update center of mass velocity
// kick tree: visit each node, update velocities
void kick(double dt);
private:
Node* root_;
......
......@@ -26,36 +26,42 @@ int main(int argc, char** argv) {
std::cout << "N = " << N << std::endl;
/*
// print positions
for (unsigned i=0; i<N; ++i) {
for (unsigned j=0; j<3; ++j) {
std::cout << sim.getPositions()[3*i+j] << " ";
}
std::cout << std::endl;
}
*/
try {
// calculate mean interparticle distance
double meanInterparticleDistance = sim.calculateMeanInterparticleDistance();
std::cout << "Mean interparticle distance: " << meanInterparticleDistance << std::endl;
// calculate mean interparticle distance
double meanInterparticleDistance = sim.calculateMeanInterparticleDistance();
std::cout << "Mean interparticle distance: " << meanInterparticleDistance << std::endl;
// calculate forces and measure computation time
auto start = std::chrono::high_resolution_clock::now();
sim.calculateForces();
auto stop = std::chrono::high_resolution_clock::now();
// calculate forces and measure computation time
auto start = std::chrono::high_resolution_clock::now();
sim.calculateForces();
auto stop = std::chrono::high_resolution_clock::now();
auto duration = std::chrono::duration_cast<std::chrono::microseconds>(stop - start);
std::cout << "Computation Time: " << duration.count()/1000000.0 << " seconds" << std::endl;
auto duration = std::chrono::duration_cast<std::chrono::microseconds>(stop - start);
std::cout << "Computation Time: " << duration.count()/1000000.0 << " seconds" << std::endl;
// calculate mean force magnitude
double meanForceMagnitude = sim.calculateMeanForceMagnitude();
std::cout << "Mean force magnitude: " << meanForceMagnitude << std::endl;
// calculate mean force magnitude
double meanForceMagnitude = sim.calculateMeanForceMagnitude();
std::cout << "Mean force magnitude: " << meanForceMagnitude << std::endl;
sim.write2file(sim.getForces(), "../out/forces.txt", 3);
*/
sim.write2file(sim.getForces(), "../out/forces.txt", 3);
try {
sim.runSimulation(dt, nSteps);
} catch (std::exception& e) {
std::cerr << e.what() << std::endl;
return 1;
}
// save state of simulation
sim.saveState2file(nSteps, "../out/state.txt");
return 0;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment