Skip to content
BarnesHutTree.cpp 5.01 KiB
Newer Older
Paul Heinzlreiter's avatar
Paul Heinzlreiter committed
#include "BarnesHutTree.hpp"
#include "Node.hpp"
#include "Box.hpp"
#include <iostream>
#include <climits>
#include <cfloat>

namespace nbody {
	using namespace std;

	BarnesHutTree::BarnesHutTree(int parallelId) : Tree(parallelId) {
	}

	BarnesHutTree::~BarnesHutTree() {
	}

	//determine octree subboxes
	vector<Box> BarnesHutTree::splitBB(Node* node) {
		return octreeSplit(node->getBB());
	}

	int BarnesHutTree::numberOfChildren() {
		return 8;
	}

Paul Heinzlreiter's avatar
Paul Heinzlreiter committed
	//update upper tree nodes according to moved particles
Paul Heinzlreiter's avatar
Paul Heinzlreiter committed
	void BarnesHutTree::update() {
		//iterate for updating representatives
		Node* current = this->nodes->prev;
		while (current != this->nodes) {
			current->representative.id = ULONG_MAX;
			current->representative.mass = 0.0;
			current->representative.position[0] = 0.0;
			current->representative.position[1] = 0.0;
			current->representative.position[2] = 0.0;
			if (current->leaf) {
				for (unsigned int i = 0; i < current->bodies.size(); i++) {
					current->representative.mass += current->bodies[i].mass;
					for (int j = 0; j < 3; j++) {
						current->representative.position[j] += current->bodies[i].position[j] * current->bodies[i].mass;
					}
				}
			} else {
				Node* child = current->next;

				do {
					current->representative.mass += child->representative.mass;
					for (int j = 0; j < 3; j++) {
						current->representative.position[j] += child->representative.position[j] * child->representative.mass;
					}
					child = child->nextSibling;
				} while (child != nullptr);
			}
			for (int j = 0; j < 3; j++) {
				if (current->representative.mass > FLT_EPSILON) {
					current->representative.position[j] /= current->representative.mass;
				} else {
					current->representative.position[j] = 0.0;
				}
			}
			current = current->prev;
		}
	}

	//split tree node into sub-boxes during tree build
	void BarnesHutTree::split(Node* current) {
		vector<Box> subboxes = BarnesHutTree::splitBB(current);
		current->leaf = false;
		Node* after = current->next;

		for (vector<Box>::iterator it = subboxes.begin(); it != subboxes.end(); it++) {
			Node* child = new Node(current->tree);

			child->parent = current;
			child->bb = *it;
			child->bodies = copyBodies(*it, current->bodies);
			child->nextSibling = nullptr;
			child->prevSibling = nullptr;
			after->insertBefore(child);
			if (it != subboxes.begin()) {
				child->prev->nextSibling = child;
				child->prevSibling = child->prev;
				child->prev->afterSubtree = child;
			}
		}
		after->prev->afterSubtree = current->afterSubtree;
		current->bodies.clear();
	}

	//initialize tree for build process
	void BarnesHutTree::init(vector<Body> bodies, Box domain) {
		Node* current;

		this->clean();
		if (bodies.empty()) return;
		//insert root node
		this->nodes->insertAfter(new Node(this));
		current = this->nodes->next;
		//assign bodies to root node
		current->bodies = bodies;
		//setup proper bounding box
		current->bb = domain;
		current->extendBBforBodies();
		current->extendBBtoCube();
		current->afterSubtree = current->next;
	}

	//check if split is required and perform it
	bool BarnesHutTree::splitNode(Node* current) {
		bool result = current->isSplitable();

		if (result) {
			split(current);
		}
		return result;
	}

	//build tree with given domain
	void BarnesHutTree::build(vector<Body> bodies, Box domain) {
		this->init(bodies, domain);
		//iterate over existing boxes and split if it contains too much bodies
		BarnesHutTree::splitSubtree(this->nodes->next);
		this->update();
	}

	//build tree
	void BarnesHutTree::build(vector<Body> bodies) {
		Box bb;

		initBox(bb);
		extendForBodies(bb, bodies);
		this->build(bodies, bb);
	}

	//merge remote refinement particles into local tree
	//(this are remote particles from other processes needed for force computation on local particles)
	void BarnesHutTree::mergeLET(vector<Body> bodies) {
		//put all new bodies into fitting leaves, walk through tree and split
		Node* current;

		for (vector<Body>::iterator it = bodies.begin(); it != bodies.end(); it++) {
			current = this->nodes->next;
			while (!current->leaf) {
				Node* child = current->next;

				while (child != nullptr && !contained(child->getBB(), it->position)) {
					child = child->nextSibling;
				}
				if (child != nullptr) {
					current = child;
				}
				current = child;
			}
			current->bodies.push_back(*it);
			current->bodies.back().refinement = true;
		}
		current = this->nodes->next;
		while (current != this->nodes) {
			this->splitNode(current);
			current = current->next;
		}
		this->update();
	}

	//node splitting if required
	void BarnesHutTree::splitSubtree(Node* root) {
		bool toSplitLeft;
		Node* current = root;

		do {
			toSplitLeft = false;
			while (current != root->afterSubtree) {
				if (current->isSplitable()) {
					split(current);
					toSplitLeft = true;
				}
				current = current->next;
			}
		} while (toSplitLeft);
	}

	//checking for tree validity
	bool BarnesHutTree::isCorrect() {
		for (Node* current = this->nodes->next; current != this->nodes; current = current->next) {
			if (!current->isCorrect()) {
				return false;
			}
		}
		return true;
	}