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.
chimera_application.h
Go to the documentation of this file.
1 // | / |
2 // ' / __| _` | __| _ \ __|
3 // . \ | ( | | ( |\__ `
4 // _|\_\_| \__,_|\__|\___/ ____/
5 // Multi-Physics
6 //
7 //
8 // License: BSD License
9 // Kratos default license: kratos/license.txt
10 //
11 // Authors: Aditya Ghantasala, https://github.com/adityaghantasala
12 // Navaneeth K Narayanan
13 // Rishith Ellath Meethal
14 //
15 #if !defined(KRATOS_CHIMERA_APPLICATION_H_INCLUDED )
16 #define KRATOS_CHIMERA_APPLICATION_H_INCLUDED
17 
18 
19 // System includes
20 #include <string>
21 #include <iostream>
22 
23 
24 // External includes
25 
26 
27 // Project includes
28 #include "includes/define.h"
30 
31 
32 namespace Kratos {
33 
36 
40 
44 
48 
52 
54 
56 class KRATOS_API(CHIMERA_APPLICATION) KratosChimeraApplication : public KratosApplication {
57 public:
60 
61 
64 
68 
71 
73  ~KratosChimeraApplication() override = default;
74 
75 
79 
80 
84 
85  virtual void Register() override;
86 
87 
88 
92 
93 
97 
98 
102 
104  virtual std::string Info() const override{
105  return "KratosChimeraApplication";
106  }
107 
109  virtual void PrintInfo(std::ostream& rOStream) const override{
110  rOStream << Info();
111  PrintData(rOStream);
112  }
113 
115  virtual void PrintData(std::ostream& rOStream) const override{
116  rOStream << "Variables:" << std::endl;
118  rOStream << std::endl;
119  rOStream << "Elements:" << std::endl;
120  KratosComponents<Element>().PrintData(rOStream);
121  rOStream << std::endl;
122  rOStream << "Conditions:" << std::endl;
123  KratosComponents<Condition>().PrintData(rOStream);
124  }
125 
126 
130 
131 
133 
134 protected:
137 
138 
142 
143 
147 
148 
152 
153 
157 
158 
162 
163 
167 
168 
170 
171 private:
174 
175  // static const ApplicationCondition msApplicationCondition;
176 
180 
184 
185 
189 
190 
194 
195 
199 
200 
204 
207 
209  KratosChimeraApplication(KratosChimeraApplication const& rOther) = delete;
210 
211 
213 
214 }; // Class KratosChimeraApplication
215 
217 
218 
221 
222 
226 
228 
229 
230 } // namespace Kratos.
231 
232 #endif // KRATOS_CHIMERA_APPLICATION_H_INCLUDED defined
PeriodicInterfaceProcess & operator=(const PeriodicInterfaceProcess &)=delete
std::string Info() const override
Turn back information as a string.
Definition: periodic_interface_process.hpp:93
This class defines the interface with kernel for all applications in Kratos.
Definition: kratos_application.h:91
Short class definition.
Definition: chimera_application.h:56
~KratosChimeraApplication() override=default
Destructor.
KRATOS_CLASS_POINTER_DEFINITION(KratosChimeraApplication)
Pointer definition of KratosChimeraApplication.
virtual void PrintInfo(std::ostream &rOStream) const override
Print information about this object.
Definition: chimera_application.h:109
virtual void PrintData(std::ostream &rOStream) const override
Print object's data.
Definition: chimera_application.h:115
virtual std::string Info() const override
Turn back information as a string.
Definition: chimera_application.h:104
Definition: kratos_components.h:253
virtual void PrintData(std::ostream &rOStream) const
Print object's data.
Definition: kratos_components.h:403
REF: G. R. Cowper, GAUSSIAN QUADRATURE FORMULAS FOR TRIANGLES.
Definition: mesh_condition.cpp:21
KRATOS_API_EXTERN template class KratosComponents< Condition >
Definition: condition.h:1191
KRATOS_API_EXTERN template class KratosComponents< Element >
Definition: element.h:1240