-
Notifications
You must be signed in to change notification settings - Fork 261
[IgaApplication] [FluidDynamicsApplication] pressure condition for IGA stokes fluids #13518
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
Conversation
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.
Minor comments
|
||
const auto& r_geometry = GetGeometry(); | ||
const SizeType number_of_nodes = r_geometry.size(); | ||
const GeometryType::ShapeFunctionsGradientsType& DN_De = r_geometry.ShapeFunctionsLocalGradients(r_geometry.GetDefaultIntegrationMethod()); |
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.
r_DN_De
|
||
KRATOS_ERROR_IF(mDim == 3) << "SupportPressureCondition is not implemented in 3D. Current dimension: " << mDim << std::endl; | ||
// Integration | ||
const GeometryType::IntegrationPointsArrayType& integration_points = r_geometry.IntegrationPoints(); |
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.
reference "r+..."
/// Create with Id, pointer to geometry and pointer to property | ||
Condition::Pointer Create( | ||
IndexType NewId, | ||
NodesArrayType const& ThisNodes, |
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.
reference nomenclature
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.
Looking forward for the next PR
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.
Nice work
📝 Description
Addition of the pressure condition, where we impose weakly the pressure and the normal stress (Neumann conditions).
The corresponding test has been added.