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
5a3be0df
Commit
5a3be0df
authored
2 years ago
by
Armin Damon Riess
Browse files
Options
Downloads
Patches
Plain Diff
started framework of treecode
parent
850f1277
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/node.cpp
+36
-0
36 additions, 0 deletions
lib/node.cpp
lib/node.hpp
+25
-0
25 additions, 0 deletions
lib/node.hpp
lib/tree.cpp
+24
-0
24 additions, 0 deletions
lib/tree.cpp
lib/tree.hpp
+23
-0
23 additions, 0 deletions
lib/tree.hpp
with
108 additions
and
0 deletions
lib/node.cpp
0 → 100644
+
36
−
0
View file @
5a3be0df
#include
"node.hpp"
/*
Node::Node() {
root_ = nullptr;
parent_ = nullptr;
particles_ = nullptr;
nParticles_ = 0;
depth_ = 0;
size_ = 0;
for (unsigned i=0; i<3; ++i) center_[i] = 0;
localParticles_ = nullptr;
nLocalParticles_ = 0;
for (unsigned i=0; i<8; ++i) children_[i] = nullptr;
}
*/
Node
::
Node
(
Node
*
parent
,
double
*
particles
,
unsigned
nParticles
,
unsigned
depth
,
double
size
,
double
center
[
3
],
unsigned
*
localParticles
,
unsigned
nLocalParticles
)
{
parent_
=
parent
;
particles_
=
particles
;
nParticles_
=
nParticles
;
depth_
=
depth
;
size_
=
size
;
for
(
unsigned
i
=
0
;
i
<
3
;
++
i
)
center_
[
i
]
=
center
[
i
];
localParticles_
=
localParticles
;
nLocalParticles_
=
nLocalParticles
;
// allocate children
// TODO
}
Node
::~
Node
()
{
for
(
unsigned
i
=
0
;
i
<
8
;
++
i
)
{
delete
children_
[
i
];
}
delete
[]
localParticles_
;
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
lib/node.hpp
0 → 100644
+
25
−
0
View file @
5a3be0df
#ifndef NODE_HPP
#define NODE_HPP
class
Node
{
public:
// default constructor creates a leaf node
Node
()
=
default
;
// whoever creates the node is responsible for deciding which particles are in which octant and for allocating the localParticles array
// node will write to localParticles array
Node
(
Node
*
parent
,
double
*
particles
,
unsigned
nParticles
,
unsigned
depth
,
double
size
,
double
center
[
3
],
unsigned
*
localParticles
,
unsigned
nLocalParticles
);
~
Node
();
private:
Node
*
root_
;
Node
*
parent_
;
Node
*
children_
[
8
];
double
*
particles_
;
unsigned
nParticles_
;
unsigned
depth_
;
double
size_
;
double
center_
[
3
];
unsigned
*
localParticles_
;
unsigned
nLocalParticles_
;
};
#endif
/* NODE_HPP */
\ No newline at end of file
This diff is collapsed.
Click to expand it.
lib/tree.cpp
0 → 100644
+
24
−
0
View file @
5a3be0df
#include
"tree.hpp"
#include
"node.hpp"
Tree
::
Tree
(
double
*
particles
,
unsigned
nParticles
,
double
size
,
double
*
center
)
{
particles_
=
particles
;
nParticles_
=
nParticles
;
size_
=
size
;
for
(
unsigned
i
=
0
;
i
<
3
;
++
i
)
center_
[
i
]
=
center
[
i
];
unsigned
*
localParticles_
=
new
unsigned
[
nParticles_
];
for
(
unsigned
i
=
0
;
i
<
nParticles_
;
++
i
)
localParticles_
[
i
]
=
i
;
root_
=
new
Node
();
*
root_
=
Node
(
root_
,
particles_
,
nParticles_
,
0
,
size_
,
center_
,
localParticles_
,
nParticles_
);
}
Tree
::~
Tree
()
{
delete
root_
;
}
void
Tree
::
update
()
{
// TODO
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
lib/tree.hpp
0 → 100644
+
23
−
0
View file @
5a3be0df
#ifndef TREE_HPP
#define TREE_HPP
#include
"node.hpp"
class
Tree
{
public:
// constructor
Tree
()
=
delete
;
Tree
(
double
*
particles
,
unsigned
nParticles
,
double
size
,
double
*
center
);
// destructor
~
Tree
();
// 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
();
private:
Node
*
root_
;
double
*
particles_
;
unsigned
nParticles_
;
double
size_
;
double
center_
[
3
];
};
#endif
/* TREE_HPP */
\ No newline at end of file
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