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
575da838
Commit
575da838
authored
2 years ago
by
Armin Damon Riess
Browse files
Options
Downloads
Patches
Plain Diff
tree no longer used to update positions
parent
2d1ab8c6
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/node.cpp
+8
-4
8 additions, 4 deletions
lib/node.cpp
lib/tree.cpp
+0
-8
0 additions, 8 deletions
lib/tree.cpp
lib/tree.hpp
+0
-4
0 additions, 4 deletions
lib/tree.hpp
with
8 additions
and
16 deletions
lib/node.cpp
+
8
−
4
View file @
575da838
...
...
@@ -36,6 +36,7 @@ Node::Node(Node* root, Node* parent, double* masses, double* particles, unsigned
}
// allocate children
// check if child contains no particles, in that case set child to nullptr
// TODO
}
...
...
@@ -63,11 +64,14 @@ Node& Node::operator=(const Node& other) {
double
*
Node
::
calculateForce
(
unsigned
particle
)
{
// calculate theta
double
lambda
=
std
::
sqrt
((
center_
[
0
]
-
particles_
[
3
*
particle
+
0
])
*
(
center_
[
0
]
-
particles_
[
3
*
particle
+
0
])
+
(
center_
[
1
]
-
particles_
[
3
*
particle
+
1
])
*
(
center_
[
1
]
-
particles_
[
3
*
particle
+
1
])
+
(
center_
[
2
]
-
particles_
[
3
*
particle
+
2
])
*
(
center_
[
2
]
-
particles_
[
3
*
particle
+
2
]));
double
px
=
particles_
[
3
*
particle
+
0
];
double
py
=
particles_
[
3
*
particle
+
1
];
double
pz
=
particles_
[
3
*
particle
+
2
];
double
lambda
=
std
::
sqrt
((
center_
[
0
]
-
px
)
*
(
center_
[
0
]
-
px
)
+
(
center_
[
1
]
-
py
)
*
(
center_
[
1
]
-
py
)
+
(
center_
[
2
]
-
pz
)
*
(
center_
[
2
]
-
pz
));
double
theta
=
size_
/
lambda
;
// if angle too large, calculate force on particle from
children
// if angle too large,
call this function for every child. If a child is a nullptr,
calculate force on particle from
particles in this node
// else calculate force on particle from particles in this node
if
(
theta
>
theta0_
)
{
// TODO
...
...
This diff is collapsed.
Click to expand it.
lib/tree.cpp
+
0
−
8
View file @
575da838
...
...
@@ -27,12 +27,4 @@ void Tree::calculateForce(unsigned particle) {
void
Tree
::
update
()
{
// TODO
}
void
Tree
::
drift
(
double
dt
)
{
// TODO
}
void
Tree
::
kick
(
double
dt
)
{
// TODO
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
lib/tree.hpp
+
0
−
4
View file @
575da838
...
...
@@ -14,10 +14,6 @@ public:
void
calculateForce
(
unsigned
particle
);
// 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 positions
void
drift
(
double
dt
);
// kick tree: visit each node, update velocities
void
kick
(
double
dt
);
private:
Node
*
root_
;
double
*
masses_
;
...
...
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