All Projects → beltoforion → Barnes-Hut-Simulator

beltoforion / Barnes-Hut-Simulator

Licence: other
A C++ implementation of the Barnes-Hut-Algorithm.

Programming Languages

C++
36643 projects - #6 most used programming language
Makefile
30231 projects
CMake
9771 projects
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to Barnes-Hut-Simulator

nBody
GPU-accelerated N-Body particle simulator with visualizer.
Stars: ✭ 28 (-45.1%)
Mutual labels:  nbody-simulation, nbody-gravity-simulation
N-body-numerical-simulation
Script written in Python to integrate the equations of motion of N particles interacting with each other gravitationally. The script computes the equations of motion and use scipy.integrate to integrate them. Then it uses matplotlib to visualize the solution.
Stars: ✭ 40 (-21.57%)
Mutual labels:  nbody-simulation, nbody-gravity-simulation
negative-mass-simulator
Negative Mass N-body Simulation Codes
Stars: ✭ 57 (+11.76%)
Mutual labels:  nbody-simulation, nbody-gravity-simulation
CosmosFramework
CosmosFramework is a lightweight plug-in Unity development framework . Has a rich Unity method extensions and toolchain. async/await syntax support, multi-network channel support.Long term support for this project
Stars: ✭ 176 (+245.1%)
Mutual labels:  quadtree
boxtree
Quad/octree building for FMMs in Python and OpenCL
Stars: ✭ 52 (+1.96%)
Mutual labels:  quadtree
2D CARFIVE
2D Cartesian Quadtree Adaptive Mesh Refinement (AMR) for multiphase Five Equations Model
Stars: ✭ 23 (-54.9%)
Mutual labels:  quadtree
QuadTreeAndroid
Library that helps to implement the QuadTree in android, by using splitting images
Stars: ✭ 30 (-41.18%)
Mutual labels:  quadtree
NALib
General purpose C sourcecode collection
Stars: ✭ 16 (-68.63%)
Mutual labels:  quadtree
morton-table
Linear Quadtree implementation in Rust
Stars: ✭ 22 (-56.86%)
Mutual labels:  quadtree
nbody-simulation
a simulation of a dynamical system of particles
Stars: ✭ 23 (-54.9%)
Mutual labels:  nbody-simulation
concept
COsmological N-body CodE in PyThon
Stars: ✭ 62 (+21.57%)
Mutual labels:  nbody-simulation

Barnes-Hut-Simulator

The Barnes-Hut Algorithm describes an effective method for solving n-body problems. It was originally published in 1986 by Josh Barnes and Piet Hut. Instead of directly summing up all forces, it is using a tree based approximation scheme which reduces the computational complexity of the problem from O(N2) to O(N log N). This repository belongs to an article on beltoforion.de explaining the Barnes-Hut algorithm.

English Article:

German Article:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].