-
Notifications
You must be signed in to change notification settings - Fork 247
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[StructApp] Adapting the StructuralMechanicsBossak scheme to rototational dofs #12869
base: master
Are you sure you want to change the base?
Changes from 7 commits
9c0e16c
261303c
2999b9d
cf081cd
7396068
ac24be8
dcb7c31
54b7fa8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||
---|---|---|---|---|---|---|---|---|
|
@@ -17,6 +17,8 @@ | |||||||
// External includes | ||||||||
|
||||||||
// Project includes | ||||||||
#include "includes/variables.h" | ||||||||
#include "structural_mechanics_application_variables.h" | ||||||||
#include "includes/cfd_variables.h" //TODO: For OSS_SWITCH (think about a better place for this variable) | ||||||||
#include "processes/calculate_nodal_area_process.h" | ||||||||
|
||||||||
|
@@ -54,6 +56,9 @@ class StructuralMechanicsBossakScheme | |||||||
/// Class type for the scheme | ||||||||
using ClassType = StructuralMechanicsBossakScheme<TSparseSpace, TDenseSpace>; | ||||||||
|
||||||||
/// Type for the dofs array within BossakBaseType | ||||||||
using DofsArrayType = typename BossakBaseType::DofsArrayType; | ||||||||
|
||||||||
/// Type for the system matrix within BossakBaseType | ||||||||
using TSystemMatrixType = typename BossakBaseType::TSystemMatrixType; | ||||||||
|
||||||||
|
@@ -63,6 +68,9 @@ class StructuralMechanicsBossakScheme | |||||||
/// Pointer type for the BaseType | ||||||||
using BaseTypePointer = typename BaseType::Pointer; | ||||||||
|
||||||||
/// Component type as 'double' | ||||||||
using ComponentType = double; | ||||||||
|
||||||||
///@} | ||||||||
///@name Life Cycle | ||||||||
///@{ | ||||||||
|
@@ -122,21 +130,191 @@ class StructuralMechanicsBossakScheme | |||||||
} | ||||||||
} | ||||||||
|
||||||||
void Predict( | ||||||||
ModelPart& rModelPart, | ||||||||
DofsArrayType& rDofSet, | ||||||||
TSystemMatrixType& rA, | ||||||||
TSystemVectorType& rDx, | ||||||||
TSystemVectorType& rb | ||||||||
) override | ||||||||
{ | ||||||||
KRATOS_TRY | ||||||||
|
||||||||
// Call the base Predict method | ||||||||
BossakBaseType::Predict(rModelPart, rDofSet, rA, rDx, rb); | ||||||||
|
||||||||
const ProcessInfo& r_current_process_info = rModelPart.GetProcessInfo(); | ||||||||
const double delta_time = r_current_process_info[DELTA_TIME]; | ||||||||
|
||||||||
// Updating angular time derivatives if they are available (nodally for efficiency) | ||||||||
if(rModelPart.HasNodalSolutionStepVariable(ROTATION)) | ||||||||
{ | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
const auto it_node_begin = rModelPart.Nodes().begin(); | ||||||||
|
||||||||
// Getting position | ||||||||
KRATOS_ERROR_IF_NOT(it_node_begin->HasDofFor(ROTATION_X)) << "StructuralMechanicsBossakScheme:: ROTATION is not added" << std::endl; | ||||||||
const int rot_pos = it_node_begin->GetDofPosition(ROTATION_X); | ||||||||
const int ang_vel_pos = it_node_begin->HasDofFor(ANGULAR_VELOCITY_X) ? static_cast<int>(it_node_begin->GetDofPosition(ANGULAR_VELOCITY_X)) : -1; | ||||||||
const int ang_acc_pos = it_node_begin->HasDofFor(ANGULAR_ACCELERATION_X) ? static_cast<int>(it_node_begin->GetDofPosition(ANGULAR_ACCELERATION_X)) : -1; | ||||||||
|
||||||||
// Getting dimension | ||||||||
const std::size_t dimension = r_current_process_info.Has(DOMAIN_SIZE) ? r_current_process_info.GetValue(DOMAIN_SIZE) : 3; | ||||||||
|
||||||||
//Auxiliar variable | ||||||||
array_1d<double, 3> delta_rotation; | ||||||||
std::array<bool, 3> predicted = {false, false, false}; | ||||||||
const std::array<const Variable<ComponentType>*, 3> rot_components = {&ROTATION_X, &ROTATION_Y, &ROTATION_Z}; | ||||||||
const std::array<const Variable<ComponentType>*, 3> ang_vel_components = {&ANGULAR_VELOCITY_X, &ANGULAR_VELOCITY_Y, &ANGULAR_VELOCITY_Z}; | ||||||||
const std::array<const Variable<ComponentType>*, 3> ang_acc_components = {&ANGULAR_ACCELERATION_X, &ANGULAR_ACCELERATION_Y, &ANGULAR_ACCELERATION_Z}; | ||||||||
|
||||||||
typedef std::tuple<array_1d<double,3>, std::array<bool,3>> TLSContainerType; | ||||||||
TLSContainerType aux_TLS = std::make_tuple(delta_rotation, predicted); | ||||||||
|
||||||||
block_for_each(rModelPart.Nodes(), aux_TLS, [&](Node& rNode, TLSContainerType& rAuxTLS){ | ||||||||
auto& r_delta_rotation = std::get<0>(rAuxTLS); | ||||||||
auto& r_predicted = std::get<1>(rAuxTLS); | ||||||||
|
||||||||
for (std::size_t i_dim = 0; i_dim < dimension; ++i_dim) { | ||||||||
r_predicted[i_dim] = false; | ||||||||
} | ||||||||
|
||||||||
//Predicting | ||||||||
const array_1d<double, 3>& r_previous_rotation = rNode.FastGetSolutionStepValue(ROTATION, 1); | ||||||||
const array_1d<double, 3>& r_previous_angular_velocity = rNode.FastGetSolutionStepValue(ANGULAR_VELOCITY, 1); | ||||||||
const array_1d<double, 3>& r_previous_angular_acceleration = rNode.FastGetSolutionStepValue(ANGULAR_ACCELERATION, 1); | ||||||||
array_1d<double, 3>& r_current_rotation = rNode.FastGetSolutionStepValue(ROTATION); | ||||||||
array_1d<double, 3>& r_current_angular_velocity = rNode.FastGetSolutionStepValue(ANGULAR_VELOCITY); | ||||||||
array_1d<double, 3>& r_current_angular_acceleration = rNode.FastGetSolutionStepValue(ANGULAR_ACCELERATION); | ||||||||
|
||||||||
if(ang_acc_pos > -1) { | ||||||||
for (std::size_t i_dim = 0; i_dim < dimension; ++i_dim) { | ||||||||
if (rNode.GetDof(*ang_acc_components[i_dim], ang_acc_pos + i_dim).IsFixed()) { | ||||||||
r_delta_rotation[i_dim] = (r_current_angular_acceleration[i_dim] + this->mBossak.c3 * r_previous_angular_acceleration[i_dim] + this->mBossak.c2 * r_previous_angular_velocity[i_dim])/(this->mBossak.c0); | ||||||||
r_current_rotation[i_dim] = r_previous_rotation[i_dim] + r_delta_rotation[i_dim]; | ||||||||
r_predicted[i_dim] = true; | ||||||||
} | ||||||||
} | ||||||||
} | ||||||||
if(ang_vel_pos > -1) { | ||||||||
for (std::size_t i_dim = 0; i_dim < dimension; ++i_dim) { | ||||||||
if (rNode.GetDof(*ang_vel_components[i_dim], ang_vel_pos + i_dim).IsFixed() && !r_predicted[i_dim]) { | ||||||||
r_delta_rotation[i_dim] = (r_current_angular_velocity[i_dim] + this->mBossak.c4 * r_previous_angular_velocity[i_dim] + this->mBossak.c5 * r_previous_angular_acceleration[i_dim])/(this->mBossak.c1); | ||||||||
r_current_rotation[i_dim] = r_previous_rotation[i_dim] + r_delta_rotation[i_dim]; | ||||||||
r_predicted[i_dim] = true; | ||||||||
} | ||||||||
} | ||||||||
} | ||||||||
for (std::size_t i_dim = 0; i_dim < dimension; ++i_dim) { | ||||||||
if (!rNode.GetDof(*rot_components[i_dim], rot_pos + i_dim).IsFixed()) { | ||||||||
r_current_rotation[i_dim] = r_previous_rotation[i_dim] + delta_time * r_previous_angular_velocity[i_dim] + 0.5 * std::pow(delta_time, 2) * r_previous_angular_acceleration[i_dim]; | ||||||||
} | ||||||||
} | ||||||||
|
||||||||
// Updating | ||||||||
noalias(r_delta_rotation) = r_current_rotation - r_previous_rotation; | ||||||||
UpdateAngularVelocity(r_current_angular_velocity, r_delta_rotation, r_previous_angular_velocity, r_previous_angular_acceleration); | ||||||||
UpdateAngularAcceleration(r_current_angular_acceleration, r_delta_rotation, r_previous_angular_velocity, r_previous_angular_acceleration); | ||||||||
|
||||||||
}); | ||||||||
} | ||||||||
|
||||||||
KRATOS_CATCH("") | ||||||||
} | ||||||||
|
||||||||
void Update( | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Doxygen |
||||||||
ModelPart& rModelPart, | ||||||||
DofsArrayType& rDofSet, | ||||||||
TSystemMatrixType& rA, | ||||||||
TSystemVectorType& rDx, | ||||||||
TSystemVectorType& rb | ||||||||
) override | ||||||||
{ | ||||||||
KRATOS_TRY | ||||||||
|
||||||||
// Call the base Update method | ||||||||
BossakBaseType::Update(rModelPart, rDofSet, rA, rDx, rb); | ||||||||
|
||||||||
// Updating angular time derivatives if they are available (nodally for efficiency) | ||||||||
if(rModelPart.HasNodalSolutionStepVariable(ROTATION)) | ||||||||
{ | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
block_for_each(rModelPart.Nodes(), array_1d<double,3>(), [&](Node& rNode, array_1d<double,3>& rDeltaRotationTLS){ | ||||||||
noalias(rDeltaRotationTLS) = rNode.FastGetSolutionStepValue(ROTATION) - rNode.FastGetSolutionStepValue(ROTATION, 1); | ||||||||
|
||||||||
array_1d<double, 3>& r_current_angular_velocity = rNode.FastGetSolutionStepValue(ANGULAR_VELOCITY); | ||||||||
const array_1d<double, 3>& r_previous_angular_velocity = rNode.FastGetSolutionStepValue(ANGULAR_VELOCITY, 1); | ||||||||
|
||||||||
array_1d<double, 3>& r_current_angular_acceleration = rNode.FastGetSolutionStepValue(ANGULAR_ACCELERATION); | ||||||||
const array_1d<double, 3>& r_previous_angular_acceleration = rNode.FastGetSolutionStepValue(ANGULAR_ACCELERATION, 1); | ||||||||
|
||||||||
UpdateAngularVelocity(r_current_angular_velocity, rDeltaRotationTLS, r_previous_angular_velocity, r_previous_angular_acceleration); | ||||||||
UpdateAngularAcceleration(r_current_angular_acceleration, rDeltaRotationTLS, r_previous_angular_velocity, r_previous_angular_acceleration); | ||||||||
}); | ||||||||
} | ||||||||
|
||||||||
KRATOS_CATCH("") | ||||||||
} | ||||||||
|
||||||||
void InitializeSolutionStep( | ||||||||
ModelPart &rModelPart, | ||||||||
TSystemMatrixType &A, | ||||||||
TSystemVectorType &Dx, | ||||||||
TSystemVectorType &b) override | ||||||||
{ | ||||||||
KRATOS_TRY | ||||||||
|
||||||||
// Call the base InitializeSolutionStep method | ||||||||
BossakBaseType::InitializeSolutionStep(rModelPart, A, Dx, b); | ||||||||
|
||||||||
// Update the NODAL_AREA (note that this strictly required only in the updated Lagrangian case) | ||||||||
// The current process info | ||||||||
const auto& r_current_process_info = rModelPart.GetProcessInfo(); | ||||||||
|
||||||||
// Updating angular time derivatives if they are available (nodally for efficiency) | ||||||||
if(rModelPart.HasNodalSolutionStepVariable(ROTATION)) | ||||||||
{ | ||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||
const auto it_node_begin = rModelPart.Nodes().begin(); | ||||||||
|
||||||||
// Getting dimension | ||||||||
const std::size_t dimension = r_current_process_info.Has(DOMAIN_SIZE) ? r_current_process_info.GetValue(DOMAIN_SIZE) : 3; | ||||||||
|
||||||||
// Getting position | ||||||||
const int angular_vel_pos = it_node_begin->HasDofFor(ANGULAR_VELOCITY_X) ? static_cast<int>(it_node_begin->GetDofPosition(ANGULAR_VELOCITY_X)) : -1; | ||||||||
const int angular_acc_pos = it_node_begin->HasDofFor(ANGULAR_ACCELERATION_X) ? static_cast<int>(it_node_begin->GetDofPosition(ANGULAR_ACCELERATION_X)) : -1; | ||||||||
|
||||||||
std::array<bool, 3> fixed = {false, false, false}; | ||||||||
const std::array<const Variable<ComponentType>*, 3> rot_components = {&ROTATION_X, &ROTATION_Y, &ROTATION_Z}; | ||||||||
const std::array<const Variable<ComponentType>*, 3> ang_vel_components = {&ANGULAR_VELOCITY_X, &ANGULAR_VELOCITY_Y, &ANGULAR_VELOCITY_Z}; | ||||||||
const std::array<const Variable<ComponentType>*, 3> ang_acc_components = {&ANGULAR_ACCELERATION_X, &ANGULAR_ACCELERATION_Y, &ANGULAR_ACCELERATION_Z}; | ||||||||
|
||||||||
block_for_each(rModelPart.Nodes(), fixed, [&](Node& rNode, std::array<bool,3>& rFixedTLS){ | ||||||||
for (std::size_t i_dim = 0; i_dim < dimension; ++i_dim) { | ||||||||
rFixedTLS[i_dim] = false; | ||||||||
} | ||||||||
|
||||||||
if (angular_acc_pos > -1) { | ||||||||
for (std::size_t i_dim = 0; i_dim < dimension; ++i_dim){ | ||||||||
if(rNode.GetDof(*ang_acc_components[i_dim], angular_acc_pos + i_dim).IsFixed()){ | ||||||||
rNode.Fix(*rot_components[i_dim]); | ||||||||
rFixedTLS[i_dim] = true; | ||||||||
} | ||||||||
} | ||||||||
} | ||||||||
if (angular_vel_pos > -1) { | ||||||||
for (std::size_t i_dim = 0; i_dim < dimension; ++i_dim){ | ||||||||
if(rNode.GetDof(*ang_vel_components[i_dim], angular_vel_pos + i_dim).IsFixed() && !rFixedTLS[i_dim]){ | ||||||||
rNode.Fix(*rot_components[i_dim]); | ||||||||
} | ||||||||
} | ||||||||
} | ||||||||
}); | ||||||||
} | ||||||||
|
||||||||
// Update the NODAL_AREA (note that this strictly required only in the updated Lagrangian case) | ||||||||
const bool oss_switch = r_current_process_info.Has(OSS_SWITCH) ? r_current_process_info[OSS_SWITCH] : false; | ||||||||
if (oss_switch && mUpdateNodalArea) { | ||||||||
CalculateNodalAreaProcess<false>(rModelPart).Execute(); | ||||||||
} | ||||||||
|
||||||||
KRATOS_CATCH("") | ||||||||
} | ||||||||
|
||||||||
void FinalizeNonLinIteration( | ||||||||
|
@@ -261,6 +439,26 @@ class StructuralMechanicsBossakScheme | |||||||
} | ||||||||
} | ||||||||
|
||||||||
inline void UpdateAngularVelocity( | ||||||||
array_1d<double, 3>& rCurrentAngularVelocity, | ||||||||
const array_1d<double, 3>& rDeltaRotation, | ||||||||
const array_1d<double, 3>& rPreviousAngularVelocity, | ||||||||
const array_1d<double, 3>& rPreviousAngularAcceleration | ||||||||
) | ||||||||
{ | ||||||||
noalias(rCurrentAngularVelocity) = (this->mBossak.c1 * rDeltaRotation - this->mBossak.c4 * rPreviousAngularVelocity - this->mBossak.c5 * rPreviousAngularAcceleration); | ||||||||
} | ||||||||
|
||||||||
inline void UpdateAngularAcceleration( | ||||||||
array_1d<double, 3>& rCurrentAngularAcceleration, | ||||||||
const array_1d<double, 3>& rDeltaRotation, | ||||||||
const array_1d<double, 3>& rPreviousAngularVelocity, | ||||||||
const array_1d<double, 3>& rPreviousAngularAcceleration | ||||||||
) | ||||||||
{ | ||||||||
noalias(rCurrentAngularAcceleration) = (this->mBossak.c0 * rDeltaRotation - this->mBossak.c2 * rPreviousAngularVelocity - this->mBossak.c3 * rPreviousAngularAcceleration); | ||||||||
} | ||||||||
|
||||||||
///@} | ||||||||
private: | ||||||||
///@name Private Member Variables | ||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doxygen