Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
N Body Simulation
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
This server has been upgraded to GitLab release
17.10
.
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Armin Damon Riess
N Body Simulation
Commits
4748d28f
Commit
4748d28f
authored
2 years ago
by
Armin Damon Riess
Browse files
Options
Downloads
Patches
Plain Diff
prepare implementation of time step
parent
2d6b8ccf
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/nBodySim.cpp
+0
-1
0 additions, 1 deletion
lib/nBodySim.cpp
lib/tree.hpp
+2
-2
2 additions, 2 deletions
lib/tree.hpp
main.cpp
+21
-15
21 additions, 15 deletions
main.cpp
with
23 additions
and
18 deletions
lib/nBodySim.cpp
+
0
−
1
View file @
4748d28f
...
...
@@ -62,7 +62,6 @@ nBodySim::~nBodySim() {
void
nBodySim
::
runSimulation
(
double
dt
,
unsigned
nSteps
)
{
for
(
unsigned
i
=
0
;
i
<
nSteps
;
++
i
)
{
calculateForces
();
doTimeStep
(
dt
);
}
}
...
...
This diff is collapsed.
Click to expand it.
lib/tree.hpp
+
2
−
2
View file @
4748d28f
...
...
@@ -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
velocit
y
// kick tree: visit each node, update velocit
ies
void
kick
(
double
dt
);
private:
Node
*
root_
;
...
...
This diff is collapsed.
Click to expand it.
main.cpp
+
21
−
15
View file @
4748d28f
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment