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

An intresting observation about SIMPLE Scheme

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   February 27, 2003, 11:58
Default An intresting observation about SIMPLE Scheme
  #1
Abhijit Tilak
Guest
 
Posts: n/a
Hi All,

I wrote a code for simulating incompressible flows using SIMPLE scheme on staggered grids.One intresting observation was that the scheme is little unstable. I spent more that two weeks debugging the code. My problem went away after i did something wierd. With this modification I can go up to Re=25,000 for driven cavity. I boost the "Ap" or the diagonal coefficient of the pressure correction equation artificially.(by a factor of about 1.3).After that I did not observe any trouble in all of test cases & also driven cavity results match well with famous Ghia-Ghia solution.

Does anybody have similar experience ? My friend also has a similar experience. This is why i am posting this question. Does this have anything to do with daigonal dominance or the scheme itself ? Is this typical of the scheme ?

Any comments & explanations ?

Regards,

Abhijit Tilak.
  Reply With Quote

Old   February 27, 2003, 13:13
Default Re: An intresting observation about SIMPLE Scheme
  #2
D.M. Lipinski
Guest
 
Posts: n/a
Abhijit,

What you're doing is just underelaxation of the pressure correction equation. For the pressure correction equation, to increase AP is all that needs to be done because the contribution to the source term vanishes (initial guess for the pressure correction is zero everywhere). The relaxation factor which you use is just 1/1.3.

Unfortunately, what you're doing is not always allowed and can lead to problems.

regards

DML
  Reply With Quote

Old   February 27, 2003, 13:26
Default Re: An intresting observation about SIMPLE Scheme
  #3
Abhijit Tilak
Guest
 
Posts: n/a
Hi,

I, know its like adding some inertia. Patankar in his book states that SIMPLE scheme is prone do divergence unless some relaxation is used. I was wondering if this form of relaxation is what most of you are are using. Is there a bug in my code ? Is doing this normal ? What is your experience ? Can you please elaborate ?

Thanks,

Abhijit Tilak.
  Reply With Quote

Old   February 27, 2003, 15:31
Default Re: An intresting observation about SIMPLE Scheme
  #4
D.M. Lipinski
Guest
 
Posts: n/a
Abhijit,

That is true, SIMPLE usually diverges without underrelaxation. But the underrelaxation should be applied with care.

The main reason to use underelaxation in SIMPLE is that the changes in variables should be more gradual and no single transport equation should at once pull the solution too strongly towards itself. One should slowly approach the solution of the system of equations. If you apply underrelaxation to the pressure correction equation, you will fail to satisfy continuity equation. Now, depending on the formulation you used and the implementation of boundary conditions, your solution may diverge; here's why.

First, once the residual of the continuity equation is significant (because of the relaxation of P' equation) you may need to use a conservative formulation of all other transport equations (c.f. the book of Patankar). Conservative form of the equations is more prone to divergence because either you must work with "bad" matrices or you get additional contribution to the sources.

Second, the boundary conditions of the momentum/pressure equations. In the case you describe (driven cavity) the velocities are specified on all the boundaries. Therefore, you will always obtain a solution of the pressure correction equation despite the fact that the matrix is singular. It just follows from the integrability condition of the Poisson equation with Neumann B.Cs. For a more general case, when the inlets and outlets are present the situation is more complex. Just a hint, for the driven cavity problems (or in general, the problems without inlets/outlets/free boundaries) it is usually enough to apply a very slight underrelaxation (e.g. multiply your AP by 1.05). In this way you risk less (less violation of the mass balance) but the improvement in the convergence should be clearly seen.

Hope this helps.

DML
  Reply With Quote

Old   February 27, 2003, 16:01
Default Re: An intresting observation about SIMPLE Scheme
  #5
Abhijit Tilak
Guest
 
Posts: n/a
Hi

Thanks for your response. I also used the code for a flow over a backward facing step (Re=800) with exit pressure set to zero. I used same dirty trick boosting the Ap coefficient. Again the results compared with Gartling's paper look good.My code diverges if i don't boost the Ap coefficient for P' equation.Is there a possible bug in the code?

Thanks,

Abhijit Tilak.
  Reply With Quote

Old   February 27, 2003, 16:48
Default Re: An intresting observation about SIMPLE Scheme
  #6
D.M. Lipinski
Guest
 
Posts: n/a
Abhijit,

For constant pressure at the exit, the coefficient matrix of the pressure equation is no longer singular and you can obtain the solution. From what you're saying I think that your code works for these examples (driven cavity and backward step).

If you want to make a further test for your code, try a case with one inlet and two outlets. Assume zero gradient for all variables (including pressure) at the outlets because you cannot, in general, set the pressure simultaneously at two outlets to zero.

DML
  Reply With Quote

Old   March 6, 2003, 16:14
Default Re: An intresting observation about SIMPLE Scheme
  #7
Abhijit Tilak
Guest
 
Posts: n/a
Hi DML,

As u said I tested my code for multiple inlets/outlets. Exit pressure =0 was set for all outlets. I did'nt find any problems whatsoever. The problems start once I remove the artificial boosting of Ap coefficient for Pressure correction equn. Actually this is first time I am using SIMPLE scheme & staggered grids. All my work before was on non-staggered grids with fractional step method. I am doin the staggered/SIMPLE out of curiosity.

Any comments ? possible bug ?

Thanks,

Abhijit
  Reply With Quote

Old   March 7, 2003, 11:13
Default Re: An intresting observation about SIMPLE Scheme
  #8
D.M. Lipinski
Guest
 
Posts: n/a
Abhijit,

Congratulations... but you didn't do what I suggested.

You know, the constant pressure B.C. for the multiple outlets can be assumed only for certain cases (e.g. outlets to the atmosphere). Now, you assumed p=0 for both outlets and obtained the solution. Fine, but this can be unphysical solution; it forces the difference in static pressure between the outlets to be zero. I'll give you a simple simple example to illustrate the problem.

Let us take the flow in a pipeline as an example. We need to simulate the flow near an "Y" branch (one pipe branches into two pipes). We know the velocity profile well before the branch. For the start, we select the cross-section at a certain distance before the branch as the inlet. Two outlets will be located on the two pipes after the branch. This will be the domain of our calculations. You have all the freedom to select the position of the outlets. They should not be located too close to the branch, but they may be at a quite different distances from the branch for the two pipes. Depending on the selected positions of the outlets, static pressure at the outlets will be very different for the two outlets. The pressure losses will be different between the branch and the two outlets. A reasonable assumption is that we have developed flow conditions at the two outlets. Hence, the most straightforward condition is the zero axial gradient for all variables (including pressure) at the outlets.

Your assumption (p=0 for both outlets) gives solution, but it usually a wrong solution for multiple outlets. Try my suggestion to use a zero normal gradient for all variables on the outlets.

regards

DML
  Reply With Quote

Old   March 11, 2003, 00:39
Default Re: An intresting observation about SIMPLE Scheme
  #9
Abhijit tilak
Guest
 
Posts: n/a
Hi DML,

Thanks for the suggestion. My code currently is for cartesian coordinates. But it is not difficult to have multiple inlets & outlets. I tried case of one inlet & two outlets with zero gradient on P,u,v at exit. The code is stable so long as I boost the AP coefficient of P' equation. The results look reasonable & residues are order of 10^-8. I think there is a bug in the code. What do u say ?

Abhijit
  Reply With Quote

Old   March 11, 2003, 20:24
Default Re: An intresting observation about SIMPLE Scheme
  #10
Ilaner
Guest
 
Posts: n/a
Hi Abhijit, I have the same experience with you but I just boost the AP of pc a little ~ 1/0.99. By doing so, the convergence is significantly improved, and the velocity also looks reasonable, but I found that the accuracy of pressure is reduced. You can confirm this by simulating the Poisullue flow in a pipe or slot. You will observe that the velocity is good but the pressure distribution look like it is compressible flow!. The pressure difference should be constant along the flow direction but in this case you will see that the pressure decay too much from inlet to the downstream. This is my experience, can you conduct the same simulation and report your result?
  Reply With Quote

Old   March 12, 2003, 00:13
Default Re: An intresting observation about SIMPLE Scheme
  #11
Abhijit Tilak
Guest
 
Posts: n/a
Hi Ilaner,

Thanks for your reply. I posted this question bcos me & one of my classmate who wrote SIMPLE code as a course project, experienced the same behaviour. One more thing, I have to increase the boosting of the coefficient as the reynolds number increases. the value of 1.3 that I mentioned was for Re = 10,000 for a driven cavity problem. For low Re...say 1000 I to boost the Ap coefficient by 1.03 or 1.02. I will try the test case you mentioned asap & let you know.

Regards

Abhijit
  Reply With Quote

Old   March 12, 2003, 00:32
Default Re: An intresting observation about SIMPLE Scheme
  #12
Ilaner
Guest
 
Posts: n/a
Hi Abhijit, Looking forward to seeing your result. BTW, If I remember correctly, I ever read a paper from NHT on this issue before. Unfortunately, I forget its title.

Regards

Ilaner
  Reply With Quote

Old   March 14, 2003, 11:48
Default Re: An intresting observation about SIMPLE Scheme
  #13
Abhijit Tilak
Guest
 
Posts: n/a
Hi,

I tried the poisulle flow test case. As you said the accuracy of pressure is reduced, even though mass is conserved well & velocities look good. I also tried case of backward facing step Re=800. Increasing the boosting of Ap coefficient beyond 1.1 results in reduced accuracy in all variables. It washes away the recirculation zone between (x=4 & x=9) on top wall completely. Do you have any alternative explanation for this behaviour ? do you remember what the paper in NHT said about this ?

Thanks

Abhijit Tilak.
  Reply With Quote

Reply


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
Godunov scheme Peter Main CFD Forum 6 November 27, 2009 10:51
Multiphase flow using SIMPLE scheme calandrea OpenFOAM Running, Solving & CFD 0 January 15, 2009 10:17
Best Meshing scheme for Cylinder Nutrex Main CFD Forum 4 July 29, 2008 11:03
Numerical scheme in CFX ? sam CFX 1 November 18, 2004 16:25
Block correction scheme in SIMPLE Chuck Leakeas Main CFD Forum 0 November 20, 1998 12:51


All times are GMT -4. The time now is 07:18.