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

SIMPLE algorithm not converging.

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   August 11, 2010, 12:36
Default SIMPLE algorithm not converging.
  #1
sgp
New Member
 
SGPrasath
Join Date: Jul 2010
Posts: 5
Rep Power: 15
sgp is on a distinguished road
hi all,
I am new to CFD and i have started to code incompressible flow between two plates (given in anderson). The thing is, the code i have developed is not converging. the p' computed as given in anderson book, from the pressure poisson equation doesnot decrease. it keeps on increasing.

The boundary conditions i have given are

inlet: u=1, v=0, p'=0
exit: u(exit)=u(exit-1), p'=0// column before exit
top: u=0,v=0,p'=0
bottom: u=0,v=0,p'=0

Also, i dont know whether the way i am implementing staggering is correct or not.

i have
npx+2,npy+1 grid points for v-component
npx+1,npy grid points for u-component
npx,npy grid points for pressure.

i am computing u momentum at 1 to npx-1 and from 2 to npy-1
and v momentum at 1 to npx and from 2 to npy-1.

what could be the reason for p' not comverging.

thanks in advance,
sgp.
sgp is offline   Reply With Quote

Old   August 12, 2010, 03:21
Default
  #2
New Member
 
Akinola
Join Date: Jul 2010
Posts: 25
Rep Power: 15
falopsy is on a distinguished road
Quote:
Originally Posted by sgp View Post
hi all,
I am new to CFD and i have started to code incompressible flow between two plates (given in anderson). The thing is, the code i have developed is not converging. the p' computed as given in anderson book, from the pressure poisson equation doesnot decrease. it keeps on increasing.

The boundary conditions i have given are

inlet: u=1, v=0, p'=0
exit: u(exit)=u(exit-1), p'=0// column before exit
top: u=0,v=0,p'=0
bottom: u=0,v=0,p'=0

Also, i dont know whether the way i am implementing staggering is correct or not.

i have
npx+2,npy+1 grid points for v-component
npx+1,npy grid points for u-component
npx,npy grid points for pressure.

i am computing u momentum at 1 to npx-1 and from 2 to npy-1
and v momentum at 1 to npx and from 2 to npy-1.

what could be the reason for p' not comverging.

thanks in advance,
sgp.
I THINK (please note the word) your staggered grid is a bit wrong except you are using a different staggered grid than I know. Check the book by Versteeg and Malalasekera for more details. To my knowledge, using the most common and favoured partially staggered grid, you should have:
npx, npy+1 for v-components
npx+1, npy for u-components
npx, npy for the pressure.

You should then compute u-momentum from 1 to npx-1 ( I assume your starting index is 0) and v-momentum from 1 to npy-1 because the nodes 0 and npx/npy will coincide with points where the velocities are known. If you are using one of the other less common staggered grids, then maybe what you have now is correct. One thing that could cause convergence is your treatment of relaxation factor in the pressure correction equation. Are you incorporating it at all?
falopsy is offline   Reply With Quote

Old   August 12, 2010, 12:44
Default under relaxation
  #3
sgp
New Member
 
SGPrasath
Join Date: Jul 2010
Posts: 5
Rep Power: 15
sgp is on a distinguished road
@falopsy
thanks for the reply.
I am using under-relaxation factor for the pressure term as i read in Patankar's book that under-relaxation factor increases the stability of the code.
Is it right? I also want to know if there is any sample code for SIMPLE algorithm by patankar available in internet.

Thanks in advance,
regards,
sgp.
sgp is offline   Reply With Quote

Old   August 12, 2010, 13:30
Default
  #4
New Member
 
Akinola
Join Date: Jul 2010
Posts: 25
Rep Power: 15
falopsy is on a distinguished road
Quote:
Originally Posted by sgp View Post
@falopsy
thanks for the reply.
I am using under-relaxation factor for the pressure term as i read in Patankar's book that under-relaxation factor increases the stability of the code.
Is it right? I also want to know if there is any sample code for SIMPLE algorithm by patankar available in internet.

Thanks in advance,
regards,
sgp.
Yes, under-relaxation of the pressure equation improves stability but my question is how u are treating the velocity under-relaxation in the pressure equation or is it just neglected. You can download the code by Ferziger and peric from
"ftp://ftp.springer.de/pub/technik/peric/" - you can type the ftp directly in your browser. I think the code is based on collocated grid though but should still help somehow.
falopsy is offline   Reply With Quote

Old   August 12, 2010, 21:06
Default
  #5
sgp
New Member
 
SGPrasath
Join Date: Jul 2010
Posts: 5
Rep Power: 15
sgp is on a distinguished road
I think the velocity correction in pressure correction is just neglected.
sgp is offline   Reply With Quote

Reply

Tags
pressure poisson, simple


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
SIMPLE algorithm in 3D cylindrical coordinates zouchu Main CFD Forum 1 January 20, 2014 17:02
What is advantage of SIMPLE algorithm? Geon-Hong Main CFD Forum 1 May 18, 2010 07:46
About Phase Coupled SIMPLE (PC-SIMPLE) algorithm Yan Kai Main CFD Forum 0 April 18, 2007 03:48
About Phase Coupled SIMPLE (PC-SIMPLE) algorithm Yan Kai FLUENT 0 April 13, 2007 23:17
SIMPLE algorithm Jonathan Castro Main CFD Forum 3 December 10, 1999 04:59


All times are GMT -4. The time now is 15:24.