![]() |
KratosMultiphysics
KRATOS Multiphysics (Kratos) is a framework for building parallel, multi-disciplinary simulation software, aiming at modularity, extensibility, and high performance. Kratos is written in C++, and counts with an extensive Python interface.
|
This class represents a cell in an octree to be used with Octree class. More...
#include <octree_binary_cell.h>
Public Member Functions | |
Life Cycle | |
OctreeBinaryCell (char Level=ROOT_LEVEL) | |
Default constructor. More... | |
virtual | ~OctreeBinaryCell () |
Destructor. More... | |
void | DeleteChildren () |
void | DeleteData () |
Operations | |
std::size_t | GetChildIndex (key_type x_key, key_type y_key, key_type z_key) const |
int | SubdivideCell () |
void | GetMinPointNormalized (double *min_point) const |
void | GetMaxPointNormalized (double *max_point) const |
int | GetLeftKey (key_type *keys) const |
int | GetRightKey (key_type *keys) const |
int | GetBackKey (key_type *keys) const |
int | GetFrontKey (key_type *keys) const |
int | GetBottomKey (key_type *keys) const |
int | GetTopKey (key_type *keys) const |
int | GetKey (std::size_t position, key_type *keys) const |
int | GetNeighbourKey (std::size_t direction, key_type *keys) const |
int | GetNeighbourKey (std::size_t position, std::size_t direction, key_type *keys) const |
std::size_t | GetLocalPosition (key_type *keys) |
void | Insert (pointer_type object) |
void | TransferObjectsToSonsNormalized () |
Access | |
unsigned char | GetLevel () const |
char | SetLevel (char level) |
void | GetMinKey (key_type &min_key_x, key_type &min_key_y, key_type &min_key_z) const |
void | SetMinKey (key_type min_key_x, key_type min_key_y, key_type min_key_z) |
OctreeBinaryCell & | rGetChild (std::size_t pos) const |
OctreeBinaryCell * | pGetChild (std::size_t pos) const |
OctreeBinaryCell * | pGetChild (key_type x_key, key_type y_key, key_type z_key) const |
OctreeBinaryCell * | GetChildren () |
OctreeBinaryCell const * | GetChildren () const |
data_type * | pGetData () const |
data_type ** | pGetDataPointer () |
const std::vector< pointer_type > * | pGetObjects () const |
std::vector< pointer_type > * | pGetObjects () |
void | EmptyObjects () |
Inquiry | |
bool | IsLeaf () const |
bool | HasChildren () const |
Input and output | |
virtual std::string | Info () const |
Turn back information as a string. More... | |
virtual void | PrintInfo (std::ostream &rOStream) const |
Print information about this object. More... | |
virtual void | PrintData (std::ostream &rOStream) const |
Print object's data. More... | |
Type Definitions | |
enum | { LEFT = 0 , RIGHT = 1 , BACK = 2 , FRONT = 3 , BOTTOM = 4 , TOP = 6 } |
typedef TConfiguration::data_type | data_type |
Pointer definition of OctreeBinaryCell. More... | |
typedef TConfiguration | configuration_type |
typedef TConfiguration::pointer_type | pointer_type |
typedef std::vector< pointer_type > | object_container_type |
typedef std::size_t | key_type |
static constexpr std::size_t | CHILDREN_NUMBER = 8 |
static constexpr std::size_t | DIMENSION = TConfiguration::DIMENSION |
static constexpr std::size_t | MAX_LEVEL = TConfiguration::MAX_LEVEL |
static constexpr std::size_t | ROOT_LEVEL = MAX_LEVEL - 1 |
static constexpr std::size_t | MIN_LEVEL = TConfiguration::MIN_LEVEL |
This class represents a cell in an octree to be used with Octree class.
This class represents a cell in an octree and holds its level, min_key ,the children of the cell and pointer to a data class defined by configuration class. The level_ start from ROOT_LEVEL and each children has 1 level less than its parents but more than MIN_LEVEL. The keys are the binary bisection pattern in each dimension for the min point of the cell. The children are stored in in an array of 8 in following order
Top ________________ / 6 / 7 /| /_______/_______/ | / 4 / 5 /| | /_______/_______/ | / Front | | | |/ | | | / |_______|_______|/ ________________
Left / 2 / 3 /| Right /_______/_______/ | / 0 / 1 /| | /_______/_______/ | / | | | |/ | | | / |_______|_______|/ z Back | y Bottom |/__x
typedef TConfiguration Kratos::OctreeBinaryCell< TConfiguration >::configuration_type |
typedef TConfiguration::data_type Kratos::OctreeBinaryCell< TConfiguration >::data_type |
Pointer definition of OctreeBinaryCell.
typedef std::size_t Kratos::OctreeBinaryCell< TConfiguration >::key_type |
typedef std::vector<pointer_type> Kratos::OctreeBinaryCell< TConfiguration >::object_container_type |
typedef TConfiguration::pointer_type Kratos::OctreeBinaryCell< TConfiguration >::pointer_type |
|
inlineexplicit |
Default constructor.
|
inlinevirtual |
Destructor.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inlinevirtual |
Turn back information as a string.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inlinevirtual |
Print object's data.
|
inlinevirtual |
Print information about this object.
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
staticconstexpr |
|
staticconstexpr |
|
staticconstexpr |
|
staticconstexpr |
|
staticconstexpr |