Dendro
5.01
Dendro in Greek language means tree. The Dendro library is a large scale (262K cores on ORNL's Titan) distributed memory adaptive octree framework. The main goal of Dendro is to perform large scale multiphysics simulations efficeiently in mordern supercomputers. Dendro consists of efficient parallel data structures and algorithms to perform variational ( finite element) methods and finite difference mthods on 2:1 balanced arbitary adaptive octrees which enables the users to perform simulations raning from black holes (binary black hole mergers) to blood flow in human body, where applications ranging from relativity, astrophysics to biomedical engineering.
|
A point class. More...
#include <point.h>
Public Member Functions | |
double | dot (Point Other) |
Point | cross (Point Other) |
double | abs () |
void | normalize () |
Constructors and Destructor | |
Point () | |
Point (double newx, double newy, double newz) | |
Point (int newx, int newy, int newz) | |
Point (unsigned int newx, unsigned int newy, unsigned int newz) | |
Point (const Point &newpoint) | |
Getters | |
const double & | x () const |
const double & | y () const |
const double & | z () const |
int | xint () const |
int | yint () const |
int | zint () const |
Overloaded Operators | |
Point | operator- () const |
void | operator+= (const Point &other) |
void | operator/= (const int divisor) |
void | operator/= (const double divisor) |
void | operator*= (const int factor) |
void | operator*= (const double factor) |
Point & | operator= (const Point &other) |
Point | operator+ (const Point &other) |
Point | operator- (const Point &other) |
Point | operator- (const Point &other) const |
Point | operator/ (const double divisor) |
Point | operator* (const double factor) |
double | magnitude () |
bool | operator!= (const Point &other) |
bool | operator== (const Point &other) |
Static Public Member Functions | |
static Point | TransMatMultiply (double *transMat, Point inPoint) |
Protected Attributes | |
double | _x |
double | _y |
double | _z |
A point class.