|
[Sponsors] |
August 11, 2010, 13:36 |
SIMPLE algorithm not converging.
|
#1 |
New Member
SGPrasath
Join Date: Jul 2010
Posts: 5
Rep Power: 16 |
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. |
|
August 12, 2010, 04:21 |
|
#2 | |
New Member
Akinola
Join Date: Jul 2010
Posts: 25
Rep Power: 16 |
Quote:
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? |
||
August 12, 2010, 13:44 |
under relaxation
|
#3 |
New Member
SGPrasath
Join Date: Jul 2010
Posts: 5
Rep Power: 16 |
@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. |
|
August 12, 2010, 14:30 |
|
#4 | |
New Member
Akinola
Join Date: Jul 2010
Posts: 25
Rep Power: 16 |
Quote:
"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. |
||
August 12, 2010, 22:06 |
|
#5 |
New Member
SGPrasath
Join Date: Jul 2010
Posts: 5
Rep Power: 16 |
I think the velocity correction in pressure correction is just neglected.
|
|
Tags |
pressure poisson, simple |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
SIMPLE algorithm in 3D cylindrical coordinates | zouchu | Main CFD Forum | 1 | January 20, 2014 18:02 |
What is advantage of SIMPLE algorithm? | Geon-Hong | Main CFD Forum | 1 | May 18, 2010 08:46 |
About Phase Coupled SIMPLE (PC-SIMPLE) algorithm | Yan Kai | Main CFD Forum | 0 | April 18, 2007 04:48 |
About Phase Coupled SIMPLE (PC-SIMPLE) algorithm | Yan Kai | FLUENT | 0 | April 14, 2007 00:17 |
SIMPLE algorithm | Jonathan Castro | Main CFD Forum | 3 | December 10, 1999 05:59 |