"Composition" and "Splitting" Methods for NDSolve

Introduction

In some cases it is useful to split the differential system into subsystems and solve each subsystem using appropriate integration methods. Recombining the individual solutions often allows certain dynamical properties, such as volume, to be conserved. More information on splitting and composition can be found in [MQ02, HLW02], and specific aspects related to NDSolve are discussed in [SS05, SS06].

Definitions

Of concern are initial value problems , where .

"Composition"

Composition is a useful device for raising the order of a numerical integration scheme.

In contrast to the AitkenNeville algorithm used in extrapolation, composition can conserve geometric properties of the base integration method (e.g. symplecticity).

Let be a basic integration method that takes a step of size with given real numbers.

Then the -stage composition method is given by

Often interest is in composition methods that involve the same base method

An interesting special case is symmetric composition: , .

The most common types of composition are:

"Splitting"

An -stage splitting method is a generalization of a composition method in which is broken up in an additive fashion:

The essential point is that there can often be computational advantages in solving problems involving instead of .

An -stage splitting method is a composition of the form

with not necessarily distinct.

Each base integration method now only solves part of the problem, but a suitable composition can still give rise to a numerical scheme with advantageous properties.

If the vector field is integrable, then the exact solution or flow can be used in place of a numerical integration method.

A splitting method may also use a mixture of flows and numerical methods.

An example is LieTrotter splitting [T59]:

Split with ; then yields a first-order integration method.

Computationally it can be advantageous to combine flows using the group property

Implementation

Several changes to the new NDSolve framework were needed in order to implement splitting and composition methods.

Nested Methods

The following example constructs a high-order splitting method from a low-order splitting using "Composition".

NDSolve

Simplification

A more efficient integrator can be obtained in the previous example using the group property of flows and calling the "Splitting" method directly.

NDSolve

Examples

The following examples will use a second-order symmetric splitting known as the Strang splitting [S68], [M68]. The splitting coefficients are automatically determined from the structure of the equations.

Load a package with some useful example problems:
This defines a method known as symplectic leapfrog in terms of the method "SymplecticPartitionedRungeKutta":

Symplectic Splitting

Symplectic Leapfrog

"SymplecticPartitionedRungeKutta" is an efficient method for solving separable Hamiltonian systems with favorable long-time dynamics.

"Splitting" is a more general-purpose method, but it can be used to construct partitioned symplectic methods (though it is somewhat less efficient than "SymplecticPartitionedRungeKutta").

Consider the harmonic oscillator that arises from a linear differential system that is governed by the separable Hamiltonian :
Split the Hamiltonian vector field into independent components governing momentum and position. This is done by setting the relevant right-hand sides of the equations to zero:
This composition of weighted (first-order) Euler integration steps corresponds to the symplectic (second-order) leapfrog method:

The method "ExplicitEuler" could only have been specified once, since the second and third instances would have been filled in cyclically.

This is the result at the end of the integration step:
This invokes the built-in integration method corresponding to the symplectic leapfrog integrator:
The result at the end of the integration step is identical to the result of the splitting method:

Composition of Symplectic Leapfrog

This takes the symplectic leapfrog scheme as the base integration method and constructs a fourth-order symplectic integrator using a symmetric composition of RuthYoshida [Y90]:
This is the result at the end of the integration step:
This invokes the built-in symplectic integration method using coefficients for the fourth-order methods of Ruth and Yoshida:
The result at the end of the integration step is identical to the result of the composition method:

Hybrid Methods

While a closed-form solution often does not exist for the entire vector field, in some cases it is possible to analytically solve a system of differential equations for part of the vector field.

When a solution can be found by DSolve, direct numerical evaluation can be used to locally advance the solution.

This idea is implemented in the method "LocallyExact".

Harmonic Oscillator Test Example

This example checks that the solution for the exact flows of split components of the harmonic oscillator equations is the same as applying Euler's method to each of the split components:

Hybrid Numeric-Symbolic Splitting Methods (ABC Flow)

Consider the Arnold, Beltrami, and Childress flow, a widely studied model for volume-preserving three-dimensional flows:

When applied directly, a volume-preserving integrator would not in general preserve symmetries. A symmetry-preserving integrator, such as the implicit midpoint rule, would not preserve volume.

This defines a splitting of the system by setting some of the right-hand side components to zero:

The system for Y2 is solvable exactly by DSolve so that you can use the "LocallyExact" method.

Y1 is not solvable, however, so you need to use a suitable numerical integrator in order to obtain the desired properties in the splitting method.

This defines a method for computing the implicit midpoint rule in terms of the built-in "ImplicitRungeKutta" method:
This defines a second-order, volume-preserving, reversing symmetry-group integrator [MQ02]:

LotkaVolterra Equations

Various numerical integrators for this system are compared within "Numerical Methods for Solving the LotkaVolterra Equations".

Euler's Equations

Various numerical integrators for Euler's equations are compared within "Rigid Body Solvers".

Non-Autonomous Vector Fields

Consider the Duffing oscillator, a forced planar non-autonomous differential system:
This defines a splitting of the system:
The splitting of the time component among the vector fields is ambiguous, so the method issues an error message:
The equations can be extended by introducing a new "dummy" variable Z[T] such that Z[T]==T and specifying how it should be distributed in the split differential systems:
This defines a geometric splitting method that satisfies for any finite time interval, where and are the Lyapunov exponents [MQ02]:
Here is a plot of the solution:

Option Summary

The default coefficient choice in "Composition" tries to automatically select between "SymmetricCompositionCoefficients" and "SymmetricCompositionSymmetricMethodCoefficients" depending on the properties of the methods specified using the Method option.

option name
default value
"Coefficients"Automaticspecify the coefficients to use in the composition method
"DifferenceOrder"Automaticspecify the order of local accuracy of the method
MethodNonespecify the base methods to use in the numerical integration

Options of the method "Composition".

option name
default value
"Coefficients"{}specify the coefficients to use in the splitting method
"DifferenceOrder"Automaticspecify the order of local accuracy of the method
"Equations"{}specify the way in which the equations should be split
MethodNonespecify the base methods to use in the numerical integration

Options of the method "Splitting".