-
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?
Conversation
if(rModelPart.HasNodalSolutionStepVariable(ROTATION)) | ||
{ |
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.
if(rModelPart.HasNodalSolutionStepVariable(ROTATION)) | |
{ | |
if(rModelPart.HasNodalSolutionStepVariable(ROTATION)) { |
if(rModelPart.HasNodalSolutionStepVariable(ROTATION)) | ||
{ |
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.
if(rModelPart.HasNodalSolutionStepVariable(ROTATION)) | |
{ | |
if(rModelPart.HasNodalSolutionStepVariable(ROTATION)) { |
KRATOS_CATCH("") | ||
} | ||
|
||
void Update( |
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
@@ -122,21 +130,191 @@ class StructuralMechanicsBossakScheme | |||
} | |||
} | |||
|
|||
void Predict( |
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
if(rModelPart.HasNodalSolutionStepVariable(ROTATION)) | ||
{ |
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.
if(rModelPart.HasNodalSolutionStepVariable(ROTATION)) | |
{ | |
if(rModelPart.HasNodalSolutionStepVariable(ROTATION)) { |
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.
Some comments
@RiccardoRossi FYI |
📝 Description
Current situation:
The current implementation of
StructuralMechanicsBossakScheme
does not update the angular time derivativesANGULAR_VELOCITY
andANGULAR_ACCELERATION
.This PR adapts the
StructuralMechanicsBossakScheme
to allow transient simulations of structures containing elements with rotational dofs. Therefore the methodsPredict
,Update
andInitializeSolutionStep
are extended. The extended implementations are analogous to those of the base methods in theResidualBasedBossakDisplacementScheme
, whereby the corresponding degrees of freedom are replaced by their angular counterparts.🆕 Changelog
StructuralMechanicsBossakScheme::Update
method to updateANGULAR_VELOCITY
andANGULAR_ACCELERATION
dofsStructuralMechanicsBossakScheme::Predict
method to predict theROTATION
dofStructuralMechanicsBossakScheme::InitializeSolutionStep
method to fix the dofs consistently