Multigrid method
From Wikipedia, the free encyclopedia
Multigrid (MG) methods in numerical analysis are a group of algorithms for solving differential equations using a hierarchy of discretizations. The idea is similar to extrapolation between coarser and finer grids. The typical application for multigrid is in the numerical solution of elliptic partial differential equations in two or more dimensions.
MG can be applied in combination with any of the common discretization techniques. In these cases, multigrid is among the fastest solution techniques known today. In contrast to other methods, multigrid is general in that it can treat arbitrary regions and boundary conditions. It does not depend on the separability of the equations or other special properties of the equation. MG is also directly applicable to more-complicated non-symmetric and nonlinear systems of equations, like the Lamé system of elasticity or the Navier-Stokes equations.
Multigrid can be generalized in many different ways. It can be applied naturally in a time-stepping solution of parabolic equations, or it can be applied directly to time-dependent partial differential equations. Research on multilevel techniques for hyperbolic equations is under way. Multigrid can also be applied to integral equations, or for problems in statistical physics.
Other extensions of multigrid include techniques where no PDE and no geometrical problem background is used to construct the multilevel hierarchy. Such algebraic multigrid methods (AMG) construct their hierarchy of operators directly from the system matrix and thus become true black-box solvers for sparse matrices.
The finite element method becomes multigrid by choosing linear wavelets as the basis.
Contents |
[edit] Algorithm
There are many variations of multigrid algorithms, but the common features are that a hierarchy of discretisations (grids) is considered. The important steps are:
- Smoothing – reducing high frequency errors, for example using a few iterations of the Gauss-Seidel method.
- Restriction – downsampling the residual error to a coarser grid.
- Prolongation – interpolating a correction computed on a coarser grid onto a finer grid.
[edit] Convergence rate
This approach has the advantage over other methods that it often scales linearly with the number of discrete nodes used. That is: It can solve these problems to a given accuracy in a number of operations that is proportional to the number of unknowns.
Assume that one has a differential equation which can be solved approximately (with a given accuracy) on a grid i with a given grid point density Ni. Assume furthermore that a solution on any grid Ni may be obtained with a given effort Wi = ρKNi from a solution on a coarser grid i + 1 with grid point density Ni + 1 = ρNi (that is, K is not dependent on i).
Using the geometric series, we then find for the effort involved in finding the solution on the finest grid N1
- W1 = W2 + ρKN1
- W1 = W3 + ρ2KN1 + ρKN1
-
W1 / (KN1) + 1 = 1 + ∑ ρp p - W1 / (KN1) + 1 = 1 / (1 − ρ)
- W1 = (KN1)(1 / (1 − ρ) − 1),
that is, a solution may be obtained in O(N) time.
[edit] See also
- Numerical analysis
- Partial differential equation
- Finite element method
- Finite difference
- Spectral method
[edit] References and external links
- Brandt, A. 'Multi-Level Adaptive Solutions to Boundary-Value Problems', Math. Comp, 1977(31), 333-390 (jstor link).
- MGNet: a repository for multigrid and other methods
- A multigrid tutorial, ISBN 0-89871-462-1
- Introduction to Algebraic Multigrid
- Multigrid_methods on CFD-Wiki