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
30115a72
Commit
30115a72
authored
2 years ago
by
Armin Damon Riess
Browse files
Options
Downloads
Patches
Plain Diff
further improvement to computation time
parent
f315bd1e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/nBodySim.cpp
+30
-20
30 additions, 20 deletions
lib/nBodySim.cpp
lib/nBodySim.hpp
+1
-1
1 addition, 1 deletion
lib/nBodySim.hpp
with
31 additions
and
21 deletions
lib/nBodySim.cpp
+
30
−
20
View file @
30115a72
...
...
@@ -58,45 +58,55 @@ nBodySim::~nBodySim() {
void
nBodySim
::
runSimulation
(
double
dt
,
unsigned
nSteps
)
{
for
(
unsigned
i
=
0
;
i
<
nSteps
;
++
i
)
{
calculateForces
();
updatePositions
(
dt
);
doTimeStep
(
dt
);
}
}
///*
void
nBodySim
::
calculateForces
()
{
#pragma omp parallel for
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
#pragma omp parallel for
schedule(guided)
for
(
unsigned
i
=
0
;
i
<
nParticles_
;
i
++
)
{
double
mi
=
masses_
[
i
];
double
s
=
softening_
[
i
];
double
px
=
positions_
[
3
*
i
];
double
py
=
positions_
[
3
*
i
+
1
];
double
pz
=
positions_
[
3
*
i
+
2
];
double
fx
=
0.0
;
double
fy
=
0.0
;
double
fz
=
0.0
;
for
(
unsigned
j
=
i
+
1
;
j
<
nParticles_
;
j
++
)
{
// if (j <= i) continue;
// calculate distance between particles
double
dx
=
positions_
[
3
*
j
]
-
p
ositions_
[
3
*
i
]
;
double
dy
=
positions_
[
3
*
j
+
1
]
-
p
ositions_
[
3
*
i
+
1
]
;
double
dz
=
positions_
[
3
*
j
+
2
]
-
p
ositions_
[
3
*
i
+
2
]
;
double
dx
=
positions_
[
3
*
j
]
-
p
x
;
double
dy
=
positions_
[
3
*
j
+
1
]
-
p
y
;
double
dz
=
positions_
[
3
*
j
+
2
]
-
p
z
;
double
r2
=
dx
*
dx
+
dy
*
dy
+
dz
*
dz
;
double
r
=
std
::
sqrt
(
r2
);
dx
/=
r
;
dy
/=
r
;
dz
/=
r
;
// calculate force
double
mi
=
masses_
[
i
];
// calculate forces
double
mj
=
masses_
[
j
];
double
s
=
softening_
[
i
];
double
fx
=
mi
*
mj
*
dx
/
(
r2
+
s
*
s
);
double
fy
=
mi
*
mj
*
dy
/
(
r2
+
s
*
s
);
double
fz
=
mi
*
mj
*
dz
/
(
r2
+
s
*
s
);
forces_
[
3
*
i
]
+=
fx
;
forces_
[
3
*
i
+
1
]
+=
fy
;
forces_
[
3
*
i
+
2
]
+=
fz
;
forces_
[
3
*
j
]
-=
fx
;
forces_
[
3
*
j
+
1
]
-=
fy
;
forces_
[
3
*
j
+
2
]
-=
fz
;
double
fxij
=
mi
*
mj
*
dx
/
(
r2
+
s
*
s
);
double
fyij
=
mi
*
mj
*
dy
/
(
r2
+
s
*
s
);
double
fzij
=
mi
*
mj
*
dz
/
(
r2
+
s
*
s
);
fx
+=
fxij
;
fy
+=
fyij
;
fz
+=
fzij
;
forces_
[
3
*
j
]
-=
fxij
;
forces_
[
3
*
j
+
1
]
-=
fyij
;
forces_
[
3
*
j
+
2
]
-=
fzij
;
}
forces_
[
3
*
i
]
+=
fx
;
forces_
[
3
*
i
+
1
]
+=
fy
;
forces_
[
3
*
i
+
2
]
+=
fz
;
}
}
//*/
/*
void nBodySim::calculateForces() {
#pragma omp parallel for
...
...
@@ -129,7 +139,7 @@ void nBodySim::calculateForces() {
}
*/
void
nBodySim
::
updatePositions
(
double
dt
)
{
void
nBodySim
::
doTimeStep
(
double
dt
)
{
#pragma omp parallel for
for
(
unsigned
i
=
0
;
i
<
nParticles_
;
++
i
)
{
for
(
unsigned
j
=
0
;
j
<
3
;
++
j
)
{
...
...
This diff is collapsed.
Click to expand it.
lib/nBodySim.hpp
+
1
−
1
View file @
30115a72
...
...
@@ -14,7 +14,7 @@ public:
// loops over all pairs of particles and calculates forces
void
calculateForces
();
// updates positions and velocities using the calculated forces
void
updatePositions
(
double
dt
);
void
doTimeStep
(
double
dt
);
// writes data to file, every row is a particle
void
write2file
(
const
double
*
array
,
std
::
string
filename
,
unsigned
dim
)
const
;
...
...
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