Multirate: add MRI-GARK-ERK45a (4th-order explicit)#3751
Open
singhharsh1708 wants to merge 2 commits into
Open
Multirate: add MRI-GARK-ERK45a (4th-order explicit)#3751singhharsh1708 wants to merge 2 commits into
singhharsh1708 wants to merge 2 commits into
Conversation
added 2 commits
June 13, 2026 00:21
Adds the 3rd-order explicit MRI-GARK method of Sandu 2019 (coefficients from SUNDIALS). Unifies all MRI-GARK methods onto one general formulation: per-stage sub-interval (Δc) integration with τ-dependent coupling ω=W0+W1·τ and an explicit RK inner solver (RK2 for ERK22a/b, RK3 for ERK33a), with an embedded lower-order error estimate. Convergence verified: ERK22a/b order 2, ERK33a order 3 (IIP + OOP). Bump 2.3.0 -> 2.4.0.
Adds the 4th-order explicit MRI-GARK method of Sandu 2019 (coefficients from SUNDIALS) — completing the explicit MRI-GARK family (orders 2/3/4) in the unified formulation. Adds an RK4 inner path (q=4) and a τ-dependent embedded coupling (Wemb0+Wemb1·τ) for the order-3 error estimate. Convergence verified: order 4 (IIP + OOP). Bump 2.4.0 -> 2.5.0.
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.
Stacked on #3747 — the first commit in this PR is #3747 (ERK33a + the unified MRI-GARK formulation); please review that one first. Once #3747 merges, this rebases down to a single ERK45a commit.
Adds MRIGARKERK45a, the 4th-order explicit MRI-GARK method of Sandu 2019, completing the explicit MRI-GARK family (orders 2/3/4) in the unified W-form. Coefficients transcribed from SUNDIALS ARKODE.
What it needed
The general formulation from #3747 already supported it — only two small additions:
q = 4) in the substage integrator.Wemb0 + Wemb1·τ) — ERK45a's embedding row has linear-in-τ terms, unlike ERK33a's constant one — for the order-3 error estimate.5 fast stages (Δc = 1/5 each). Demonstrates the framework generalizes: higher orders drop in as a new tableau + inner order.
Tests
Convergence verified — order 4 (IIP + OOP); full multirate suite green (MRI-GARK 28 tests). Version 2.4.0 → 2.5.0.