![]() |
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 <coordinate_transformation_utilities.h>
Public Member Functions | |
Life Cycle | |
CoordinateTransformationUtils (const unsigned int DomainSize, const unsigned int NumRowsPerNode, const Kratos::Flags &rSelectionFlag=SLIP) | |
Constructor. More... | |
virtual | ~CoordinateTransformationUtils () |
Destructor. More... | |
Operations | |
virtual void | CalculateRotationOperatorPure (TLocalMatrixType &rRotationMatrix, const GeometryType::PointType &rThisPoint) const |
Calculates rotation operator for given point. More... | |
void | LocalRotationOperatorPure (BoundedMatrix< double, 3, 3 > &rRot, const GeometryType::PointType &rThisPoint) const |
void | LocalRotationOperatorPure (BoundedMatrix< double, 2, 2 > &rRot, const GeometryType::PointType &rThisPoint) const |
virtual void | CalculateRotationOperatorPureShapeSensitivities (TLocalMatrixType &rRotationMatrixShapeDerivative, const std::size_t DerivativeNodeIndex, const std::size_t DerivativeDirectionIndex, const GeometryType::PointType &rThisPoint) const |
Calculates rotation nodal matrix shape sensitivities. More... | |
virtual void | CalculateRotationOperatorPureShapeSensitivities (BoundedMatrix< double, 2, 2 > &rOutput, const std::size_t DerivativeNodeIndex, const std::size_t DerivativeDirectionIndex, const GeometryType::PointType &rThisPoint) const |
Calculate 2d rotation nodal matrix shape sensitivities. More... | |
virtual void | CalculateRotationOperatorPureShapeSensitivities (BoundedMatrix< double, 3, 3 > &rOutput, const std::size_t DerivativeNodeIndex, const std::size_t DerivativeDirectionIndex, const GeometryType::PointType &rThisPoint) const |
Calculate 3d rotation nodal matrix shape sensitivities. More... | |
virtual void | Rotate (TLocalMatrixType &rLocalMatrix, TLocalVectorType &rLocalVector, GeometryType &rGeometry) const |
Rotate the local system contributions so that they are oriented with each node's normal. More... | |
virtual void | Rotate (TLocalVectorType &rLocalVector, GeometryType &rGeometry) const |
RHS only version of Rotate. More... | |
virtual void | ApplySlipCondition (TLocalMatrixType &rLocalMatrix, TLocalVectorType &rLocalVector, GeometryType &rGeometry) const |
Apply slip boundary conditions to the rotated local contributions. More... | |
virtual void | ApplySlipCondition (TLocalVectorType &rLocalVector, GeometryType &rGeometry) const |
RHS only version of ApplySlipCondition. More... | |
virtual void | RotateVelocities (ModelPart &rModelPart) const |
Transform nodal velocities to the rotated coordinates (aligned with each node's normal) More... | |
virtual void | RecoverVelocities (ModelPart &rModelPart) const |
Transform nodal velocities from the rotated system to the original one. More... | |
Input and output | |
virtual std::string | Info () const |
Turn back information as a string. More... | |
virtual void | PrintInfo (std::ostream &rOStream) const |
Print information about this object. More... | |
virtual void | PrintData (std::ostream &rOStream) const |
Print object's data. More... | |
Protected Member Functions | |
Protected Operations | |
template<unsigned int TDim, unsigned int TBlockSize, unsigned int TSkip = 0> | |
void | RotateAux (TLocalMatrixType &rLocalMatrix, TLocalVectorType &rLocalVector, GeometryType &rGeometry) const |
template<unsigned int TDim> | |
void | RotateAuxPure (TLocalMatrixType &rLocalMatrix, TLocalVectorType &rLocalVector, GeometryType &rGeometry) const |
template<unsigned int TBlockSize, unsigned int TSkip = 0> | |
void | LocalRotationOperator2D (BoundedMatrix< double, TBlockSize, TBlockSize > &rRot, GeometryType::PointType &rThisPoint) const |
template<unsigned int TBlockSize, unsigned int TSkip = 0> | |
void | LocalRotationOperator3D (BoundedMatrix< double, TBlockSize, TBlockSize > &rRot, GeometryType::PointType &rThisPoint) const |
bool | IsSlip (const Node &rNode) const |
template<class TVectorType > | |
double | Normalize (TVectorType &rThis) const |
Normalize a vector. More... | |
Protected Access | |
unsigned int | GetDomainSize () const |
unsigned int | GetBlockSize () const |
Type Definitions | |
typedef Node | NodeType |
typedef Geometry< Node > | GeometryType |
KRATOS_CLASS_POINTER_DEFINITION (CoordinateTransformationUtils) | |
Pointer definition of CoordinateTransformationUtils. More... | |
A utility to rotate the local contributions of certain nodes to the system matrix, which is required to apply slip conditions in arbitrary directions. TODO: Move code to source file. Use explicit template instantiation (this way the compilation is faster).
typedef Geometry< Node > Kratos::CoordinateTransformationUtils< TLocalMatrixType, TLocalVectorType, TValueType >::GeometryType |
typedef Node Kratos::CoordinateTransformationUtils< TLocalMatrixType, TLocalVectorType, TValueType >::NodeType |
|
inline |
Constructor.
DomainSize | Number of space dimensions (2 or 3) |
NumRowsPerNode | Number of matrix or vector rows associated to each node. Velocity DOFs are assumed to be the first mDomainSize rows in each block of rows. |
rSelectionFlag | All nodes where the flag given by this argument is set to true will be transformed to a rotated coordinate system. |
|
inlinevirtual |
Destructor.
|
inlinevirtual |
Apply slip boundary conditions to the rotated local contributions.
This function takes the local system contributions rotated so each node's velocities are expressed using a base oriented with its normal and imposes that the normal velocity is equal to the mesh velocity in the normal direction.
Reimplemented in Kratos::FlowRateSlipUtility< TLocalMatrixType, TLocalVectorType, TValueType >, Kratos::MPMBoundaryRotationUtility< TLocalMatrixType, TLocalVectorType >, Kratos::CompressibleElementRotationUtility< TLocalMatrixType, TLocalVectorType >, Kratos::FlowRateSlipUtility< LocalSystemMatrixType, LocalSystemVectorType, double >, and Kratos::MPMBoundaryRotationUtility< LocalSystemMatrixType, LocalSystemVectorType >.
|
inlinevirtual |
RHS only version of ApplySlipCondition.
Reimplemented in Kratos::FlowRateSlipUtility< TLocalMatrixType, TLocalVectorType, TValueType >, Kratos::MPMBoundaryRotationUtility< TLocalMatrixType, TLocalVectorType >, Kratos::CompressibleElementRotationUtility< TLocalMatrixType, TLocalVectorType >, Kratos::FlowRateSlipUtility< LocalSystemMatrixType, LocalSystemVectorType, double >, and Kratos::MPMBoundaryRotationUtility< LocalSystemMatrixType, LocalSystemVectorType >.
|
inlinevirtual |
Calculates rotation operator for given point.
This metod calculates rotation matrix for a given point. Nodal NORMAL variable should be assigned properly since rotation is calculated based on it.
rRotationMatrix | Output rotation matrix |
rThisPoint | Current node |
|
inlinevirtual |
Calculate 2d rotation nodal matrix shape sensitivities.
This method calculates shape sensitivities of 2D rotation matrix for given node. Nodal NORMAL(historical data container) and NORMAL_SHAPE_SENSITIVITY(non-historical data contaienr) variables should be properly initialized.
NORMAL_SHAPE_SENSITIVITY matrix should be properly sized and initialized with proper shape sensitivity values rows: (number_of_neighbour_nodes + 1) * 2 cols: 2
rOutput | Output shape sensitivities matrix w.r.t. NodeIndex and DerivativeIndex |
DerivativeNodeIndex | NodeIndex for which shape sensitivity matrix is computed |
DerivativeDirectionIndex | Direction index of the node for which shape sensitivity matrix is computed |
rThisPoint | Current node where rotation matrix shape sensitivities are required |
|
inlinevirtual |
Calculate 3d rotation nodal matrix shape sensitivities.
This method calculates shape sensitivities of 3D rotation matrix for given node. Nodal NORMAL(historical data container) and NORMAL_SHAPE_SENSITIVITY(non-historical data contaienr) variables should be properly initialized.
NORMAL_SHAPE_SENSITIVITY matrix should be properly sized and initialized with proper shape sensitivity values rows: (number_of_neighbour_nodes + 1) * 3 cols: 3
rOutput | Output shape sensitivities matrix w.r.t. NodeIndex and DerivativeIndex |
DerivativeNodeIndex | NodeIndex for which shape sensitivity matrix is computed |
DerivativeDirectionIndex | Direction index of the node for which shape sensitivity matrix is computed |
rThisPoint | Current node where rotation matrix shape sensitivities are required |
|
inlinevirtual |
Calculates rotation nodal matrix shape sensitivities.
This method calculates shape sensitivities of rotation matrix for given node. Nodal NORMAL(historical data container) and NORMAL_SHAPE_SENSITIVITY(non-historical data contaienr) variables should be properly initialized.
NORMAL_SHAPE_SENSITIVITY matrix should be properly sized and initialized with proper shape sensitivity values rows: number_of_nodes contributing to NORMAL * DOMAIN_SIZE, columns: DOMAIN_SIZE
rRotationMatrixShapeDerivative | Output shape sensitivities matrix w.r.t. NodeIndex and DerivativeIndex |
DerivativeNodeIndex | NodeIndex for which shape sensitivity matrix is computed |
DerivativeDirectionIndex | Direction index of the node for which shape sensitivity matrix is computed |
rThisPoint | Current node where rotation matrix shape sensitivities are required |
|
inlineprotected |
|
inlineprotected |
|
inlinevirtual |
Turn back information as a string.
Reimplemented in Kratos::FlowRateSlipUtility< TLocalMatrixType, TLocalVectorType, TValueType >, Kratos::FlowRateSlipUtility< LocalSystemMatrixType, LocalSystemVectorType, double >, Kratos::MPMBoundaryRotationUtility< TLocalMatrixType, TLocalVectorType >, Kratos::MPMBoundaryRotationUtility< LocalSystemMatrixType, LocalSystemVectorType >, and Kratos::CompressibleElementRotationUtility< TLocalMatrixType, TLocalVectorType >.
|
inlineprotected |
Kratos::CoordinateTransformationUtils< TLocalMatrixType, TLocalVectorType, TValueType >::KRATOS_CLASS_POINTER_DEFINITION | ( | CoordinateTransformationUtils< TLocalMatrixType, TLocalVectorType, TValueType > | ) |
Pointer definition of CoordinateTransformationUtils.
|
inlineprotected |
|
inlineprotected |
|
inline |
|
inline |
|
inlineprotected |
Normalize a vector.
rThis | the vector |
|
inlinevirtual |
|
inlinevirtual |
Print information about this object.
Reimplemented in Kratos::FlowRateSlipUtility< TLocalMatrixType, TLocalVectorType, TValueType >, Kratos::FlowRateSlipUtility< LocalSystemMatrixType, LocalSystemVectorType, double >, Kratos::MPMBoundaryRotationUtility< TLocalMatrixType, TLocalVectorType >, Kratos::MPMBoundaryRotationUtility< LocalSystemMatrixType, LocalSystemVectorType >, and Kratos::CompressibleElementRotationUtility< TLocalMatrixType, TLocalVectorType >.
|
inlinevirtual |
Transform nodal velocities from the rotated system to the original one.
Reimplemented in Kratos::FlowRateSlipUtility< TLocalMatrixType, TLocalVectorType, TValueType >, Kratos::FlowRateSlipUtility< LocalSystemMatrixType, LocalSystemVectorType, double >, Kratos::MPMBoundaryRotationUtility< TLocalMatrixType, TLocalVectorType >, Kratos::MPMBoundaryRotationUtility< LocalSystemMatrixType, LocalSystemVectorType >, and Kratos::CompressibleElementRotationUtility< TLocalMatrixType, TLocalVectorType >.
|
inlinevirtual |
Rotate the local system contributions so that they are oriented with each node's normal.
rLocalMatrix | Local system matrix |
rLocalVector | Local RHS vector |
rGeometry | A reference to the element's (or condition's) geometry |
Reimplemented in Kratos::MPMBoundaryRotationUtility< TLocalMatrixType, TLocalVectorType >, Kratos::CompressibleElementRotationUtility< TLocalMatrixType, TLocalVectorType >, and Kratos::MPMBoundaryRotationUtility< LocalSystemMatrixType, LocalSystemVectorType >.
|
inlinevirtual |
RHS only version of Rotate.
Reimplemented in Kratos::CompressibleElementRotationUtility< TLocalMatrixType, TLocalVectorType >.
|
inlineprotected |
|
inlineprotected |
|
inlinevirtual |
Transform nodal velocities to the rotated coordinates (aligned with each node's normal)
Reimplemented in Kratos::FlowRateSlipUtility< TLocalMatrixType, TLocalVectorType, TValueType >, Kratos::FlowRateSlipUtility< LocalSystemMatrixType, LocalSystemVectorType, double >, Kratos::MPMBoundaryRotationUtility< TLocalMatrixType, TLocalVectorType >, Kratos::MPMBoundaryRotationUtility< LocalSystemMatrixType, LocalSystemVectorType >, and Kratos::CompressibleElementRotationUtility< TLocalMatrixType, TLocalVectorType >.