-
Notifications
You must be signed in to change notification settings - Fork 368
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
MLNodeABecLaplacian #3559
MLNodeABecLaplacian #3559
Conversation
927ed68
to
8922275
Compare
Add a new Linear Opearator class MLNodeABecLaplacian. It solves `(alpha * a - beta * (del dot b grad)) phi = rhs`, where a, phi and rhs are nodal MultiFabs and b is cell-centered. It works in 2D and 3D, CPU and GPU. So far it works only for single level. There is an example of using it at Tests/LinearSolvers/ABecLaplacian_C as prob_type=4. The test problem converges at the second order.
8922275
to
89f11cd
Compare
Ccache on windows is broken for unknown reasons. Maybe it will come back tomorrow. |
Co-authored-by: Andy Nonaka <[email protected]>
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.
Approve, as long as the failing CI build tests are actually not an issue.
We are having Windows CI issues because ccache no longer works. There is a PR to disable it. (#3566) The NVHPC issue might be due to disk space issue. |
In any case, I plan to merge this after the 23.10 release. |
Add a new Linear Opearator class MLNodeABecLaplacian. It solves `(alpha * a - beta * (del dot b grad)) phi = rhs`, where a, phi and rhs are nodal MultiFabs and b is cell-centered. It works in 2D and 3D, CPU and GPU. So far it works only for single level. There is an example of using it at Tests/LinearSolvers/ABecLaplacian_C as prob_type=4. The test problem converges at the second order. --------- Co-authored-by: Andy Nonaka <[email protected]>
Add a new Linear Opearator class MLNodeABecLaplacian.
It solves
(alpha * a - beta * (del dot b grad)) phi = rhs
, where a, phi and rhs are nodal MultiFabs and b is cell-centered.It works in 2D and 3D, CPU and GPU. So far it works only for single level.
There is an example of using it at Tests/LinearSolvers/ABecLaplacian_C as prob_type=4. The test problem converges at the second order.
Checklist
The proposed changes: