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.
rans_nut_y_plus_wall_function_update_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 // Main authors: Suneth Warnakulasuriya
11 //
12 
13 #if !defined(KRATOS_RANS_NUT_Y_PLUS_WALL_FUNCTION_UPDATE_PROCESS_H_INCLUDED)
14 #define KRATOS_RANS_NUT_Y_PLUS_WALL_FUNCTION_UPDATE_PROCESS_H_INCLUDED
15 
16 // System includes
17 #include <string>
18 
19 // External includes
20 
21 // Project includes
22 #include "containers/model.h"
23 
24 // Application includes
26 
27 
28 namespace Kratos
29 {
32 
35 
36 class KRATOS_API(RANS_APPLICATION) RansNutYPlusWallFunctionUpdateProcess
38 {
39 public:
42 
45 
49 
51 
53  Model& rModel,
54  Parameters rParameters);
55 
57  Model& rModel,
58  const std::string& rModelPartName,
59  const double MinValue,
60  const int EchoLevel);
61 
64 
67 
70 
74 
75  int Check() override;
76 
77  void ExecuteInitialize() override;
78 
79  void ExecuteInitializeSolutionStep() override;
80 
81  void ExecuteAfterCouplingSolveStep() override;
82 
83  const Parameters GetDefaultParameters() const override;
84 
88 
90  std::string Info() const override;
91 
93  void PrintInfo(std::ostream& rOStream) const override;
94 
96  void PrintData(std::ostream& rOStream) const override;
97 
99 
100 private:
103 
104  Model& mrModel;
105  std::string mModelPartName;
106  double mMinValue;
107  int mEchoLevel;
108  bool mIsInitialized = false;
109 
111 
112 }; // Class RansNutYPlusWallFunctionUpdateProcess
113 
117 
119 inline std::ostream& operator<<(
120  std::ostream& rOStream,
122 
124 
126 
127 } // namespace Kratos.
128 
129 #endif // KRATOS_RANS_NUT_Y_PLUS_WALL_FUNCTION_UPDATE_PROCESS_H_INCLUDED defined
void ExecuteInitialize() override
Definition: periodic_interface_process.hpp:37
std::string Info() const override
Turn back information as a string.
Definition: periodic_interface_process.hpp:93
This class aims to manage different model parts across multi-physics simulations.
Definition: model.h:60
This class provides to Kratos a data structure for I/O based on the standard of JSON.
Definition: kratos_parameters.h:59
This class is extending standard Process interface.
Definition: rans_formulation_process.h:41
Definition: rans_nut_y_plus_wall_function_update_process.h:38
KRATOS_CLASS_POINTER_DEFINITION(RansNutYPlusWallFunctionUpdateProcess)
Pointer definition of RansNutYPlusWallFunctionUpdateProcess.
RansNutYPlusWallFunctionUpdateProcess & operator=(RansNutYPlusWallFunctionUpdateProcess const &rOther)=delete
Assignment operator.
~RansNutYPlusWallFunctionUpdateProcess() override=default
Destructor.
RansNutYPlusWallFunctionUpdateProcess(RansNutYPlusWallFunctionUpdateProcess const &rOther)=delete
Copy constructor.
static int EchoLevel
Definition: co_sim_EMPIRE_API.h:42
REF: G. R. Cowper, GAUSSIAN QUADRATURE FORMULAS FOR TRIANGLES.
Definition: mesh_condition.cpp:21
std::ostream & operator<<(std::ostream &rOStream, const LinearMasterSlaveConstraint &rThis)
output stream function
Definition: linear_master_slave_constraint.h:432