CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > General Forums > Main CFD Forum

Gauss-Seidel

Register Blogs Members List Search Today's Posts Mark Forums Read

Like Tree2Likes
  • 2 Post By Keith Walters

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 17, 2000, 22:18
Default Gauss-Seidel
  #1
W.M.Leung
Guest
 
Posts: n/a
Hello Can anybody tell 1>whether Gauss-Sedel method is the fast iterative method(convergence)? 2>are there any other iterative method which is faster than G-S? 3>In general, how many number of iteration it need, say the number of unknowns are 100x100? Thank You very much
  Reply With Quote

Old   February 18, 2000, 07:08
Default Re: Gauss-Seidel
  #2
I. Dotsikas
Guest
 
Posts: n/a
Gaus Seidel is a rather slow iterative Method. Actually I am not aware of any other Method that is slower. (Jordan Method is a little bit slower).

2. There is an other Method that is faster than Gaus-Seidel: the TDMA (Thomas- Algorithm) Itīs quite simple to programm, you may find many references to this Algorithm (netlib etc). Some faster Methods use Decompostion (ILU, LU) or Multigrid. Start with the Thomas Algorithm. Itīs as easy to program as the Gaus-Seidel.

3. It depends on your Problem and the special occasion you are working on. Actually you can calculate the difference between two runs and so decide when your solution is the nummerical approximation of your problem. Some times you donīt have to solve your equations up to convergence. You save much time if you let your solver do some iterations and then go on with the next equation. This is the case if you have material properties that show a strong temperature dependance while you solve a set of equations. Because of the iterative Nature of the problem you are allowed to do so.

best Regards

Yiannis Dotsikas
  Reply With Quote

Old   February 18, 2000, 10:26
Default Re: Gauss-Seidel
  #3
Keith Walters
Guest
 
Posts: n/a
There are definitely faster methods to solve a linear system than G-S. If you have banded matrices you can use the Thomas algorithm. For multi-dimensions you can do a line-by-line approach which is an iterative application of the Thomas algorithm. These only work for structured grid applications, for unstructured you generally have to use a point-by-point method.

For a math class project I took a CFD code that I had already written and used a number of different techniques to solve the linear system, including the "new" Krylov subspace methods. I found that the driver in flow problems was the nonlinear (outer) iteration convergence, and not solving the linear (inner) system. With G-S, you don't have to completely converge the inner system before you re-linearize at the outer step, but you still get benefit by "pushing" the result in the right direction. As such, in terms of overall computation time, nothing outperformed good old Gauss-Seidel. One caveat: You have to make sure that your coefficient matrix is diagonally dominant.

As for iterations to convergence, that will depend on just how diagonally dominant your coefficient matrix is.

Keith
randolph and aerosayan like this.
  Reply With Quote

Old   February 18, 2000, 11:27
Default Re: Gauss-Seidel
  #4
COBOK
Guest
 
Posts: n/a
It greatly depends upon the structure of your matrix.

In general, Gauss-Seidel method is slow. There are much better iterative methods. In order to get an answer to your question, you need to provide us with at least the following information: (*) is your matrix symmetric; (*) is it positive definite; (*) is it banded (block-banded).

  Reply With Quote

Old   February 18, 2000, 21:17
Default Re: Gauss-Seidel
  #5
W.M.Leung
Guest
 
Posts: n/a
Hi, COBOK For my case, the matrix have all the three properties you mentioned,1>symmetric, 2>positive definite, 3>band matrix
  Reply With Quote

Old   February 19, 2000, 11:15
Default Re: Gauss-Seidel
  #6
COBOK
Guest
 
Posts: n/a
The Cholessky decomposition method may okay for your problem, but since the matrix is banded... BTW, what is the bandwidth of your matrix? As for starter, I'd recommend to go through the books/reports/proceedinds (some of them are good): 1)Rheinboldt, W.C., Methods for solving systems of nonlinear equations,2nd ed., Philadelphia : Society for Industrial and Applied Mathematics,1998. 2)Greenbaum, A.,Iterative methods for solving linear systems, Philadelphia, PA : Society for Industrial and Applied Mathematics, 1997. 3)Kelley, C. T., Iterative methods for linear and nonlinear equations, Philadelphia, Society for Industrial and Applied Mathematics,1995. (4)Tidriri, M. D., Krylov methods for compressible flows, Hampton, VA : Institute for Computer Applications in Science and Engineering, NASA Langley Research Center,<Springfield, Va. : National Technical Information Service, distributor, 1995>, NASA-CR-198176 (5)Iterative methods for large linear systems, (eds)D.R. Kincaid, L.J.Hayes., Boston : Academic Press, c1990. (6)An iterative implicit diagonally-dominant factorization algorithm for solving the Navier-Stokes equations, Shu-Cheng Chen, Nan-Suey Liu, and Hyun Dae Kim., NASA-TM-105259 (7) Iterative methods of large linear systems and their applications, (eds) M.Natori and T. Nodera.<Yokohama, Japan> : Keio University, 1989. (8) Iterative solution of large linear systems, D.M.Young., New York, Academic Press, 1971. (9)Varga, R.S., Matrix iterative analysis, Englewood Cliffs, N.J., Prentice-Hall, 1962

I'd advise you to read some chapters in these references, so that you get an idea where to start. After that you can eihter implement some algorithm that you think is the best you found, or try to find a free code on the net. Unfortunately, I do not have any, but maybe someone else could direct you.
  Reply With Quote

Old   February 23, 2000, 14:34
Default Re: Gauss-Seidel
  #7
Amadou Sowe
Guest
 
Posts: n/a
The Jacobi iterative method is slower than Gauss-Seidel. The S.O.R (Successive Over Relaxation method) is an accelerated, in terms of convergence, Gauss-Seidel method.
  Reply With Quote

Old   February 25, 2000, 10:52
Default Re: Gauss-Seidel
  #8
yangang bao
Guest
 
Posts: n/a
Nobody is using Gauss-Seidel method lonely if he wants to solve some practical problems. However, combined with multigrid algorithm, Gauss-Seidel is still a good one, since it is easy to implement compared with other algorithm, such as ILU, CGStab, GMRes, SSOR, etc.

Good luck.
  Reply With Quote

Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Problem in fvschemes divSchemes cannot use Gauss linearUpwind nico765 OpenFOAM Bugs 30 August 9, 2018 07:39
please help me which solver is better for my application Ger_US OpenFOAM 8 January 8, 2013 12:29
Submarine with SimpleFoam alex_rubel OpenFOAM 20 February 25, 2011 06:34
solution diverges when linear upwind interpolation scheme is used subash OpenFOAM 0 May 29, 2010 01:23
Stability problems with kepsilon in external aero edreed OpenFOAM Running, Solving & CFD 21 July 16, 2008 15:00


All times are GMT -4. The time now is 19:56.