Multisymplectic integrator

From HandWiki

In mathematics, a multisymplectic integrator is a numerical method for the solution of a certain class of partial differential equations, that are said to be multisymplectic. Multisymplectic integrators are geometric integrators, meaning that they preserve the geometry of the problems; in particular, the numerical method preserves energy and momentum in some sense, similar to the partial differential equation itself. Examples of multisymplectic integrators include the Euler box scheme and the Preissman box scheme.

Multisymplectic equations

A partial differential equation (PDE) is said to be a multisymplectic equation if it can be written in the form

[math]\displaystyle{ Kz_t + Lz_x = \nabla S(z), }[/math]

where [math]\displaystyle{ z(t,x) }[/math] is the unknown, [math]\displaystyle{ K }[/math] and [math]\displaystyle{ L }[/math] are (constant) skew-symmetric matrices and [math]\displaystyle{ \nabla S }[/math] denotes the gradient of [math]\displaystyle{ S }[/math].[1] This is a natural generalization of [math]\displaystyle{ Jz_t = \nabla H(z) }[/math], the form of a Hamiltonian ODE.[2]

Examples of multisymplectic PDEs include the nonlinear Klein–Gordon equation [math]\displaystyle{ u_{tt} - u_{xx} = V'(u) }[/math], or more generally the nonlinear wave equation [math]\displaystyle{ u_{tt} = \partial_x \sigma'(u_x) - f'(u) }[/math],[3] and the KdV equation [math]\displaystyle{ u_t + uu_x + u_{xxx} = 0 }[/math].[4]

Define the 2-forms [math]\displaystyle{ \omega }[/math] and [math]\displaystyle{ \kappa }[/math] by

[math]\displaystyle{ \omega(u,v) = \langle Ku, v \rangle \quad\text{and}\quad \kappa(u,v) = \langle Lu, v \rangle }[/math]

where [math]\displaystyle{ \langle \,\cdot\, , \,\cdot\, \rangle }[/math] denotes the dot product. The differential equation preserves symplecticity in the sense that

[math]\displaystyle{ \partial_t \omega + \partial_x \kappa = 0. }[/math][5]

Taking the dot product of the PDE with [math]\displaystyle{ u_t }[/math] yields the local conservation law for energy:

[math]\displaystyle{ \partial_t E(u) + \partial_x F(u) = 0 \quad\text{where}\quad E(u) = S(u) - \tfrac12 \kappa(u_x,u) ,\, F(u) = \tfrac12 \kappa(u_t,u). }[/math][6]

The local conservation law for momentum is derived similarly:

[math]\displaystyle{ \partial_t I(u) + \partial_x G(u) = 0 \quad\text{where}\quad I(u) = \tfrac12 \omega(u_x,u) ,\, G(u) = S(u) - \tfrac12 \omega(u_t,u). }[/math][6]

The Euler box scheme

A multisymplectic integrator is a numerical method for solving multisymplectic PDEs whose numerical solution conserves a discrete form of symplecticity.[7] One example is the Euler box scheme, which is derived by applying the symplectic Euler method to each independent variable.[8]

The Euler box scheme uses a splitting of the skewsymmetric matrices [math]\displaystyle{ K }[/math] and [math]\displaystyle{ L }[/math] of the form:

[math]\displaystyle{ \begin{align} K &= K_+ + K_- \quad\text{with}\quad K_- = -K_+^T, \\ L &= L_+ + L_- \quad\text{with}\quad L_- = -L_+^T. \end{align} }[/math]

For instance, one can take [math]\displaystyle{ K_+ }[/math] and [math]\displaystyle{ L_+ }[/math] to be the upper triangular part of [math]\displaystyle{ K }[/math] and [math]\displaystyle{ L }[/math], respectively.[9]

Now introduce a uniform grid and let [math]\displaystyle{ u_{n,i} }[/math] denote the approximation to [math]\displaystyle{ u(n\Delta{t}, i\Delta{x}) }[/math] where [math]\displaystyle{ \Delta{t} }[/math] and [math]\displaystyle{ \Delta{x} }[/math] are the grid spacing in the time- and space-direction. Then the Euler box scheme is

[math]\displaystyle{ K_+ \partial_t^+ u_{n,i} + K_- \partial_t^- u_{n,i} + L_+ \partial_x^+ u_{n,i} + L_- \partial_x^- u_{n,i} = \nabla{S}(u_{n,i}) }[/math]

where the finite difference operators are defined by

[math]\displaystyle{ \begin{align} \partial_t^+ u_{n,i} &= \frac{u_{n+1,i} - u_{n,i}}{\Delta{t}}, & \partial_x^+ u_{n,i} &= \frac{u_{n,i+1} - u_{n,i}}{\Delta{x}}, \\[1ex] \partial_t^- u_{n,i} &= \frac{u_{n,i} - u_{n-1,i}}{\Delta{t}}, & \partial_x^- u_{n,i} &= \frac{u_{n,i} - u_{n,i-1}}{\Delta{x}}. \end{align} }[/math] [10]

The Euler box scheme is a first-order method,[8] which satisfies the discrete conservation law

[math]\displaystyle{ \partial_t^+ \omega_{n,i} + \partial_x^+ \kappa_{n,i} = 0 \quad\text{where}\quad \omega_{n,i} = \mathrm{d}u_{n,i-1} \wedge K_+ \, \mathrm{d}u_{n,i} \quad\text{and}\quad \kappa_{n,i} = \mathrm{d}u_{n-1,i} \wedge L_+ \, \mathrm{d}u_{n,i}. }[/math][11]

Preissman box scheme

Another multisymplectic integrator is the Preissman box scheme, which was introduced by Preissman in the context of hyperbolic PDEs.[12] It is also known as the centred cell scheme.[13] The Preissman box scheme can be derived by applying the Implicit midpoint rule, which is a symplectic integrator, to each of the independent variables.[14] This leads to the scheme

[math]\displaystyle{ K \partial_t^+ u_{n,i+1/2} + L \partial_x^+ u_{n+1/2,i} = \nabla{S}(u_{n+1/2,i+1/2}), }[/math]

where the finite difference operators [math]\displaystyle{ \partial_t^+ }[/math] and [math]\displaystyle{ \partial_x^+ }[/math] are defined as above and the values at the half-integers are defined by

[math]\displaystyle{ u_{n,i+1/2} = \frac{u_{n,i}+u_{n,i+1}}{2}, \quad u_{n+1/2,i} = \frac{u_{n,i}+u_{n+1,i}}{2}, u_{n+1/2,i+1/2} = \frac{u_{n,i}+u_{n,i+1}+u_{n+1,i}+u_{n+1,i+1}}{4}. }[/math] [14]

The Preissman box scheme is a second-order multisymplectic integrator which satisfies the discrete conservation law

[math]\displaystyle{ \partial_t^+ \omega_{n,i} + \partial_x^+ \kappa_{n,i} = 0 \quad\text{where}\quad \omega_{n,i} = \mathrm{d}u_{n,i+1/2} \wedge K \, \mathrm{d}u_{n,i+1/2} \quad\text{and}\quad \kappa_{n,i} = \mathrm{d}u_{n+1/2,i} \wedge L \, \mathrm{d}u_{n+1/2,i}. }[/math][15]

Notes

References