Harman Patil (Editor)

PISO algorithm

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
PISO algorithm

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.

Contents

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 times to correct for non-orthogonality.
Predictor step
Guess the pressure field p and get velocity field components u and v using Discretized momentum equation.The initial guess for the pressure may or may not be correct.
Corrector step 1
Velocity component obtained from predictor step may not satisfy the continuity equation, so we define correction factors p',v',u' for the pressure field and velocity field. Solve the momentum equation by inserting correct pressure field p and get the corresponding correct velocity components u and v .
p = p p
v = v v
u = u u
where ;
p , u , v  :correct pressure field and velocity component
p , u , v  :correction in pressure field and correction in velocity components
p , u , v  :guessed pressure field and velocity component
We define p , u , v as above. By putting the correct pressure field p into the discretized momentum equation we get the correct velocity components v and u . Once the pressure correction p is known we can find the correction components for the velocity: u and v .

Corrector step 2 In piso another corrector step can be used.
p = p + p  ; p = p + p
u = u + u  ; u = u + u
v = v + v  ; v = v + v
where : p , v , u are the correct pressure field and the correct velocity components, respectively
and p , v , u are second corrections to the 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 is slower concerning flow through heated fin.
  4. If momentum and scalar equation have weak or no coupling then PISO is better than SIMPLEC.

References

PISO algorithm Wikipedia