-
Notifications
You must be signed in to change notification settings - Fork 248
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
[Fluid] Low Mach Navier-Stokes formulation #12955
Conversation
…w-mach-navier-stokes
…w-mach-navier-stokes
…w-mach-navier-stokes
// ConditionDataStruct data; | ||
|
||
// // Allocate memory needed | ||
// array_1d<double,MatrixSize> rhs_gauss; |
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.
this part is necessary?
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.
It is. I prefer it to leave it there for the eventual extension to unfitted mesh discretizations.
|
||
// // Struct to pass around the data | ||
// ConditionDataStruct data; | ||
// // Allocate memory needed |
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.
IDEM
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.
This is a boilerplate for the future implementation of the Neumann BCs.
|
||
double DynamicTau; // Dynamic tau considered in ASGS stabilization coefficients | ||
|
||
double bdf0; |
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.
are these member vars meant to be publi
c?
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.
Yes. Otherwise they wouldn't be accessible from the corresponding elements.
@sunethwarna @Igarizza |
Now it works 🤷♂️ |
📝 Description
This PR adds a low Mach approximation Navier-Stokes formulation (at this point a very first working implementation with room for improvement).