Puneet Varma (Editor)

SIMPLEC algorithm

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

The SIMPLEC (Semi-Implicit Method for Pressure Linked Equations-Consistent) algorithm; a modified form of SIMPLE algorithm; is a commonly used numerical procedure in Computational Fluid Dynamics to solve the very famous Navier-Stokes equations.
This algorithm was developed by Van Doormal and Raithby in 1984. The algorithm follows the same steps like the SIMPLE algorithm with a little variation that the momentum equations are manipulated which allows SIMPLEC velocity correction equations to omit terms that are less significant than those omitted in SIMPLE. Basically, it tries to prevent the effects of dropping velocity neighbor correction terms.

Contents

Algorithm

The steps involved are same as the SIMPLE algorithm and the algorithm is iterative in nature.p*, u*, v* are guessed Pressure, X-direction velocity and Y-direction velocity respectively, p', u', v' are the correction terms respectively and p, u, v are the correct fields respectively; Φ is the property for which we are solving and d terms are involved with the under relaxation factor. So, steps are as follows:

  1. Specify the boundary conditions and guess the initial values.
  2. Determine the velocity and pressure gradients.
  3. Calculate the pseudo velocities.
  1. Solve for the pressure equation and get the p.
  1. Set p*=p.
  2. Using p* solve the discretized momentum equation and get u* and v*.
  1. Solve the pressure correction equation.
  1. Get the pressure correction term and evaluate the corrected velocities and get p, u, v, Φ*.
  1. Solve all other discretized transport equations.
  1. If Φ shows convergence, then STOP and if not, then set p*=p, u*=u, v*=v, Φ*=Φ and start the iteration again.

Peculiar features

  • The discretized pressure correction equation is same as in the SIMPLE algorithm, except for the d terms which are used in momentum equations.
  • p=p*+p' which tells that the under relaxing factor is not there in SIMPLEC as it was in SIMPLE.
  • SIMPLEC algorithm is seen to converge 1.2-1.3 times faster than the SIMPLE algorithm
  • It doesn't solve extra equations like SIMPLER algorithm.
  • The cost per iteration is same as in the case of SIMPLE.
  • Like SIMPLE, a bad pressure field guess will destroy a good velocity field.
  • References

    SIMPLEC algorithm Wikipedia