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.
|
#include <numeric>
#include <sstream>
#include "includes/define.h"
#include "expression/unary_combine_expression.h"
#include "expression/unary_reshape_expression.h"
#include "expression/unary_slice_expression.h"
#include "expression/arithmetic_operators.h"
#include "container_expression.h"
Namespaces | |
Kratos | |
REF: G. R. Cowper, GAUSSIAN QUADRATURE FORMULAS FOR TRIANGLES. | |
Kratos::ContainerExpressionHelperUtilities | |
Macros | |
#define | KRATOS_DEFINE_BINARY_CONTAINER_EXPRESSION_OPERATOR(OPERATOR_NAME) |
#define | KRATOS_INSTANTIATE_BINARY_CONTAINER_EXPRESSION_OPERATOR( OPERATOR_NAME, CONTAINER_TYPE, MESH_TYPE) |
#define | KRATOS_INSTANTIATE_UNARY_CONTAINER_EXPRESSION_OPERATOR( OPERATOR_NAME, EXPRESSION_OPERATOR_NAME, CONTAINER_TYPE, MESH_TYPE) |
#define | KRATOS_INSTANTIATE_CONTAINER_EXPRESSION_OPERATOR_GROUP(CONTAINER_TYPE, MESH_TYPE) |
#define | KRATOS_INSTANTIATE_CONTAINER_EXPRESSION_OPERATOR_GROUP_CONTAINER_TYPE(CONTAINER_TYPE) |
Functions | |
template<MeshType TMeshType> | |
ModelPart::MeshType & | Kratos::ContainerExpressionHelperUtilities::GetMesh (ModelPart &rModelPart) |
template<> | |
ModelPart::MeshType & | Kratos::ContainerExpressionHelperUtilities::GetMesh< MeshType::Local > (ModelPart &rModelPart) |
template<> | |
ModelPart::MeshType & | Kratos::ContainerExpressionHelperUtilities::GetMesh< MeshType::Ghost > (ModelPart &rModelPart) |
template<> | |
ModelPart::MeshType & | Kratos::ContainerExpressionHelperUtilities::GetMesh< MeshType::Interface > (ModelPart &rModelPart) |
template<MeshType TMeshType> | |
const ModelPart::MeshType & | Kratos::ContainerExpressionHelperUtilities::GetMesh (const ModelPart &rModelPart) |
template<> | |
const ModelPart::MeshType & | Kratos::ContainerExpressionHelperUtilities::GetMesh< MeshType::Local > (const ModelPart &rModelPart) |
template<> | |
const ModelPart::MeshType & | Kratos::ContainerExpressionHelperUtilities::GetMesh< MeshType::Ghost > (const ModelPart &rModelPart) |
template<> | |
const ModelPart::MeshType & | Kratos::ContainerExpressionHelperUtilities::GetMesh< MeshType::Interface > (const ModelPart &rModelPart) |
template<class TContainerType > | |
TContainerType & | Kratos::ContainerExpressionHelperUtilities::GetContainer (ModelPart::MeshType &rMesh) |
template<> | |
ModelPart::NodesContainerType & | Kratos::ContainerExpressionHelperUtilities::GetContainer< ModelPart::NodesContainerType > (ModelPart::MeshType &rMesh) |
template<> | |
ModelPart::ConditionsContainerType & | Kratos::ContainerExpressionHelperUtilities::GetContainer< ModelPart::ConditionsContainerType > (ModelPart::MeshType &rMesh) |
template<> | |
ModelPart::ElementsContainerType & | Kratos::ContainerExpressionHelperUtilities::GetContainer< ModelPart::ElementsContainerType > (ModelPart::MeshType &rMesh) |
template<class TContainerType > | |
const TContainerType & | Kratos::ContainerExpressionHelperUtilities::GetContainer (const ModelPart::MeshType &rMesh) |
template<> | |
const ModelPart::NodesContainerType & | Kratos::ContainerExpressionHelperUtilities::GetContainer< ModelPart::NodesContainerType > (const ModelPart::MeshType &rMesh) |
template<> | |
const ModelPart::ConditionsContainerType & | Kratos::ContainerExpressionHelperUtilities::GetContainer< ModelPart::ConditionsContainerType > (const ModelPart::MeshType &rMesh) |
template<> | |
const ModelPart::ElementsContainerType & | Kratos::ContainerExpressionHelperUtilities::GetContainer< ModelPart::ElementsContainerType > (const ModelPart::MeshType &rMesh) |
#define KRATOS_DEFINE_BINARY_CONTAINER_EXPRESSION_OPERATOR | ( | OPERATOR_NAME | ) |
#define KRATOS_INSTANTIATE_BINARY_CONTAINER_EXPRESSION_OPERATOR | ( | OPERATOR_NAME, | |
CONTAINER_TYPE, | |||
MESH_TYPE | |||
) |
#define KRATOS_INSTANTIATE_CONTAINER_EXPRESSION_OPERATOR_GROUP | ( | CONTAINER_TYPE, | |
MESH_TYPE | |||
) |
#define KRATOS_INSTANTIATE_CONTAINER_EXPRESSION_OPERATOR_GROUP_CONTAINER_TYPE | ( | CONTAINER_TYPE | ) |
#define KRATOS_INSTANTIATE_UNARY_CONTAINER_EXPRESSION_OPERATOR | ( | OPERATOR_NAME, | |
EXPRESSION_OPERATOR_NAME, | |||
CONTAINER_TYPE, | |||
MESH_TYPE | |||
) |