HOME

TheInfoList



OR:

The SIMPLEC (Semi-Implicit Method for Pressure Linked Equations-Consistent) algorithm; a modified form of
SIMPLE algorithm In computational fluid dynamics (CFD), the SIMPLE algorithm is a widely used numerical procedure to solve the Navier–Stokes equations. ''SIMPLE'' is an acronym for Semi-Implicit Method for Pressure Linked Equations. The SIMPLE algorithm was dev ...
; is a commonly used numerical procedure in the field of
computational fluid dynamics Computational fluid dynamics (CFD) is a branch of fluid mechanics that uses numerical analysis and data structures to analyze and solve problems that involve fluid flows. Computers are used to perform the calculations required to simulate th ...
to solve the
Navier–Stokes equations In physics, the Navier–Stokes equations ( ) are partial differential equations which describe the motion of viscous fluid substances, named after French engineer and physicist Claude-Louis Navier and Anglo-Irish physicist and mathematician Geo ...
. This algorithm was developed by Van Doormal and Raithby in 1984. The algorithm follows the same steps as the
SIMPLE algorithm In computational fluid dynamics (CFD), the SIMPLE algorithm is a widely used numerical procedure to solve the Navier–Stokes equations. ''SIMPLE'' is an acronym for Semi-Implicit Method for Pressure Linked Equations. The SIMPLE algorithm was dev ...
, with the variation that the momentum equations are manipulated, allowing the SIMPLEC velocity correction equations to omit terms that are less significant than those omitted in SIMPLE. This modification attempts to minimize the effects of dropping velocity neighbor correction terms.


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: # Specify the boundary conditions and guess the initial values. # Determine the velocity and pressure gradients. # Calculate the pseudo velocities. :::\hat_=\frac :::\hat_=\frac # Solve for the pressure equation and get the p. :::a_p_ = a_p_ + a_p_ + a_p_ + a_p_ + b_ # Set p*=p. # Using p* solve the discretized momentum equation and get u* and v*. ::: a_ u^*_=\sum a_u^*_ + (p^*_ - p^*_)A_ + b_ ::: a_ v^*_=\sum a_v^*_ + (p^*_ - p^*_)A_ + b_ # Solve the pressure correction equation. :::a_p'_ = a_p'_ + a_p'_ + a_p'_ + a_p'_ + b'_ # Get the pressure correction term and evaluate the corrected velocities and get p, u, v, Φ*. ::: u_=u^*_ + d_ (p'_ - p'_) ::: v_=v^*_ + d_(p'_ - p'_) # Solve all other discretized transport equations. :::a_\phi_ = a_\phi_ + a_\phi_ + a_\phi_ + a_\phi_ + b^_ # 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 In computational fluid dynamics (CFD), the SIMPLE algorithm is a widely used numerical procedure to solve the Navier–Stokes equations. ''SIMPLE'' is an acronym for Semi-Implicit Method for Pressure Linked Equations. The SIMPLE algorithm was dev ...
, 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 In computational fluid dynamics (CFD), the SIMPLE algorithm is a widely used numerical procedure to solve the Navier–Stokes equations. ''SIMPLE'' is an acronym for Semi-Implicit Method for Pressure Linked Equations. The SIMPLE algorithm was dev ...
* It doesn't solve extra equations like SIMPLER algorithm. * The cost per iteration is same as in the case of
SIMPLE Simple or SIMPLE may refer to: *Simplicity, the state or quality of being simple Arts and entertainment * ''Simple'' (album), by Andy Yorke, 2008, and its title track * "Simple" (Florida Georgia Line song), 2018 * "Simple", a song by Johnn ...
. * Like
SIMPLE Simple or SIMPLE may refer to: *Simplicity, the state or quality of being simple Arts and entertainment * ''Simple'' (album), by Andy Yorke, 2008, and its title track * "Simple" (Florida Georgia Line song), 2018 * "Simple", a song by Johnn ...
, a bad pressure field guess will destroy a good velocity field.


See also

*
SIMPLE algorithm In computational fluid dynamics (CFD), the SIMPLE algorithm is a widely used numerical procedure to solve the Navier–Stokes equations. ''SIMPLE'' is an acronym for Semi-Implicit Method for Pressure Linked Equations. The SIMPLE algorithm was dev ...
* SIMPLER algorithm *
Navier–Stokes equations In physics, the Navier–Stokes equations ( ) are partial differential equations which describe the motion of viscous fluid substances, named after French engineer and physicist Claude-Louis Navier and Anglo-Irish physicist and mathematician Geo ...


References

{{reflist Computational fluid dynamics