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.
register_factories.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: Vicente Mataix Ferrandiz
11 //
12 
13 #if !defined(KRATOS_REGISTER_FACTORIES_H_INCLUDED )
14 #define KRATOS_REGISTER_FACTORIES_H_INCLUDED
15 
16 // System includes
17 
18 // External includes
19 
20 // Project includes
21 #include "includes/define.h"
22 #include "factories/factory.h"
25 #include "spaces/ublas_space.h"
26 
27 namespace Kratos
28 {
31 
32 typedef TUblasSparseSpace<double> SparseSpaceType;
34 
36 
38 
40 
41 void KRATOS_API(KRATOS_CORE) AddKratosComponent(std::string const& Name, ExplicitBuilderType const& ThisComponent);
42 
43 } // namespace Kratos.
44 
45 #endif // KRATOS_REGISTER_FACTORIES_H_INCLUDED defined
Current class provides an implementation for the base explicit builder and solving operations.
Definition: explicit_builder.h:68
KratosComponents class encapsulates a lookup table for a family of classes in a generic way.
Definition: kratos_components.h:49
A class template for handling data types, matrices, and vectors in a Ublas space.
Definition: ublas_space.h:121
#define KRATOS_API_EXTERN
Definition: kratos_export_api.h:57
#define KRATOS_API(...)
Definition: kratos_export_api.h:40
REF: G. R. Cowper, GAUSSIAN QUADRATURE FORMULAS FOR TRIANGLES.
Definition: mesh_condition.cpp:21
void AddKratosComponent(std::string const &Name, ExplicitBuilderType const &ThisComponent)
Definition: register_factories.cpp:23
TUblasSparseSpace< double > SparseSpaceType
Definition: linear_solver_factory.h:154
ExplicitBuilder< SparseSpaceType, LocalSpaceType > ExplicitBuilderType
Definition: register_factories.h:37
TUblasDenseSpace< double > LocalSpaceType
Definition: register_factories.h:33