-
Notifications
You must be signed in to change notification settings - Fork 113
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
Add a Lax-Friedrichs-type entropy-stable dissipation operator and its specialization for multi-ion MHD #2204
Conversation
Review checklistThis checklist is meant to assist creators of PRs (to let them know what reviewers will typically look for) and reviewers (to guide them in a structured review process). Items do not need to be checked explicitly for a PR to be eligible for merging. Purpose and scope
Code quality
Documentation
Testing
Performance
Verification
Created with ❤️ by the Trixi.jl community. |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #2204 +/- ##
==========================================
+ Coverage 96.35% 96.36% +0.01%
==========================================
Files 485 485
Lines 38974 39075 +101
==========================================
+ Hits 37553 37654 +101
Misses 1421 1421
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
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.
I did not check the math
Co-authored-by: Hendrik Ranocha <[email protected]>
…-ion MHD initial condition to eltype(x)
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.
I like adding the generic wrapper for an ES dissipation term. I just posed a few questions and comments regarding the multi-ion version.
Co-authored-by: Andrew Winters <[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.
Thanks @amrueda ! The new comments are very helpful. I just left one small suggestion.
Co-authored-by: Andrew Winters <[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.
Cool stuff, I added some minor comments/suggestions regarding documentation.
4024f3d
to
9918a67
Compare
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.
LGTM! I already left a comment with my two cents in the discussion about documentation for flux_ec
.
From the Trixi Zoom meeting discussion - what about |
Maybe we also make use of |
As discussed: |
Co-authored-by: Daniel Doehring <[email protected]>
Sure, that sounds nice as well, but I was just trying to suggest a precise name with minimal additional changes. Since this dissipation is scalar (not a matrix dissipation in the sense of Roe, etc) and uses jumps of the entropy variables as opposed to conservative variables, maybe |
What about I think the use of the term "scalar" might be confusing for some users, as this flux can be used with non-scalar equations. I am not suggesting |
Co-authored-by: Michael Schlottke-Lakemper <[email protected]>
Co-authored-by: Hendrik Ranocha <[email protected]>
Co-authored-by: Joshua Lampert <[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.
Thanks!
This PR adds an entropy-stable dissipation operator
DissipationLaxFriedrichsEntropyVariables
and its specialization for multi-ion MHD.