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.
local_ghost_splitting_utility.h
Go to the documentation of this file.
1 // | / |
2 // ' / __| _` | __| _ \ __|
3 // . \ | ( | | ( |\__ `
4 // _|\_\_| \__,_|\__|\___/ ____/
5 // Multi-Physics
6 //
7 // License: BSD License
8 // license: HDF5Application/license.txt
9 //
10 // Main author: https://github.com/msandre
11 //
12 
17 #if !defined(KRATOS_LOCAL_GHOST_SPLITTING_UTILITY_H_INCLUDED)
18 #define KRATOS_LOCAL_GHOST_SPLITTING_UTILITY_H_INCLUDED
19 
20 // System includes
21 
22 // External includes
23 
24 // Project includes
25 #include "includes/define.h"
26 #include "includes/model_part.h"
27 
28 // Application includes
29 
30 namespace Kratos
31 {
32 
34  std::vector<ModelPart::NodeType*>& rLocalNodes,
35  std::vector<ModelPart::NodeType*>& rGhostNodes);
36 
38  std::vector<ModelPart::NodeType*>& rLocalNodes);
39 
40 } // namespace Kratos.
41 
42 #endif // KRATOS_LOCAL_GHOST_SPLITTING_UTILITY_H_INCLUDED defined
MeshType::NodesContainerType NodesContainerType
Nodes container. Which is a vector set of nodes with their Id's as key.
Definition: model_part.h:128
REF: G. R. Cowper, GAUSSIAN QUADRATURE FORMULAS FOR TRIANGLES.
Definition: mesh_condition.cpp:21
void SplitNodesIntoLocalAndGhost(ModelPart::NodesContainerType const &rNodes, std::vector< ModelPart::NodeType * > &rLocalNodes, std::vector< ModelPart::NodeType * > &rGhostNodes)
Definition: local_ghost_splitting_utility.cpp:11
void GetLocalNodes(ModelPart::NodesContainerType const &rNodes, std::vector< ModelPart::NodeType * > &rLocalNodes)
Definition: local_ghost_splitting_utility.cpp:65