-
Notifications
You must be signed in to change notification settings - Fork 73
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
Clarification Needed on LES Extrapolation Warning and SGS Model Implementation #803
Comments
Hi, the warning in there refers to this: https://github.com/AMReX-Combustion/PeleC/blob/development/Source/Diffusion.cpp#L533 that may or may not be missing depending on that case. I think that (in most cases) we don't need it. And actually the diffusion source term doesn't have ghost cells. So my guess is that you can ignore it. For the other question, @bperry65 has used them more recently and can help. |
The capability to add additional transported variables is a bit convoluted unfortunately. Note AUX and ADV variables are essentially treated the same so it doesn't matter much which you use, and everything follows the same below regardless of which you use. This capability was most recently updated in #743, so you can check there for a bit more information, but not everything is documented. Here's a brief overview:
|
Thank you for the answers; I'll review the references. Do you have any reference books that can help me gain a more detailed understanding of the numerical modeling described in the solver? |
What aspect of the numerical modeling are you interested in references on? A lot of it builds on methods that have been built over time and documented in various papers, not sure if there is a good single textbook reference. For example, for Godunov/PPM stuff, you could start with this JCP https://www.sciencedirect.com/science/article/pii/S0021999108001435, but it may also be helpful to work backward through its references and forward through works that cite it. |
Hello,
I am working with LES and I would like to know specifically what this message means: 'WARNING -- Need to implement LES extrap here, see diffusion,' which appears in the getLESTerm method defined in LES.cpp. Could you please provide me with more information?
Additionally, I want to implement a one equation SGS model in LES. I have seen in the PeleC documentation, specifically in the equations section, that there are two advected quantities, Ak and Bk, that can be used. How can I enable their use in PeleC? How do I define them?
Thank you.
The text was updated successfully, but these errors were encountered: