CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Wiki > Tridiagonal matrix algorithm - TDMA (Thomas algorithm)

Tridiagonal matrix algorithm - TDMA (Thomas algorithm)

From CFD-Wiki

(Difference between revisions)
Jump to: navigation, search
(Introduction)
(+wikilink)
Line 75: Line 75:
#{{reference-book|author=Conte, S.D., and deBoor, C.|year=1972|title=Elementary Numerical Analysis|rest= McGraw-Hill, New York.}}
#{{reference-book|author=Conte, S.D., and deBoor, C.|year=1972|title=Elementary Numerical Analysis|rest= McGraw-Hill, New York.}}
 +
==External link==
 +
*[http://en.wikipedia.org/wiki/Tridiagonal_matrix_algorithm Wikipedia article]
''TODO: Add more references, more on the variants, and maybe more performance type info''
''TODO: Add more references, more on the variants, and maybe more performance type info''
--[[User:Jasond|Jasond]] 16:50, 18 December 2005 (MST)
--[[User:Jasond|Jasond]] 16:50, 18 December 2005 (MST)

Revision as of 12:32, 14 February 2006

Contents

Introduction

The tridiagonal matrix algorithm (TDMA), also known as the Thomas algorithm, is a simplified form of Gaussian elimination that can be used to solve tridiagonal systems of equations. A tridiagonal system may be written as


a_i x_{i - 1}  + b_i x_i  + c_i x_{i + 1}  = d_i,

where  a_1  = 0 and  c_n = 0 . In matrix form, this system is written as

 
\left[ 
\begin{matrix}
   {b_1} & {c_1} & {   } & {   } & { 0 } \\ 
   {a_2} & {b_2} & {c_2} & {   } & {   } \\ 
   {   } & {a_3} & {b_3} & \cdot & {   } \\ 
   {   } & {   } & \cdot & \cdot & {c_{n-1}}\\ 
   { 0 } & {   } & {   } & {a_n} & {b_n}\\ 
\end{matrix}
\right]
\left[ 
\begin{matrix}
   {x_1 }  \\ 
   {x_2 }  \\ 
   \cdot   \\
   \cdot   \\
   {x_n }  \\
\end{matrix}
\right]
=
\left[ 
\begin{matrix}
   {d_1 }  \\ 
   {d_2 }  \\ 
   \cdot   \\
   \cdot   \\
   {d_n }  \\
\end{matrix}
\right].

For such systems, the solution can be obtained in O(n) operations instead of O(n^3) required by Gaussian Elimination. A first sweep eliminates the a_i's, and then an (abbreviated) backward substitution produces the solution. Example of such matrices commonly arise from the discretization of 1D problems (e.g. the 1D Possion problem).

Algorithm

Forward elimination phase

for k = 2 step until n do
m = {{a_k } \over {b_{k - 1} }}
  b_k^'  = b_k  - mc_{k - 1}
  d_k^'  = d_k  - md_{k - 1}
end loop (k)

Backward substitution phase

  x_n  = {{d_n^' } \over {b_n }}
for k = n-1 stepdown until 1 do
  x_k  = {{d_k^'  - c_k x_{k + 1} } \over {b_k }}
end loop (k)

Variants

In some situations, particularly those involving periodic boundary conditions, a slightly perturbed form of the tridiagonal system may need to be solved:


a_1 x_{n}  + b_1 x_1  + c_1 x_2  = d_1,

a_i x_{i - 1}  + b_i x_i  + c_i x_{i + 1}  = d_i,\, i = 2,\ldots,n-1

a_n x_{n-1}  + b_n x_n  + c_n x_1  = d_n.

In this case, we can make use of the Sherman-Morrison formula to avoid the additional operations of Gaussian elimination and still use the Thomas algorithm.

In other situation, the system of equation may be block tridiagonal, with smaller submatrices arranged as the individual elements in the above matrix system. Simplified forms of Gaussian elimination have been developed for these situations.

References

  1. Conte, S.D., and deBoor, C. (1972), Elementary Numerical Analysis, McGraw-Hill, New York..

External link

TODO: Add more references, more on the variants, and maybe more performance type info --Jasond 16:50, 18 December 2005 (MST)

My wiki