CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Wiki > PISO algorithm - Pressure Implicit with Split Operator

PISO algorithm - Pressure Implicit with Split Operator

From CFD-Wiki

Revision as of 11:23, 5 May 2015 by Alisha (Talk | contribs)
Jump to: navigation, search

Contents

Introduction

PISO algorithm (Pressure implicit with splitting of operator) was proposed by Issa in 1986 without iterations and with large time steps and a lesser computing effort. It is an extension of the SIMPLE algorithm used in CFD (computational fluid dynamics) to solve the Navier-Stokes equations. PISO is a pressure-velocity calculation procedure for the Navier-Stokes equations developed originally for non-iterative computation of unsteady compressible flow, but it has been adapted successfully to steady-state problems.

PISO involves one predictor step and two corrector steps and is designed to satisfy mass conservation using predictor-corrector steps.

Algorithm Steps

The algorithm can be summed up as follows:

  1. Set the boundary conditions.
  2. Solve the discretized momentum equation to compute an intermediate velocity field.
  3. Compute the mass fluxes at the cells faces.
  4. Solve the pressure equation.
  5. Correct the mass fluxes at the cell faces.
  6. Correct the velocities on the basis of the new pressure field.
  7. Update the boundary conditions.
  8. Repeat from 3 for the prescribed number of times.
  9. Increase the time step and repeat from 1.

As already seen for the SIMPLE algorithm, the steps 4 and 5 can be repeated for a prescribed number of time to correct for non-orthogonality.
predictor step
guess the pressure field p^* and get velocity field component u^* and v^* using Discretized momentum equation.The initial guess for the pressure may be correct or not.
corrector step 1
velocity component obtain from predictor step may not satisfy the continuity equation ,so we define correction factor p',v',u' pressure field and velocity field. solve momentum equation by put correct pressure p^{**} field and get corresponding correct velocity component u^{**} and v^{**}.
p'=p^{**}-P^*
v'=v^{**}-v^*
u'=u^{**}-u^*
where ;
p^{**},v^{**},u^{**}  :correct pressure field and velocity component
p',v',u' :correction in pressure field and correction in velocity component
p^*,v^*,u^* :guessed pressure field and velocity component
we define as above p',v',u'. by put correct term of pressure field p^{**} in discretized momentum equation we get correct velocity component v^{**} and u^{**}. Once the pressure correction p' is known we can find correction component for the velocity v' and u' .

corrector step2 in piso another corrector step .
p^{***}=p^{**}+p''  ; p''=p^*+p'
u^{***}=u^{**}+u''  ; u''=u^*+u'
v^{***}=v^{**}+v''  ; v''=v^*+v'
where : P^{***},v^{***},u^{***} are respectively correct pressure field and correct velocity component
and p'',v'',u'' are second correction pressure and velocity field.
set p=p^{***}, v=v^{***}, u=u^{***} where ; p,v,u are correct pressure and velocity field

Advantages and disadvantages

  1. Generally gives more stable results and takes less CPU time but not suitable for all processes.
  2. Suitable numerical schemes for solving the pressure-velocity linked equation.
  3. For laminar backward facing step PISO is faster than SIMPLE but it slower for concerning flow through heated fin.
  4. If momentum and scalar equation have weak or no coupling then PISO is better than SIMPLEC.

References

1. Solution of the implicitly discretized fluid flow equations by operator-splitting, Journal of Computational Physics 62 by R. Issa 2.An Introduction to Computational Fluid Dynamics The Finite Volume Method, 2/e By Versteeg ISBN 978-0131274983
3.Computational Fluid Dynamics for Engineers By Bengt Andersson Ronnie Andersson Love Håkansson Mikael Mortensen Rahman Sudiyo Berend van Wachem ISBN 978-1-107-01895-2
4.Computational Fluid Dynamics in Fire Engineering: Theory, Modelling and Practice By Guan Heng Yeoh, Kwok Kit Yuen ISBN 978-0750685894
5.http://openfoamwiki.net/index.php/OpenFOAM_guide/The_PISO_algorithm_in_OpenFOAM
6.Computational fluid dynamics BY T. J. CHUNG University of Alabama in Huntsville ISBN 0 521 59416 2
7.Computational method for fluid dynamics by Joel H.Ferziger,Milovan Peric ISBN 3-540-42074-6

My wiki