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
ddc6a1fa
Commit
ddc6a1fa
authored
2 years ago
by
Armin Damon Riess
Browse files
Options
Downloads
Patches
Plain Diff
preparing for implementation of full simulation
parent
b9b0c148
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
+34
-17
34 additions, 17 deletions
lib/nBodySim.cpp
lib/nBodySim.hpp
+11
-5
11 additions, 5 deletions
lib/nBodySim.hpp
main.cpp
+4
-1
4 additions, 1 deletion
main.cpp
with
49 additions
and
23 deletions
lib/nBodySim.cpp
+
34
−
17
View file @
ddc6a1fa
...
...
@@ -8,40 +8,40 @@
nBodySim
::
nBodySim
(
std
::
string
&
datafile
)
{
std
::
string
dummy
;
std
::
ifstream
file
(
datafile
);
file
>>
dummy
>>
dummy
>>
N
_
;
file
>>
dummy
>>
dummy
>>
nParticles
_
;
masses_
=
new
double
[
N
_
];
for
(
unsigned
i
=
0
;
i
<
N
_
;
++
i
)
{
masses_
=
new
double
[
nParticles
_
];
for
(
unsigned
i
=
0
;
i
<
nParticles
_
;
++
i
)
{
file
>>
masses_
[
i
];
}
positions_
=
new
double
[
3
*
N
_
];
positions_
=
new
double
[
3
*
nParticles
_
];
for
(
unsigned
i
=
0
;
i
<
3
;
++
i
)
{
for
(
unsigned
j
=
0
;
j
<
N
_
;
++
j
)
{
for
(
unsigned
j
=
0
;
j
<
nParticles
_
;
++
j
)
{
file
>>
positions_
[
i
+
3
*
j
];
}
}
velocities_
=
new
double
[
3
*
N
_
];
velocities_
=
new
double
[
3
*
nParticles
_
];
for
(
unsigned
i
=
0
;
i
<
3
;
++
i
)
{
for
(
unsigned
j
=
0
;
j
<
N
_
;
++
j
)
{
for
(
unsigned
j
=
0
;
j
<
nParticles
_
;
++
j
)
{
file
>>
velocities_
[
i
+
3
*
j
];
}
}
softening_
=
new
double
[
N
_
];
for
(
unsigned
i
=
0
;
i
<
N
_
;
++
i
)
{
softening_
=
new
double
[
nParticles
_
];
for
(
unsigned
i
=
0
;
i
<
nParticles
_
;
++
i
)
{
file
>>
softening_
[
i
];
}
potential_
=
new
double
[
N
_
];
for
(
unsigned
i
=
0
;
i
<
N
_
;
++
i
)
{
potential_
=
new
double
[
nParticles
_
];
for
(
unsigned
i
=
0
;
i
<
nParticles
_
;
++
i
)
{
file
>>
potential_
[
i
];
}
forces_
=
new
double
[
3
*
N
_
];
forces_
=
new
double
[
3
*
nParticles
_
];
#pragma omp parallel for
for
(
unsigned
i
=
0
;
i
<
3
*
N
_
;
++
i
)
{
for
(
unsigned
i
=
0
;
i
<
3
*
nParticles
_
;
++
i
)
{
forces_
[
i
]
=
0.0
;
}
}
...
...
@@ -55,15 +55,22 @@ nBodySim::~nBodySim() {
delete
[]
forces_
;
}
void
nBodySim
::
runSimulation
(
double
dt
,
unsigned
nSteps
)
{
for
(
unsigned
i
=
0
;
i
<
nSteps
;
++
i
)
{
calculateForces
();
updatePositions
(
dt
);
}
}
void
nBodySim
::
calculateForces
()
{
#pragma omp parallel for
for
(
unsigned
i
=
0
;
i
<
3
*
N
_
;
++
i
)
{
for
(
unsigned
i
=
0
;
i
<
3
*
nParticles
_
;
++
i
)
{
forces_
[
i
]
=
0.0
;
}
// loop over each pair of particles and calculate the force between them
#pragma omp parallel for collapse(2)
for
(
unsigned
i
=
0
;
i
<
N
_
;
i
++
)
{
for
(
unsigned
j
=
0
;
j
<
N
_
;
j
++
)
{
for
(
unsigned
i
=
0
;
i
<
nParticles
_
;
i
++
)
{
for
(
unsigned
j
=
0
;
j
<
nParticles
_
;
j
++
)
{
if
(
i
==
j
)
continue
;
// calculate distance between particles
double
dx
=
positions_
[
3
*
j
]
-
positions_
[
3
*
i
];
...
...
@@ -85,10 +92,20 @@ void nBodySim::calculateForces() {
}
}
void
nBodySim
::
updatePositions
(
double
dt
)
{
#pragma omp parallel for
for
(
unsigned
i
=
0
;
i
<
nParticles_
;
++
i
)
{
for
(
unsigned
j
=
0
;
j
<
3
;
++
j
)
{
// update velocity
// update position
}
}
}
void
nBodySim
::
write2file
(
const
double
*
array
,
std
::
string
filename
,
unsigned
dim
)
const
{
// writes array to file, with N rows and dim columns
std
::
ofstream
file
(
filename
);
for
(
unsigned
i
=
0
;
i
<
N
_
;
i
++
)
{
for
(
unsigned
i
=
0
;
i
<
nParticles
_
;
i
++
)
{
for
(
unsigned
j
=
0
;
j
<
dim
;
j
++
)
{
file
<<
std
::
right
<<
std
::
setw
(
16
)
<<
array
[
dim
*
i
+
j
]
<<
" "
;
}
...
...
This diff is collapsed.
Click to expand it.
lib/nBodySim.hpp
+
11
−
5
View file @
ddc6a1fa
...
...
@@ -9,17 +9,23 @@ public:
nBodySim
(
std
::
string
&
datafile
);
// destructor deletes arrays
~
nBodySim
();
// run simulation
void
runSimulation
(
double
dt
,
unsigned
nSteps
);
// loops over all pairs of particles and calculates forces
void
calculateForces
();
// updates positions and velocities using the calculated forces
void
updatePositions
(
double
dt
);
// writes data to file, every row is a particle
void
write2file
(
const
double
*
array
,
std
::
string
filename
,
unsigned
dim
)
const
;
// functions to get private variables
double
*
getMasses
()
{
return
masses_
;
}
double
*
getPositions
()
{
return
positions_
;
}
double
*
getForces
()
{
return
forces_
;
}
// writes data to file, every row is a particle
void
write2file
(
const
double
*
array
,
std
::
string
filename
,
unsigned
dim
)
const
;
unsigned
getN
()
const
{
return
N_
;
}
unsigned
getNParticles
()
const
{
return
nParticles_
;
}
private
:
unsigned
N
_
;
// 3d vectors are stored as a 1d array of length 3*
N
_ in the format x1, y1, z1, x2, y2, z2, ...
unsigned
nParticles
_
;
// 3d vectors are stored as a 1d array of length 3*
nParticles
_ in the format x1, y1, z1, x2, y2, z2, ...
double
*
masses_
;
double
*
positions_
;
double
*
velocities_
;
...
...
This diff is collapsed.
Click to expand it.
main.cpp
+
4
−
1
View file @
ddc6a1fa
...
...
@@ -18,8 +18,11 @@ int main(int argc, char** argv) {
return
1
;
}
double
dt
=
0.01
;
unsigned
nSteps
=
1000
;
nBodySim
sim
(
datafile
);
unsigned
N
=
sim
.
getN
();
unsigned
N
=
sim
.
getN
Particles
();
std
::
cout
<<
"N = "
<<
N
<<
std
::
endl
;
/*
...
...
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