Segregated Runge–Kutta methods

From HandWiki
Short description: Family of Runge–Kutta methods to solve differential algebraic equations


The Segregated Runge–Kutta (SRK) method[1] is a family of IMplicit–EXplicit (IMEX) Runge–Kutta methods[2][3] that were developed to approximate the solution of differential algebraic equations (DAE) of index 2.

The SRK method were motivated as a numerical method for the time integration of the incompressible Navier–Stokes equations with two salient properties. First, velocity and pressure computations are segregated. Second, the method keeps the same order of accuracy for both velocities and pressures. However, the SRK method can also be applied to any other DAE of index 2.

The Segregated Runge–Kutta method

Consider an index 2 DAE defined as follows:

[math]\displaystyle{ \begin{align} \dot{y}(t)&=f(y(t),z(t)),\\ 0&=g(y(t)). \end{align} }[/math]
where [math]\displaystyle{ y(t)\in\R^n }[/math], [math]\displaystyle{ z(t)\in\R^m }[/math], [math]\displaystyle{ f:\R^{n+m}\to\R^n }[/math] and [math]\displaystyle{ g:\R^{n}\to\R^m. }[/math]

In the previous equations [math]\displaystyle{ y }[/math] is known as the differential variable, while [math]\displaystyle{ z }[/math] is known as the algebraic variable. The time derivative of the differential variable, [math]\displaystyle{ \dot{y} }[/math], depends on itself, [math]\displaystyle{ y }[/math], on the algebraic variable, [math]\displaystyle{ z }[/math], and on the time, [math]\displaystyle{ t }[/math]. The second equation can be seen as a constraint on differential variable, [math]\displaystyle{ y }[/math].

Let us take the time derivative of the second equation. Assuming that the function [math]\displaystyle{ g }[/math] is linear and does not depend on time, and that the function [math]\displaystyle{ f }[/math] is linear with respect to [math]\displaystyle{ z }[/math], we have that

[math]\displaystyle{ 0=\dot{g}(y)=g(\dot{y})=g(f(y,z))=g(f(y)+f(z))=g(f(y))+g(f(z))). }[/math]

A Runge–Kutta time integration scheme is defined as a multistage integration in which each stage is computed as a combination of the unknowns evaluated in other stages. Depending on the definition of the parameters, this combination can lead to an implicit scheme or an explicit scheme. Implicit and explicit schemes can be combined, leading to IMEX schemes.

Suppose that the function [math]\displaystyle{ f }[/math] can be split into two operators [math]\displaystyle{ \mathcal{F} }[/math] and [math]\displaystyle{ \mathcal{G} }[/math] such that

[math]\displaystyle{ \dot{y}(t)=\mathcal{F}(y(t))+\mathcal{G}(y(t),z(t)), }[/math]
where [math]\displaystyle{ \mathcal{F}(y(t)) }[/math] and [math]\displaystyle{ \mathcal{G}(y(t),z(t)) }[/math] are the terms to be treated implicitly and explicitly, respectively.

The SRK method is based on the use of IMEX Runge–Kutta schemes and can be defined by the following scheme:

Given a time step size [math]\displaystyle{ h \gt 0 }[/math], at a time [math]\displaystyle{ t_{n+1}=t_n+h }[/math],
for each Runge-Kutta stage [math]\displaystyle{ i }[/math], with [math]\displaystyle{ 0\le i\le s }[/math], solve:
1) [math]\displaystyle{ y_{i} = y_n +h\sum_{j=1}^{i}a_{ij}\mathcal{F}(y_j)+h\sum_{j=1}^{i-1}\hat{a}_{ij}\mathcal{G}(y_j,z_j), }[/math]
2) [math]\displaystyle{ g(f(z_i))=-g(f(y_i)) }[/math].
Update the variables at [math]\displaystyle{ t_{n+1} }[/math] solving:
3) [math]\displaystyle{ y_{n+1} = y_n +h\sum_{i=1}^{s}b_{i}\mathcal{F}(y_i)+h\sum_{i=1}^{s}\hat{b}_{i}\mathcal{G}(y_i,z_i), }[/math]
4) [math]\displaystyle{ g(f(z_{n+1}))=-g(f(y_{n+1})) }[/math].


References

  1. Colomés, Oriol; Badia, Santiago (3 February 2016). "Segregated Runge–Kutta methods for the incompressible Navier–Stokes equations". International Journal for Numerical Methods in Engineering 105 (5): 372–400. doi:10.1002/nme.4987. Bibcode2016IJNME.105..372C. 
  2. Ascher, Uri M.; Ruuth, Steven J.; Spiteri, Raymond J. (November 1997). "Implicit-explicit Runge-Kutta methods for time-dependent partial differential equations". Applied Numerical Mathematics 25 (2–3): 151–176. doi:10.1016/S0168-9274(97)00056-1. 
  3. Boscarino, Sebastiano (July 2009). "On an accurate third order implicit-explicit Runge–Kutta method for stiff problems". Applied Numerical Mathematics 59 (7): 1515–1528. doi:10.1016/j.apnum.2008.10.003.