Refactor dimension-(in)dependent implementation of subcell limiting#2573
Merged
DanielDoehring merged 5 commits intotrixi-framework:mainfrom Sep 21, 2025
Merged
Conversation
Contributor
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 Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #2573 +/- ##
==========================================
- Coverage 96.76% 96.76% -0.00%
==========================================
Files 522 522
Lines 42473 42472 -1
==========================================
- Hits 41099 41098 -1
Misses 1374 1374
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
DanielDoehring
requested changes
Sep 20, 2025
DanielDoehring
requested changes
Sep 21, 2025
Member
DanielDoehring
left a comment
There was a problem hiding this comment.
I have just a few cosmetic comments
DanielDoehring
approved these changes
Sep 21, 2025
Contributor
Author
|
Thanks! @DanielDoehring |
sbairos
pushed a commit
to sbairos/Trixi.jl
that referenced
this pull request
Sep 26, 2025
…rixi-framework#2573) * Refactor dimension-dependent implementation of subcell limiting * Implement suggestions * Update src/solvers/dgsem_tree/subcell_limiters_2d.jl * Update src/solvers/dgsem_tree/subcell_limiters_2d.jl --------- Co-authored-by: Daniel Doehring <daniel.doehring@rwth-aachen.de> Co-authored-by: Daniel Doehring <doehringd2@gmail.com>
DanielDoehring
added a commit
to DanielDoehring/Trixi.jl
that referenced
this pull request
Feb 19, 2026
…rixi-framework#2573) * Refactor dimension-dependent implementation of subcell limiting * Implement suggestions * Update src/solvers/dgsem_tree/subcell_limiters_2d.jl * Update src/solvers/dgsem_tree/subcell_limiters_2d.jl --------- Co-authored-by: Daniel Doehring <daniel.doehring@rwth-aachen.de> Co-authored-by: Daniel Doehring <doehringd2@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
3D implementation of subcell limiting is coming in #2572 .
Some code in
subcell_limiters_2d.jlwas actually dimension independent. On the other hand, there was code that was specifically for 2D but was not marked or dispatch that way.