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.
binbased_fast_point_locator_conditions.h
Go to the documentation of this file.
1 // | / |
2 // ' / __| _` | __| _ \ __|
3 // . \ | ( | | ( |\__ \.
4 // _|\_\_| \__,_|\__|\___/ ____/
5 // Multi-Physics
6 //
7 // License: BSD License
8 // license: license.txt
9 //
10 // License: BSD License
11 // Main authors: Vicente Mataix Ferrandiz
12 //
13 
14 #if !defined(KRATOS_BINBASED_FAST_POINT_LOCATOR_CONDITIONS_INCLUDED )
15 #define KRATOS_BINBASED_FAST_POINT_LOCATOR_CONDITIONS_INCLUDED
16 
17 // System includes
18 
19 // External includes
20 
21 
22 // Project includes
24 
25 namespace Kratos
26 {
29 
33 
35  typedef std::size_t SizeType;
36 
40 
44 
48 
60 template< SizeType TDim>
62  : public BinBasedFastPointLocator<TDim, SpatialContainersConfigure<TDim, Condition>>
63 {
64 public:
67 
70 
73 
77 
83  : BaseType(rModelPart)
84  {
85  }
86 
89 
91 };
92 
93 } // namespace Kratos.
94 
95 #endif // KRATOS_BINBASED_FAST_POINT_LOCATOR_CONDITIONS_INCLUDED defined
96 
97 
This class is designed to allow the fast location of MANY points on the top of a 3D mesh....
Definition: binbased_fast_point_locator_conditions.h:63
BinBasedFastPointLocatorConditions(ModelPart &rModelPart)
This is the default constructor.
Definition: binbased_fast_point_locator_conditions.h:82
~BinBasedFastPointLocatorConditions() override=default
Destructor.
KRATOS_CLASS_POINTER_DEFINITION(BinBasedFastPointLocatorConditions)
Pointer definition of BinBasedFastPointLocatorConditions.
BinBasedFastPointLocator< TDim, SpatialContainersConfigure< TDim, Condition > > BaseType
The base type definition.
Definition: binbased_fast_point_locator_conditions.h:69
This class is designed to allow the fast location of MANY points on the top of a 3D mesh.
Definition: binbased_fast_point_locator.h:68
This class aims to manage meshes for multi-physics simulations.
Definition: model_part.h:77
REF: G. R. Cowper, GAUSSIAN QUADRATURE FORMULAS FOR TRIANGLES.
Definition: mesh_condition.cpp:21
std::size_t SizeType
The definition of the size type.
Definition: mortar_classes.h:43