|
[Sponsors] |
May 19, 2012, 13:44 |
Poisson convergence for 2D microfluidic duct
|
#1 |
New Member
Tristan
Join Date: Apr 2012
Location: Philadelphia, PA
Posts: 5
Rep Power: 14 |
I'm trying to simulate a 2D microfluidic channel flow using the projection method with a Poisson pressure correction solver in Fortran (code attached should be renamed with .f90 extension).
I've used the code successfully for larger-scale geometry with different flow conditions, but I can't seem to get the Poisson solver to converge for the microfluidic flow used. If anyone feels ambitious, I'd appreciate some pointers. |
|
May 19, 2012, 18:50 |
|
#2 |
Senior Member
Arjun
Join Date: Mar 2009
Location: Nurenberg, Germany
Posts: 1,285
Rep Power: 34 |
There is nothing special, Poisson problems are solved by people across the globe all the time. As far as your case is concerned, it seems you are using cartesian grid with uniform spacing. In this case you can use FFT based solver or Block tri diagonal method (use Fishpack). Both of them are very fast direct solvers so there is no question of not converging. Good luck. |
|
May 19, 2012, 19:09 |
|
#3 | |
New Member
Tristan
Join Date: Apr 2012
Location: Philadelphia, PA
Posts: 5
Rep Power: 14 |
Quote:
Actually, I'm using a staggered mesh with points clustered on the upper and lower wall boundaries and the left inlet boundary. I'm currently using a Gauss-Seidel method to solve the Poisson equation with successive over relaxation (SOR). As I mentioned before, the solution was converging before changing the scale and fluid properties. |
||
May 19, 2012, 20:22 |
|
#4 | |
Senior Member
Arjun
Join Date: Mar 2009
Location: Nurenberg, Germany
Posts: 1,285
Rep Power: 34 |
Quote:
you should realize that solution convergence and Poisson problem convergence are two separate issues. Poisson problem convergence is condition by which you get solution convergence, but it is no guarantee. Further I guess mostly Poisson problem is needed for pressure equation which I assume are the points at cell centers and not on the velocity locations of segregated system. Lately there has been lots of such questions about convergence. When people try to write their code and quickly find that code works for simple cases but has a problem with difficult or large cases. The issue is that code's correctness is no guarantee for convergence. Commerical solvers have to play lots of tricks to keep solver convergent. |
||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Convergence | Centurion2011 | FLUENT | 48 | June 15, 2022 00:29 |
Force can not converge | colopolo | CFX | 13 | October 4, 2011 23:03 |
Convergence of CFX field in FSI analysis | nasdak | CFX | 2 | June 29, 2009 02:17 |
increasing mesh quality is leading to poor convergence | tippo | CFX | 2 | May 5, 2009 11:55 |
flow simulation across a small fan | jane luo | Main CFD Forum | 15 | April 12, 2004 18:49 |