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

changed dt

parent 4aa9d2bd
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ int main(int argc, char** argv) {
return 1;
}
double dt = 0.0001;
double dt = 0.000001;
unsigned nSteps = 200;
nBodySim sim(datafile);
......@@ -31,8 +31,8 @@ int main(int argc, char** argv) {
sim.runSimulation(dt, nSteps);
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::milliseconds>(stop - start);
std::cout << "Computation Time: " << duration.count()/1000.0 << " seconds" << std::endl;
} catch (std::exception& e) {
std::cerr << e.what() << std::endl;
// save state of simulation
......
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