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_nodal_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_NODAL_UPDATE_PROCESS_H_INCLUDED)
14 #define KRATOS_RANS_NUT_NODAL_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 namespace Kratos
28 {
31 
34 
45 class KRATOS_API(RANS_APPLICATION) RansNutNodalUpdateProcess
47 {
48 public:
51 
54 
58 
60 
62  Model& rModel,
63  Parameters rParameters);
64 
66  Model& rModel,
67  const std::string& rModelPartName,
68  const int EchoLevel);
69 
71  ~RansNutNodalUpdateProcess() override = default;
72 
75 
78 
82 
83  int Check() override;
84 
85  void ExecuteInitializeSolutionStep() override;
86 
87  void ExecuteAfterCouplingSolveStep() override;
88 
89  const Parameters GetDefaultParameters() const override;
90 
94 
96  std::string Info() const override;
97 
99  void PrintInfo(std::ostream& rOStream) const override;
100 
102  void PrintData(std::ostream& rOStream) const override;
103 
105 
106 private:
109 
110  Model& mrModel;
111  std::string mModelPartName;
112  int mEchoLevel;
113  bool mIsInitialized = false;
114 
116 
117 }; // Class RansNutNodalUpdateProcess
118 
122 
124 inline std::ostream& operator<<(
125  std::ostream& rOStream,
126  const RansNutNodalUpdateProcess& rThis);
127 
129 
131 
132 } // namespace Kratos.
133 
134 #endif // KRATOS_RANS_NUT_K_EPSILON_HIGH_RE_UPDATE_PROCESS_H_INCLUDED defined
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
Updates nodal VISCOSITY.
Definition: rans_nut_nodal_update_process.h:47
~RansNutNodalUpdateProcess() override=default
Destructor.
RansNutNodalUpdateProcess & operator=(RansNutNodalUpdateProcess const &rOther)=delete
Assignment operator.
KRATOS_CLASS_POINTER_DEFINITION(RansNutNodalUpdateProcess)
Pointer definition of RansNutNodalUpdateProcess.
RansNutNodalUpdateProcess(RansNutNodalUpdateProcess 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