-
Notifications
You must be signed in to change notification settings - Fork 112
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
fix failing DGMultiMesh
and Compressible Navier-Stokes convergence tests
#1728
fix failing DGMultiMesh
and Compressible Navier-Stokes convergence tests
#1728
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. |
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 a lot! There seems to be another instance: https://github.com/trixi-framework/Trixi.jl/actions/runs/6825685433/job/18564059148?pr=1728#step:7:5266
The formatting tests fails, too
Caught a few more instances of test failures. Lets wait to see how CI goes, and I'll ping you when tests pass agan |
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.
Great, thanks!
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## v0.6-dev #1728 +/- ##
=============================================
+ Coverage 67.32% 96.20% +28.88%
=============================================
Files 423 424 +1
Lines 34120 34246 +126
=============================================
+ Hits 22969 32945 +9976
+ Misses 11151 1301 -9850
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
DGMultiMesh
testDGMultiMesh
and Compressible Navier-Stokes convergence tests
Looks like the failing CNS tests were due to an issue with the formatting PR #1531. Some code in the convergence test source terms was removed! Trixi.jl/examples/tree_2d_dgsem/elixir_navierstokes_convergence.jl Lines 168 to 169 in 541a510
|
Great catch! Did you check the other NSE manufactured solution tests as well? And did you verify that the EOC is correct? I wonder if, for those elixirs with the elaborately formatted manufactured solution by @andrewwinters5000, we should just back the original code and put it in |
Hmm, it is odd to me that the formatter would straight-up delete code. That seems like a separate thing to worry about. The source term from a manufactured solution is almost always complicated with lots of terms (formatted or not). I admit the formatting on the working version of the convergence elixir is strange ( it looks nice in my old Fortran code I promise :) ), but keeping it for the sake of ease that the test pass works for me. |
I don't think the formatter did that, but the manual formatting, e.g., here. |
Thanks for catching that! All tests pass, I'll go ahead and merge this. |
Thanks a lot! |
…tests (#1728) * fix failing test * more fixes * formatting * fix dropped part of source terms * fix p4est parabolic
…tests (#1728) (#1732) * fix failing test * more fixes * formatting * fix dropped part of source terms * fix p4est parabolic Co-authored-by: Jesse Chan <[email protected]>
See #1708 (comment).
Also #1709 and #1708