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
0c6943bc
Commit
0c6943bc
authored
2 years ago
by
Armin Damon Riess
Browse files
Options
Downloads
Patches
Plain Diff
minor formatting, function for center of mass
parent
839056c2
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
lib/nBodySim.hpp
+11
-2
11 additions, 2 deletions
lib/nBodySim.hpp
lib/node.cpp
+9
-0
9 additions, 0 deletions
lib/node.cpp
lib/node.hpp
+9
-1
9 additions, 1 deletion
lib/node.hpp
lib/tree.hpp
+4
-0
4 additions, 0 deletions
lib/tree.hpp
with
33 additions
and
3 deletions
lib/nBodySim.hpp
+
11
−
2
View file @
0c6943bc
...
...
@@ -10,20 +10,25 @@ public:
nBodySim
(
std
::
string
datafile
);
// destructor deletes arrays
~
nBodySim
();
// run simulation
// run simulation for nSteps time steps of size dt, integration with leapfrog algorithm
void
runSimulation
(
double
dt
,
unsigned
nSteps
);
// loops over all pairs of particles and calculates forces, calculates current mean interparticle distance
void
calculateForces
();
// use treecode to calculate forces
// use treecode
and multipole expansion
to calculate forces
void
treeCalculateForces
();
// loop over all pairs of particles and calculate mean interparticle distance
double
calculateMeanInterparticleDistance
();
// loop over all force vectors and calculate mean force magnitude
double
calculateMeanForceMagnitude
();
// integrate using leapfrog algorithm. doesn't update forces, doesn't update tree
void
doTimeStep
(
double
dt
);
// update tree
void
updateTree
();
// writes data to file, every row is a particle
void
write2file
(
const
double
*
array
,
std
::
string
filename
,
unsigned
dim
)
const
;
// write current state of simulation to file
...
...
@@ -34,10 +39,13 @@ public:
double
*
getPositions
()
{
return
positions_
;
}
double
*
getForces
()
{
return
forces_
;
}
unsigned
getNParticles
()
const
{
return
nParticles_
;
}
double
getMeanInterparticleDistance
()
const
{
return
meanInterparticleDistance_
;
}
double
getMeanForceMagnitude
()
const
{
return
meanForceMagnitude_
;
}
private
:
Tree
*
tree_
;
unsigned
nParticles_
;
// 3d vectors are stored as a array of length 3*nParticles_ in the format x1, y1, z1, x2, y2, z2, ...
double
*
masses_
;
...
...
@@ -46,6 +54,7 @@ private:
double
softening_
;
double
*
potential_
;
double
*
forces_
;
double
meanInterparticleDistance_
;
double
meanForceMagnitude_
;
};
...
...
This diff is collapsed.
Click to expand it.
lib/node.cpp
+
9
−
0
View file @
0c6943bc
...
...
@@ -104,4 +104,13 @@ double* Node::calculateForce(unsigned particle) {
// TODO
}
return
nullptr
;
}
void
Node
::
calculateCenterOfMass
()
{
for
(
unsigned
j
=
0
;
j
<
3
;
++
j
)
centerOfMass_
[
j
]
=
0
;
for
(
unsigned
i
:
localParticles_
)
for
(
unsigned
j
=
0
;
j
<
3
;
++
j
)
centerOfMass_
[
j
]
+=
particles_
[
3
*
i
+
j
]
/
nLocalParticles_
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
lib/node.hpp
+
9
−
1
View file @
0c6943bc
...
...
@@ -13,7 +13,7 @@ public:
double
size
,
double
center
[
3
],
std
::
vector
<
unsigned
>&
localParticles
,
unsigned
nLocalParticles
);
// destuctor
~
Node
();
// copy constructor
// copy constructor
(default)
Node
(
const
Node
&
)
=
default
;
// copy assignment
Node
&
operator
=
(
const
Node
&
);
...
...
@@ -21,18 +21,26 @@ public:
void
update
(
std
::
vector
<
unsigned
>&
allParticles
);
// calculate force on a particle recursively
double
*
calculateForce
(
unsigned
particle
);
// calculate center of mass
void
calculateCenterOfMass
();
private:
Node
*
root_
;
Node
*
parent_
;
Node
*
children_
[
8
];
double
*
masses_
;
double
*
particles_
;
unsigned
nParticles_
;
unsigned
depth_
;
double
size_
;
double
center_
[
3
];
double
centerOfMass_
[
3
];
std
::
vector
<
unsigned
>
localParticles_
;
unsigned
nLocalParticles_
;
double
mass_
;
const
double
theta0_
=
0.4
;
bool
isLeaf_
;
...
...
This diff is collapsed.
Click to expand it.
lib/tree.hpp
+
4
−
0
View file @
0c6943bc
...
...
@@ -16,14 +16,18 @@ public:
void
calculateForce
(
unsigned
particle
);
// update tree
void
update
();
private:
Node
*
root_
;
double
*
masses_
;
double
*
particles_
;
double
*
forces_
;
unsigned
nParticles_
;
double
size_
;
double
center_
[
3
];
std
::
vector
<
unsigned
>
allParticles_
;
};
...
...
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