Strang splitting

From testwiki
Jump to navigation Jump to search

Template:Short description In applied mathematics Strang splitting is a numerical method for solving differential equations that are decomposable into a sum of differential operators. It is named after Gilbert Strang. It is used to speed up calculation for problems involving operators on very different time scales, for example, chemical reactions in fluid dynamics, and to solve multidimensional partial differential equations by reducing them to a sum of one-dimensional problems.

Fractional step methods

As a precursor to Strang splitting, consider a differential equation of the form

dydt=L1(y)+L2(y)

where L1, L2 are differential operators. If L1 and L2 were constant coefficient matrices, then the exact solution to the associated initial value problem would be

y(t)=e(L1+L2)ty0.

If L1 and L2 commute, then by the exponential laws this is equivalent to

y(t)=eL1teL2ty0.

If they do not, then by the Baker–Campbell–Hausdorff formula it is still possible to replace the exponential of the sum by a product of exponentials at the cost of a second order error:

e(L1+L2)ty0=eL1teL2ty0+𝒪(t2).

This gives rise to a numerical scheme where one, instead of solving the original initial problem, solves both subproblems alternating:

y~1=eL1Δty0
y1=eL2Δty~1
y~2=eL1Δty1
y2=eL2Δty~2
etc.

In this context, eL1Δt is a numerical scheme solving the subproblem

dydt=L1(y)

to first order. The approach is not restricted to linear problems, that is, L1 can be any differential operator.

Strang splitting

Strang splitting extends this approach to second order by choosing another order of operations. Instead of taking full time steps with each operator, instead, one performs time steps as follows:

y~1=eL1Δt2y0
y¯1=eL2Δty~1
y1=eL1Δt2y¯1
y~2=eL1Δt2y1
y¯2=eL2Δty~2
y2=eL1Δt2y¯2
etc.

One can prove that Strang splitting is second order by using either the Baker-Campbell-Hausdorff formula, Rooted tree analysis or a direct comparison of the error terms using Taylor expansion. For the scheme to be second order accurate, e must be a second order approximation to the solution operator as well.

See also

References