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
2a4c198c
Commit
2a4c198c
authored
2 years ago
by
Armin Damon Riess
Browse files
Options
Downloads
Patches
Plain Diff
minor formatting
parent
0c6943bc
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.hpp
+13
-13
13 additions, 13 deletions
lib/nBodySim.hpp
lib/node.hpp
+16
-12
16 additions, 12 deletions
lib/node.hpp
lib/tree.hpp
+5
-5
5 additions, 5 deletions
lib/tree.hpp
with
34 additions
and
30 deletions
lib/nBodySim.hpp
+
13
−
13
View file @
2a4c198c
...
...
@@ -6,40 +6,40 @@
class
nBodySim
{
public:
//
c
onstructor reads in data from datafile
//
C
onstructor reads in data from datafile
nBodySim
(
std
::
string
datafile
);
//
d
estructor deletes arrays
//
D
estructor deletes arrays
~
nBodySim
();
//
r
un simulation for nSteps time steps of size dt, integration with leapfrog algorithm
//
R
un simulation for nSteps time steps of size dt, integration with leapfrog algorithm
void
runSimulation
(
double
dt
,
unsigned
nSteps
);
//
l
oops over all pairs of particles and calculates forces, calculates current mean interparticle distance
//
L
oops over all pairs of particles and calculates forces, calculates current mean interparticle distance
void
calculateForces
();
//
u
se treecode and multipole expansion to calculate forces
//
U
se treecode and multipole expansion to calculate forces
void
treeCalculateForces
();
//
l
oop over all pairs of particles and calculate mean interparticle distance
//
L
oop over all pairs of particles and calculate mean interparticle distance
double
calculateMeanInterparticleDistance
();
//
l
oop over all force vectors and calculate mean force magnitude
//
L
oop over all force vectors and calculate mean force magnitude
double
calculateMeanForceMagnitude
();
//
i
ntegrate using leapfrog algorithm. doesn't update forces, doesn't update tree
//
I
ntegrate using leapfrog algorithm. doesn't update forces, doesn't update tree
void
doTimeStep
(
double
dt
);
//
u
pdate tree
//
U
pdate tree
void
updateTree
();
//
w
rites data to file, every row is a particle
//
W
rites data to file, every row is a particle
void
write2file
(
const
double
*
array
,
std
::
string
filename
,
unsigned
dim
)
const
;
//
w
rite current state of simulation to file
//
W
rite current state of simulation to file
void
saveState2file
(
unsigned
step
,
std
::
string
filename
)
const
;
//
f
unctions to get private variables
//
F
unctions to get private variables
double
*
getMasses
()
{
return
masses_
;
}
double
*
getPositions
()
{
return
positions_
;
}
double
*
getForces
()
{
return
forces_
;
}
unsigned
getNParticles
()
const
{
return
nParticles_
;
}
double
getMeanInterparticleDistance
()
const
{
return
meanInterparticleDistance_
;
}
double
getMeanForceMagnitude
()
const
{
return
meanForceMagnitude_
;
}
...
...
This diff is collapsed.
Click to expand it.
lib/node.hpp
+
16
−
12
View file @
2a4c198c
...
...
@@ -4,25 +4,28 @@
#include
<vector>
class
Node
{
using
List
=
std
::
vector
<
unsigned
>
;
public:
//
d
efault constructor creates a leaf node
//
D
efault constructor creates a leaf node
Node
()
=
default
;
//
w
hoever creates the node is responsible for deciding which particles are in which octant and for allocating the localParticles array
//
n
ode will write to localParticles array
//
W
hoever creates the node is responsible for deciding which particles are in which octant and for allocating the localParticles array
//
N
ode will write to localParticles array
Node
(
Node
*
root
,
Node
*
parent
,
double
*
masses
,
double
*
particles
,
unsigned
nParticles
,
unsigned
depth
,
double
size
,
double
center
[
3
],
st
d
::
vector
<
unsigned
>
&
localParticles
,
unsigned
nLocalParticles
);
//
d
estuctor
double
size
,
double
center
[
3
],
Li
st
&
localParticles
,
unsigned
nLocalParticles
);
//
D
estuctor
~
Node
();
//
c
opy constructor (default)
//
C
opy constructor (default)
Node
(
const
Node
&
)
=
default
;
//
c
opy assignment
//
C
opy assignment
Node
&
operator
=
(
const
Node
&
);
//
u
pdate tree: visit each node, check if it needs to be split or merged (for example if a particle has left the region)
void
update
(
st
d
::
vector
<
unsigned
>
&
allParticles
);
//
c
alculate force on a particle recursively
//
U
pdate tree: visit each node, check if it needs to be split or merged (for example if a particle has left the region)
void
update
(
Li
st
&
allParticles
);
//
C
alculate force on a particle recursively
double
*
calculateForce
(
unsigned
particle
);
//
c
alculate center of mass
//
C
alculate center of mass
void
calculateCenterOfMass
();
// Function that takes a particle and returns the octant it is in. This function doesn't check if the particle is actually in the node.
unsigned
getOctant
(
unsigned
particle
);
private:
Node
*
root_
;
...
...
@@ -38,7 +41,8 @@ private:
double
center_
[
3
];
double
centerOfMass_
[
3
];
std
::
vector
<
unsigned
>
localParticles_
;
// Contains the indices of the particles that are in this node for the particles_ array
List
localParticles_
;
unsigned
nLocalParticles_
;
double
mass_
;
...
...
This diff is collapsed.
Click to expand it.
lib/tree.hpp
+
5
−
5
View file @
2a4c198c
...
...
@@ -7,14 +7,14 @@
class
Tree
{
public:
//
c
onstructor
//
C
onstructor
Tree
()
=
delete
;
Tree
(
double
*
masses
,
double
*
particles
,
double
*
forces_
,
unsigned
nParticles
,
double
size
,
double
*
center
);
//
d
estructor
//
D
estructor
~
Tree
();
//
c
alculate force on a particle
//
C
alculate force on a particle
void
calculateForce
(
unsigned
particle
);
//
u
pdate tree
//
U
pdate tree
void
update
();
private:
...
...
@@ -27,7 +27,7 @@ private:
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