Commutator-Free Lie Group integrators - #3806
Open
luke-a-thompson wants to merge 3 commits into
Open
luke-a-thompson wants to merge 3 commits into
luke-a-thompson wants to merge 3 commits into
Conversation
Fix LieRK4 stage evaluations to use the RK4 abscissae for nonautonomous operators. Add CFLie3 and CFLie4, with CFLie4 sharing the corrected LieRK4 implementation, and cover the methods with A(u,t) convergence tests.
Fix LieRK4 stage evaluations to use the RK4 abscissae for nonautonomous operators. Add CFLie3 and CFLie4, with CFLie4 sharing the corrected LieRK4 implementation, and cover the methods with A(u,t) convergence tests.
This was referenced Jun 30, 2026
Closed
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.
Background
Commutator-free Lie group integrators generalize Crouch-Grossman methods and can use fewer exponentials to achieve the same order.
The existing
LieRK4()implementation was already the fourth-order commutator-free method from Celledoni, Marthinsen, and Owren, "Commutator-free Lie group methods" for autonomous ODEs. The Lie group integrator context is also discussed in Celledoni, Marthinsen, and Owren, "An introduction to Lie group integrators".Changes
This PR adds one new commutator-free method and corrects an existing method.
CFLie3(), the third-order commutator-free scheme of Celledoni, Marthinsen, and Owren, with stage evaluations at the explicit non-autonomous time points.LieRK4()stage evaluations for non-autonomous problems by using the RK4 abscissae0,1/2,1/2, and1.CFLie4()as the explicit commutator-free name for the corrected fourth-orderLieRK4()implementation.A(u, t).OrdinaryDiffEqLinearREADME.The non-autonomous staging follows the standard explicit Runge-Kutta stage times and is consistent with the formulation used by Bazavov, "Commutator-free Lie group methods with minimum storage requirements and reuse of exponentials", section 2.1.
Updates to the published documentation page at https://docs.sciml.ai/DiffEqDocs/stable/solvers/nonautonomous_linear_ode/ may also be required.
Checklist
contributor guidelines,
in particular the SciML Style Guide
and ColPrac.
Additional Context
This supports ongoing work to enable homogeneous-space-valued CDE and RODE
integration.