CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Wiki > Finite volume

Finite volume

From CFD-Wiki

(Difference between revisions)
Jump to: navigation, search
(Convection Schemes)
(Basic Discretisation schemes)
Line 94: Line 94:
=== Upwind Differencing Scheme (UDS)===
=== Upwind Differencing Scheme (UDS)===
-
The UDS assumes that the convected variable at the cell fase $f$ is the same as the upwind cell-centre value:
+
The UDS assumes that the convected variable at the cell fase <math>f</math> is the same as the upwind cell-centre value:
<table width="100%"><tr><td>
<table width="100%"><tr><td>
Line 108: Line 108:
The HDS of Spalding [1972] switches the discretisation of the convection terms between CDS and UDS according to the local cell Peclet number as follows:
The HDS of Spalding [1972] switches the discretisation of the convection terms between CDS and UDS according to the local cell Peclet number as follows:
-
  \begin{equation} 
+
<table width="100%"><tr><td>
-
  \begin{array}{clrr}
+
:<math>
-
  $ \phi_{f}=0.5 \left( \phi_{c} + \phi_{d} \right)$ \ \ \ \ \ for $Pe$ \triangleleft 2 \\
+
    \phi_{f}=0.5 \left( \phi_{c} + \phi_{d} \right) for Pe \triangleleft 2  
-
  $ \phi_{f}=  \phi_{c}$ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \  for $Pe$ \triangleright 2
+
 
-
  \end{array}
+
 
-
  \label{eq7}
+
\phi_{f}=  \phi_{c}         for Pe \triangleright 2
-
  \end{equation}
+
</math>
 +
</td><td width="5%">(1)</td></tr></table>
        
        
The cell Peclet number is defined as:
The cell Peclet number is defined as:
-
  \begin{equation} 
+
<table width="100%"><tr><td>
 +
:<math>
   Pe= \rho \left| U_{f} \right| A_{f}/D_{f}  
   Pe= \rho \left| U_{f} \right| A_{f}/D_{f}  
-
  \label{eq8}
+
</math>
-
  \end{equation}
+
</td><td width="5%">(1)</td></tr></table>
in which $A_{f}$ and $D_{f}$ are respectively, the cell-face area and physical diffusion coefficient. When $Pe\triangleright 2$,CDS calculations tends to become unstable so that theHDS reverts to the UDS. Physical diffusion is ignored when $Pe\triangleright 2$ .
in which $A_{f}$ and $D_{f}$ are respectively, the cell-face area and physical diffusion coefficient. When $Pe\triangleright 2$,CDS calculations tends to become unstable so that theHDS reverts to the UDS. Physical diffusion is ignored when $Pe\triangleright 2$ .

Revision as of 00:58, 14 September 2005

Contents

Discretisation Schemes for convective terms in General Transport Equation. Finite-Volume Formulation, structured grids

Introduction

Here is describing the discretization schemes of the convective terms in the finite-volume equations. The accuracy, numerical stability and the boundness of the solution depends on the numerical scheme used for these terms. The central issue is the specification of an appropriate relationship between the convected variable, stored at the cell centre and its value at each of the cell faces.

Basic Equations of CFD

All the conservation equations can be written in the same generic differential form:

 
  \frac {\partial( \rho \phi )} {\partial t} +  \frac{\partial}{\partial x_{i}} \left( \rho U \phi - \Gamma_{\phi} \frac{\partial\phi}{\partial x_{i}}\right)=S_{\phi}
(1)

Equation (1) is integrated over a control volume and the following discretised equation for \boldsymbol{\phi} is produced:

 
J_{h}- J_{l} + J_{n}- J_{s} + J_{e}- J_{w} + D_{h} - D_{l} + D_{n} - D_{s} + D_{e} - D_{s} = S_{p}
(2)
 where \boldsymbol{S_{p}} is the source term for the control volume \boldsymbol{P}, and \boldsymbol{J_{f}} and \boldsymbol{D_{f}} represent, respectively, the convective and diffusive fluxes of \boldsymbol{\phi} across the control-volume face \boldsymbol{f} 

\boldsymbol{(f=h,l,n,s,e,w)}

The convective fluxes through the cell faces are calculated as: 
 
   J_{f}=C_{f}\phi_{f}
(1)
 where C_{f} is the mass flow rate across the cell face f. The convected variable \phi_{f} associated with this mass flow rate is usually stored at the cell centres, and thus some form of interpolation assumption must be made in order to determine its value at each cell face. The interpolation procedure employed for this operation is the subject of the various schemes proposed in the literature and the accuracy, stability and boundedness of the solution depends on the procedure used.
 

In general, the value of \boldsymbol{\phi_{f}} can be explicity formulated in terms of its neighbouring nodal values by a functional relationship of the form:

 
   \phi_{f}=P  \left( \phi_{nb} \right)
(1)

where \boldsymbol{\phi_{nb}} denotes the neighbouring-node \boldsymbol{\phi}values. Combining equations (\ref{eq3}) through (\ref{eq4a}), the discretised equation becomes:

 
   \left\{ D_{h} + C_{h} \left[ P \left( \phi_{nb} \right) \right]_{h} \right\} - 
         \left\{ D_{l} + C_{l} \left[ P \left( \phi_{nb} \right) \right]_{l} \right\} +   

         \left\{ D_{n} + C_{n} \left[ P \left( \phi_{nb} \right) \right]_{n} \right\} - 
         \left\{ D_{s} + C_{s} \left[ P \left( \phi_{nb} \right) \right]_{s} \right\} +  

         \left\{ D_{e} + C_{e} \left[ P \left( \phi_{nb} \right) \right]_{e} \right\} - 
         \left\{ D_{w} + C_{w} \left[ P \left( \phi_{nb} \right) \right]_{w} \right\} = S_{p}
(1)

Convection Schemes

All the convection schemes involve a stencil of cells in which the values of $\phi$ will be used to construct the face value $\phi_{f}$

Picture 01.jpg.


\begin{figure}[h] \centering \includegraphics{D:/TeXWorkPlace/Wikki_Article/Picture_01.jpg} \caption{Stensil of cells}

\label{fig:Picture_01} \end{figure}

Where flow is from left to right, and $f$ is the face in question.

Basic Discretisation schemes

Central Differencing Scheme (CDS)

The most natural assumption for the cell-face value of the convected variable \phi_{f} would appear to be the CDS, which calculates the cell-face value from:

 
   \phi_{f}=0.5 \left( \phi_{c} + \phi_{d} \right)
(1)
This scheme is 2nd-order accurate, but is unbounded so that unphysical oscillations appear in regions of strong convection and also in the presence of discontinuities such as shocks. The CDS may be used directly in very low Reynolds-number flows where diffusive effects dominate over convection.

Upwind Differencing Scheme (UDS)

The UDS assumes that the convected variable at the cell fase f is the same as the upwind cell-centre value:

 
   \boldsymbol{\phi_{f}=  \phi_{c} }
(1)
The UDS is unconditionally bounded and highly stable, but as noted earlier it is only 1st-order accurate in terms of truncation error and may produce severe numerical diffusion. The scheme is therefore highly diffusive when the flow direction is skewed relative to the grid lines.

Hybrid Differencing Scheme (HDS)

The HDS of Spalding [1972] switches the discretisation of the convection terms between CDS and UDS according to the local cell Peclet number as follows:

 
    \phi_{f}=0.5 \left( \phi_{c} + \phi_{d} \right) for Pe \triangleleft 2 


\phi_{f}=  \phi_{c}         for Pe \triangleright 2
(1)

The cell Peclet number is defined as:

 
   Pe= \rho \left| U_{f} \right| A_{f}/D_{f}
(1)

in which $A_{f}$ and $D_{f}$ are respectively, the cell-face area and physical diffusion coefficient. When $Pe\triangleright 2$,CDS calculations tends to become unstable so that theHDS reverts to the UDS. Physical diffusion is ignored when $Pe\triangleright 2$ .

The HDS scheme is marginally more accurate than the UDS, because the2nd-order CDS will be used in regions of low Peclet number.

High Resolution Schemes (HRS)

Classification of High Resolution Schemes

HRS can be classified as \textit{linear} or \textit{non-linear}, where \textit{linear} means their coefficients are not direct functions of the convected variable when applied to a linear convection equation. It is important to recognise that linear convection schemes of 2nd-order accuracy or higher may suffer from unboudedness, and are not unconditionally stable.

\textit{Non-linear} schemes analyse the solution within the stencil and adapt the discretisation to avoid any unwanted behavior, such as unboundedness (see Waterson [1994]). These two types of schemes may be presented in a unified way by use of the \textsl{Flux-Limiter} formulation (Waterson and Deconinck [1995]), which calculates the cell-face value of the convected variable from:

  \begin{equation}  
   \phi_{f}= \phi_{c} + 0.5 B \left( r \right) \left( \phi_{c}-\phi_{u} \right)    
  \label{eq9}
  \end{equation}
     
  where $B \left( r \right)$ is termed a limiter function and the gradient ration $r$ is defined as: 

   \begin{equation}  
   r= \left( \phi_{d} - \phi_{c}  \right) / \left( \phi_{c} - \phi_{u}  \right) 
  \label{eq10}
  \end{equation}
  

The generalisation of this approach to handle non-uniform meshes has been given by Waterson [1994]

From equation (\ref{eq9}) it can be seen that $B=1$ gives the UDS and $B=r$ gives the CDS.

Numerical Implementation of HRS

The HRS schemes can be introdused into equation (\ref{eq4b}) by using the deffered correction procedure of Rubin and Khosla [1982]. This procedure express the cell-face value $\phi_{f}$ by:

   \begin{equation}  
   \phi_{f}=\phi_{f}\left(U \right) + \phi^{'}_{f} 
    \label{eq10a}
  \end{equation}
  

where $\phi^{'}_{f}$ is a higher-order correction which represents the difference between the UDS face value $\phi_{f}\left(U \right)$ and the higher-order scheme value $\phi_{f}\left(H \right)$, i.e.

   \begin{equation}  
   \phi^{'}_{f}= \phi_{f}\left(H \right) +  \phi_{f}\left(U \right)
    \label{eq10b}
  \end{equation}

If equation (\ref{eq10a}) is substituted into equation (\ref{eq4b}), the resulting discretised equation is:

   \begin{equation}  

\left\{ D_{h} + C_{h} \phi_{h} \left( U \right) \right\} - \left\{ D_{l} + C_{l} \phi_{l} \left( U \right) \right\} +

\left\{ D_{n} + C_{n} \phi_{n} \left( U \right) \right\} - \left\{ D_{s} + C_{s} \phi_{s} \left( U \right) \right\} +

\left\{ D_{e} + C_{e} \phi_{e} \left( U \right) \right\} - \left\{ D_{w} + C_{w} \phi_{w} \left( U \right) \right\} = S_{p} + B_{p}

    \label{eq11}
  \end{equation}

\\ . \\ where $B_{p}$ is the deferred-correction source terms, given by:

   \begin{equation}  
  B_{p} = C_{l}\phi^{'}_{l} - C_{h}\phi^{'}_{h} + 
  				 C_{s}\phi^{'}_{s} - C_{n}\phi^{'}_{n} + 
  				 C_{w}\phi^{'}_{w} - C_{e}\phi^{'}_{e}
    \label{eq12}
  \end{equation}
  
  This treatment leads to a diagonally dominant coefficient matrix since it is formed using the UDS.
  
 The final form of the discretised equation:
 
 \begin{equation}  
 a_{P}\phi_{P}= a_{N}\phi_{N} + a_{S}\phi_{S} + 
 							 a_{E}\phi_{E} + a_{W}\phi_{W} + 
 							 a_{H}\phi_{H} + a_{L}\phi_{L} + a_{T}\phi_{T} + S_{p} +  B_{p}
 \label{eq2}
 \end{equation}  
 

Subscrit $P$ represents the current computational cell; $N$, $S$, $E$, $W$, $H$, $L$ represent the six neighbouring cells and $T$ represents the previous timestep (transistent cases only)

The coefficients contain the appropriate contributions from the transient, convective and diffusive terms in (\ref{eq1})

Normalised Variables

Total Variation Diminishing (TVD)

Convection Boundedness Criterion (CBC)

Schemes

QUICK

LUS

Fromm

CUS



van Leer

OSPRE

Superbee

MINMOD

ISNAS

MUSCL

UMIST

SOUCUP

HLPA

SMART

SMARTER

LPPA

SHARP

CHARM

VONOS

My wiki