Discrete Poisson equation

Discrete Poisson equation

In mathematics, the discrete Poisson equation is the finite difference analog of the Poisson equation. In it, the discrete Laplace operator takes the place of the Laplace operator. The discrete Poisson equation is frequently used in numerical analysis as a stand-in for the continuous Poisson equation, although it is also studied in its own right as a topic in discrete mathematics.

Contents

On a two-dimensional rectangular grid

Using the finite difference numerical method to discretize the 2 dimensional Poisson equation (assuming a uniform spatial discretization, \partial x=\partial y) on an m × n grid gives the following formula:[1]


( {\nabla}^2 u )_{ij} = \frac{1}{dx^2} ( u_{i+1,j} +  u_{i-1,j} +  u_{i,j+1} +  u_{i,j-1} - 4 u_{ij}) = g_{ij}

where  2 \le i \le m-1 and  2 \le j \le n-1 . The preferred arrangement of the solution vector is to use natural ordering which, prior to removing boundary elements, would look like:


\begin{bmatrix} U \end{bmatrix} =
\begin{bmatrix} u_{11} , u_{21} , \ldots , u_{m1} , u_{12} , u_{22} , \ldots , u_{m2} , \ldots , u_{mn}
\end{bmatrix}^T

This will result in an mn × mn linear system:


\begin{bmatrix} A \end{bmatrix} \begin{bmatrix} U \end{bmatrix} = \begin{bmatrix} b \end{bmatrix}

where


A =
\begin{bmatrix}
        ~D & -I & ~0 & ~0 & ~0 & \ldots & ~0 \\
        -I & ~D & -I & ~0 & ~0 & \ldots & ~0 \\
        ~0 & -I & ~D & -I & ~0 & \ldots & ~0 \\
        \vdots & \ddots & \ddots & \ddots & \ddots & \ddots & \vdots \\
        ~0 & \ldots & ~0 & -I & ~D & -I & ~0 \\
        ~0 & \ldots & \ldots & ~0 & -I & ~D & -I \\
        ~0 & \ldots & \ldots & \ldots & ~0 & -I & ~D
\end{bmatrix}

I is the m × m identity matrix, and D, also m × m, is given by:


D =
\begin{bmatrix}
        ~4 & -1 & ~0 & ~0 & ~0 & \ldots & ~0 \\
        -1 & ~4 & -1 & ~0 & ~0 & \ldots & ~0 \\
        ~0 & -1 & ~4 & -1 & ~0 & \ldots & ~0 \\
        \vdots & \ddots & \ddots & \ddots & \ddots & \ddots & \vdots \\
        ~0 & \ldots & ~0 & -1 & ~4 & -1 & ~0 \\
        ~0 & \ldots & \ldots & ~0 & -1 & ~4 & -1 \\
        ~0 & \ldots & \ldots & \ldots & ~0 & -1 & ~4
\end{bmatrix}

[2] For each uij equation, the columns of D correspond to the u components:


\begin{bmatrix}
        u_{1j} , & u_{2j} , & \ldots, & u_{i-1,j}  , & u_{ij} , & u_{i+1,j} , & \ldots , & u_{mj}
\end{bmatrix}^{T}

while the columns of I to the left and right of D correspond to the u components:


\begin{bmatrix}
        u_{1,j-1} , & u_{2,j-1} , & \ldots, & u_{i-1,j-1}  , & u_{i,j-1} , & u_{i+1,j-1} , & \ldots , & u_{m,j-1}
\end{bmatrix}^{T}

and


\begin{bmatrix}
        u_{1,j+1} , & u_{2,j+1} , & \ldots, & u_{i-1,j+1}  , & u_{i,j+1} , & u_{i+1,j+1} , & \ldots , & u_{m,j+1}
\end{bmatrix}^{T}

respectively.

From the above, it can be inferred that there are n block columns of m in A. It is important to note that prescribed values of u (usually lying on the boundary) would have their corresponding elements removed from I and D. For the common case that all the nodes on the boundary are set, we have  2 \le i \le m - 1 and  2 \le j \le n - 1 , and the system would have the dimensions (m − 2)(n − 2) × (m − 2)(n − 2), where D and I would have dimensions (m − 2) × (m − 2).

Example

For a 5×5 ( m = 5 and n = 5 ) grid with all the boundary nodes prescribed, the system would look like:


\begin{bmatrix} U \end{bmatrix} =
\begin{bmatrix} u_{22}, u_{32}, u_{42}, u_{23}, u_{33}, u_{43}, u_{24}, u_{34}, u_{44}
\end{bmatrix}^{T}

with


A =
\begin{bmatrix}
       ~4 & -1 & ~0 & -1 & ~0 & ~0 & ~0 & ~0 & ~0 \\
       -1 & ~4 & -1 & ~0 & -1 & ~0 & ~0 & ~0 & ~0 \\
       ~0 & -1 & ~4 & ~0 & ~0 & -1 & ~0 & ~0 & ~0 \\
       -1 & ~0 & ~0 & ~4 & -1 & ~0 & -1 & ~0 & ~0 \\
       ~0 & -1 & ~0 & -1 & ~4 & -1 & ~0 & -1 & ~0 \\
       ~0 & ~0 & -1 & ~0 & -1 & ~4 & ~0 & ~0 & -1 \\
       ~0 & ~0 & ~0 & -1 & ~0 & ~0 & ~4 & -1 & ~0 \\
       ~0 & ~0 & ~0 & ~0 & -1 & ~0 & -1 & ~4 & -1 \\
       ~0 & ~0 & ~0 & ~0 & ~0 & -1 & ~0 & -1 & ~4
\end{bmatrix}

and


b =
\begin{bmatrix}
        -dx^2 g_{22} + u_{12} + u_{21} \\
        -dx^2 g_{32} + u_{31} ~~~~~~~~ \\
        -dx^2 g_{42} + u_{52} + u_{41} \\
        -dx^2 g_{23} + u_{13} ~~~~~~~~ \\
        -dx^2 g_{33}  ~~~~~~~~~~~~~~~~ \\
        -dx^2 g_{43} + u_{53} ~~~~~~~~ \\
        -dx^2 g_{24} + u_{14} + u_{25} \\
        -dx^2 g_{34} + u_{35} ~~~~~~~~ \\
        -dx^2 g_{44} + u_{54} + u_{45}
\end{bmatrix}.

As can be seen, the boundary u's are brought to the right-hand-side of the equation.[3] The entire system is 9 × 9 while D and I are 3 × 3 and given by:


D =
\begin{bmatrix}
       ~4 & -1 & ~0 \\
       -1 & ~4 & -1 \\
       ~0 & -1 & ~4 \\
\end{bmatrix}

and


-I =
\begin{bmatrix}
       -1 & ~0 & ~0 \\
       ~0 & -1 & ~0 \\
       ~0 & ~0 & -1
\end{bmatrix}.

Methods of solution

Because  \begin{bmatrix} A \end{bmatrix} is block tridiagonal and sparse, many methods of solution have been developed to optimally solve this linear system for  \begin{bmatrix} U \end{bmatrix} . Among the methods are a generalized Thomas algorithm, cyclic reduction, successive overrelaxation, and Fourier transforms. A theoretically optimal O(n) solution can be computed using multigrid methods.

Applications

In computational fluid dynamics, for the solution of an incompressible flow problem, the incompressibility condition acts as a constraint for the pressure. There is no explicit form available for pressure in this case due to a strong coupling of the velocity and pressure fields. In this condition, by taking the divergence of all terms in the momentum equation, one obtains the pressure poisson equation. For an incompressible flow this constraint is given by:


\frac{ \partial v_x }{ \partial x} + \frac{ \partial v_y }{ \partial y} + \frac{\partial v_z}{\partial z} = 0

where vx is the velocity in the x direction, vy is velocity in y and vz is the velocity in the z direction. Taking divergence of the momentum equation and using the incompressibility constraint, the pressure poisson equation is formed given by:


\nabla^2 p = f(\nu,V)

where ν is the kinematic viscosity of the fluid and V is the velocity vector.[4]

The discrete Poisson's equation arises in the theory of Markov chains. It appears as the relative value function for the dynamic programming equation in a Markov decision process, and as the control variate for application in simulation variance reduction.[5][6][7]

Footnotes

  1. ^ Hoffman, Joe (2001), "Chapter 9. Elliptic partial differential equations", Numerical Methods for Engineers and Scientists (2nd ed.), McGraw–Hill, ISBN 0-8247-0443-6 .
  2. ^ Golub, Gene H. and C.F. Van Loan, Matrix Computations, 3rd Ed., The Johns Hopkins University Press, Baltimore, 1996, pages 177–180.
  3. ^ Cheny, Ward and David Kincaid, Numerical Mathematics and Computing 2nd Ed., Brooks/Cole Publishing Company, Pacific Grove, 1985, pages 443–448.
  4. ^ Fletcher, Clive A. J., Computational Techniques for Fluid Dynamics: Vol I, 2nd Ed., Springer-Verlag, Berlin, 1991, page 334–339.
  5. ^ S. P. Meyn and R.L. Tweedie, 2005. Markov Chains and Stochastic Stability. Second edition to appear, Cambridge University Press, 2009.
  6. ^ S. P. Meyn, 2007. Control Techniques for Complex Networks, Cambridge University Press, 2007.
  7. ^ Asmussen, Søren, Glynn, Peter W., 2007. "Stochastic Simulation: Algorithms and Analysis". Springer. Series: Stochastic Modelling and Applied Probability, Vol. 57, 2007.

References


Wikimedia Foundation. 2010.

Игры ⚽ Нужно решить контрольную?

Look at other dictionaries:

  • Poisson's equation — In mathematics, Poisson s equation is a partial differential equation with broad utility in electrostatics, mechanical engineering and theoretical physics. It is named after the French mathematician, geometer and physicist Siméon Denis Poisson.… …   Wikipedia

  • Poisson (disambiguation) — Poisson (meaning fish in French) may refer to:* Siméon Denis Poisson (1781 1840), French mathematician, geometer and physicist, after whom a number of mathematical concepts and physical phenomena are named, including: ** Poisson distribution, a… …   Wikipedia

  • Conway–Maxwell–Poisson distribution — Conway–Maxwell–Poisson parameters: support: pmf: cdf …   Wikipedia

  • Differential equation — Not to be confused with Difference equation. Visualization of heat transfer in a pump casing, created by solving the heat equation. Heat is being generated internally in the casing and being cooled at the boundary, providing a steady state… …   Wikipedia

  • Schrödinger equation — For a more general introduction to the topic, please see Introduction to quantum mechanics. Quantum mechanics …   Wikipedia

  • Loi de Poisson — Pour les articles homonymes, voir Poisson (homonymie). Poisson Densité de probabilité / Fonction de masse L axe horizontal est l indice k. La fonction est seulement définie pour les valeurs entières de …   Wikipédia en Français

  • Partial differential equation — A visualisation of a solution to the heat equation on a two dimensional plane In mathematics, partial differential equations (PDE) are a type of differential equation, i.e., a relation involving an unknown function (or functions) of several… …   Wikipedia

  • Conway-Maxwell-Poisson distribution — Probability distribution name =Conway Maxwell Poisson pdf cdf type =density parameters =lambda > 0, u geq 0 support =x in {0,1,2,dots} pdf =frac{lambda^x}{(x!)^ u}frac{1}{Z(lambda, u)} cdf =sum {i=0}^x mathbb{P}(X = i) mean =sum {j=0}^infty… …   Wikipedia

  • List of numerical analysis topics — This is a list of numerical analysis topics, by Wikipedia page. Contents 1 General 2 Error 3 Elementary and special functions 4 Numerical linear algebra …   Wikipedia

  • List of mathematics articles (D) — NOTOC D D distribution D module D D Agostino s K squared test D Alembert Euler condition D Alembert operator D Alembert s formula D Alembert s paradox D Alembert s principle Dagger category Dagger compact category Dagger symmetric monoidal… …   Wikipedia

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”