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.
update_pressure_value_pfem_conditions_process.h
Go to the documentation of this file.
1 // | / |
2 // ' / __| _` | __| _ \ __|
3 // . \ | ( | | ( |\__ \.
4 // _|\_\_| \__,_|\__|\___/ ____/
5 // Multi-Physics FemDem Application
6 //
7 // License: BSD License
8 // Kratos default license:
9 // kratos/license.txt
10 //
11 // Main authors: Alejandro Cornejo Velazquez
12 //
13 
14 #if !defined(KRATOS_UPDATE_PRESSURE_VALUE_PFEM_CONDITIONS_PROCESS)
15 #define KRATOS_UPDATE_PRESSURE_VALUE_PFEM_CONDITIONS_PROCESS
16 
17 #include "processes/process.h"
19 #include "includes/define.h"
20 #include "includes/kratos_flags.h"
21 
22 namespace Kratos {
23 
24 typedef std::size_t SizeType;
25 
32 template <SizeType TDim = 3>
33 class KRATOS_API(FEM_TO_DEM_APPLICATION) UpdatePressureValuePfemConditionsProcess : public Process
34 {
35 
36 public:
39 
40  // Constructor
42 
43  // Destructor
45 
46  void operator()() { Execute(); }
47 
51  void Execute() override;
52 
53 
54 protected:
55  // Member Variables
57 
58 }; // Class
59 
60 } // namespace Kratos
61 #endif /* KRATOS_EXTEND_PRESSURE_PROCESS defined */
This class aims to manage meshes for multi-physics simulations.
Definition: model_part.h:77
The base class for all processes in Kratos.
Definition: process.h:49
Assigns the pressure value according to the nodal PRESSURE at this time step.
Definition: update_pressure_value_pfem_conditions_process.h:34
void operator()()
Definition: update_pressure_value_pfem_conditions_process.h:46
ModelPart & mrModelPart
Definition: update_pressure_value_pfem_conditions_process.h:56
KRATOS_CLASS_POINTER_DEFINITION(UpdatePressureValuePfemConditionsProcess)
Pointer definition of UpdatePressureValuePfemConditionsProcess.
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