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.
nitsche_stabilization_model_part_process.h
Go to the documentation of this file.
1 // | / |
2 // ' / __| _` | __| _ \ __|
3 // . \ | ( | | ( |\__ \.
4 // _|\_\_| \__,_|\__|\___/ ____/
5 // Multi-Physics
6 //
7 // License: BSD License
8 // Kratos default license: kratos/license.txt
9 //
10 
11 #if !defined(KRATOS_NITSCHE_STABILIZATION_MODEL_PART_PROCESS_H_INCLUDED )
12 #define KRATOS_NITSCHE_STABILIZATION_MODEL_PART_PROCESS_H_INCLUDED
13 
14 // System includes
15 
16 // External includes
17 
18 // Project includes
19 #include "containers/model.h"
20 #include "includes/model_part.h"
21 #include "processes/process.h"
22 
23 // Application includes
25 
26 namespace Kratos
27 {
28 
31 
32 /* @class NitscheStabilizationModelPartProcess
33  * @ingroup IgaApplication
34  * @brief This class outputs the location of the quadrature points within the local space of the containing geometry. */
35 class KRATOS_API(IGA_APPLICATION) NitscheStabilizationModelPartProcess
36  : public Process
37 {
38 public:
41 
44 
45  typedef std::size_t IndexType;
46  typedef std::size_t SizeType;
47 
51 
54  ModelPart& rThisModelPart);
55 
58 
62 
63  void ExecuteInitialize() override;
64 
68 
70  std::string Info() const override
71  {
72  return "NitscheStabilizationModelPartProcess";
73  }
74 
76  void PrintInfo(std::ostream& rOStream) const override
77  {
78  rOStream << "NitscheStabilizationModelPartProcess";
79  }
80 
82  void PrintData(std::ostream& rOStream) const override
83  {
84  }
85 
86 private:
89 
91  ModelPart& mrThisModelPart;
92 
94 
95 }; // Class NitscheStabilizationModelPartProcess
96 
97 } // namespace Kratos.
98 
99 #endif // KRATOS_NITSCHE_STABILIZATION_MODEL_PART_PROCESS_H_INCLUDED defined
void ExecuteInitialize() override
Definition: periodic_interface_process.hpp:37
This class aims to manage meshes for multi-physics simulations.
Definition: model_part.h:77
Definition: nitsche_stabilization_model_part_process.h:37
void PrintData(std::ostream &rOStream) const override
Print object's data.
Definition: nitsche_stabilization_model_part_process.h:82
KRATOS_CLASS_POINTER_DEFINITION(NitscheStabilizationModelPartProcess)
Pointer definition of NitscheStabilizationModelPartProcess.
void PrintInfo(std::ostream &rOStream) const override
Print information about this object.
Definition: nitsche_stabilization_model_part_process.h:76
~NitscheStabilizationModelPartProcess()=default
Destructor.
std::size_t SizeType
Definition: nitsche_stabilization_model_part_process.h:46
std::string Info() const override
Turn back information as a string.
Definition: nitsche_stabilization_model_part_process.h:70
std::size_t IndexType
Definition: nitsche_stabilization_model_part_process.h:45
The base class for all processes in Kratos.
Definition: process.h:49
REF: G. R. Cowper, GAUSSIAN QUADRATURE FORMULAS FOR TRIANGLES.
Definition: mesh_condition.cpp:21