Barnes–Hut simulation

Source: Wikipedia, the free encyclopedia.
A 100-body simulation with the Barnes–Hut tree visually as blue boxes.

The Barnes–Hut simulation (named after Josh Barnes and Piet Hut) is an approximation algorithm for performing an n-body simulation. It is notable for having order O(n log n) compared to a direct-sum algorithm which would be O(n2).[1]


The simulation volume is usually divided up into cubic cells via an octree (in a three-dimensional space), so that only particles from nearby cells need to be treated individually, and particles in distant cells can be treated as a single large particle centered at the cell's center of mass (or as a low-order multipole expansion). This can dramatically reduce the number of particle pair interactions that must be computed.

Dynamic visualization of the quadtree structure of the Barnes-Hut algorithm for the 2D N-body problem

Some of the most demanding high-performance computing projects do computational astrophysics using the Barnes–Hut treecode algorithm, such as DEGIMA.[2][citation needed]

Algorithm

The Barnes–Hut tree

In a three-dimensional

node
in this tree represents a region of the three-dimensional space. The topmost node represents the whole space, and its eight children represent the eight octants of the space. The space is recursively subdivided into octants until each subdivision contains 0 or 1 bodies (some regions do not have bodies in all of their octants). There are two types of nodes in the octree: internal and external nodes. An external node has no children and is either empty or represents a single body. Each internal node represents the group of bodies beneath it, and stores the center of mass and the total mass of all its children bodies.

  • Particle distribution resembling two neighboring galaxies.
    Particle distribution resembling two neighboring galaxies.
  • Complete Barnes–Hut tree. (Nodes that do not contain particles are not drawn)
    Complete Barnes–Hut tree. (Nodes that do not contain particles are not drawn)
  • Nodes of the Barnes–Hut tree used for calculating the force acting on a particle at the point of origin.
    Nodes of the Barnes–Hut tree used for calculating the force acting on a particle at the point of origin.
  • n-Body simulation based on the Barnes–Hut algorithm.

Calculating the force acting on a body

To calculate the net force on a particular body, the nodes of the tree are traversed, starting from the root. If the center of mass of an internal node is sufficiently far from the body, the bodies contained in that part of the tree are treated as a single particle whose position and mass is respectively the center of mass and total mass of the internal node. If the internal node is sufficiently close to the body, the process is repeated for each of its children.

Whether a node is or isn't sufficiently far away from a body, depends on the quotient , where s is the width of the region represented by the internal node, and d is the distance between the body and the node's center of mass. The node is sufficiently far away when this ratio is smaller than a threshold value θ. The parameter θ determines the accuracy of the simulation; larger values of θ increase the speed of the simulation but decreases its accuracy. If θ = 0, no internal node is treated as a single body and the algorithm degenerates to a direct-sum algorithm.

See also

References and sources

References
  1. .
  2. ^ T. Hamada; et al. (2009). "A novel multiple-walk parallel algorithm for the Barnes-Hut treecode on GPUs – towards cost effective, high performance N-body simulation". Comp. Sci. Res. Dev. 24 (1–2): 21–31.
    S2CID 31071570
    .
Sources

External links