Skip to content
Snippets Groups Projects
Commit 575da838 authored by Armin Damon Riess's avatar Armin Damon Riess
Browse files

tree no longer used to update positions

parent 2d1ab8c6
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
......@@ -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
......@@ -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_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment