![]() | ||
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:
- Set the boundary conditions.
- Solve the discretized momentum equation to compute an intermediate velocity field.
- Compute the mass fluxes at the cells faces.
- Solve the pressure equation.
- Correct the mass fluxes at the cell faces.
- Correct the velocities on the basis of the new pressure field.
- Update the boundary conditions.
- Repeat from 3 for the prescribed number of times.
- 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
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
where ;
We define
Corrector step 2 In piso another corrector step can be used.
where :
and
Set
Advantages and disadvantages
- Generally gives more stable results and takes less CPU time but not suitable for all processes.
- Suitable numerical schemes for solving the pressure-velocity linked equation.
- For laminar backward facing step PISO is faster than SIMPLE but it is slower concerning flow through heated fin.
- If momentum and scalar equation have weak or no coupling then PISO is better than SIMPLEC.