Basics of Computational Fluid Dynamics and Numerical Heat Transfer

From Thermal-FluidsPedia

(Difference between revisions)
Jump to: navigation, search
m (Overview)
(Discretization methods)
Line 40: Line 40:
:where <math>Q</math> is the vector of conserved variables, <math>F</math> is the vector of fluxes (see Euler equations or Navier–Stokes equations), <math>V</math> is the cell volume, and <font style="vertical-align:15%;"><math>\mathbf{A}</math></font> is the cell surface area.
:where <math>Q</math> is the vector of conserved variables, <math>F</math> is the vector of fluxes (see Euler equations or Navier–Stokes equations), <math>V</math> is the cell volume, and <font style="vertical-align:15%;"><math>\mathbf{A}</math></font> is the cell surface area.
-
* Finite element method (FEM). This method is popular for structural analysis of solids, but is also applicable to fluids. The FEM formulation requires, however, special care to ensure a conservative solution. The FEM formulation has been adapted for use with the Navier–Stokes equations. Although in FEM conservation has to be taken care of, it is much more stable than the FVM. approach<ref>http://www3.interscience.wiley.com/journal/112692130/abstract?CRETRY=1&SRETRY=0</ref> Consequently it is the new direction in which CFD is moving{{Citation needed|date=July 2009}}. Generally stability/robustness of the solution is better in FEM though for some cases it might take more memory than FVM methods.<ref>Huebner, K. H., Thornton, E. A., and Byron, T. D., The Finite Element Method for Engineers, 3<sup>rd</sup> ed., Wiley Interscience(1995).</ref>
+
* Finite element method (FEM). This method is popular for structural analysis of solids, but is also applicable to fluids. The FEM formulation requires, however, special care to ensure a conservative solution. The FEM formulation has been adapted for use with the Navier–Stokes equations. Although in FEM conservation has to be taken care of, it is much more stable than the FVM. approach<ref>http://www3.interscience.wiley.com/journal/112692130/abstract?CRETRY=1&SRETRY=0</ref> Consequently it is the new direction in which CFD is moving{{Citation needed|date=July 2009}}. Generally stability/robustness of the solution is better in FEM though for some cases it might take more memory than FVM methods.([[#References|Huebner, 1995]])
:In this method, a weighted residual equation is formed:
:In this method, a weighted residual equation is formed:

Revision as of 15:25, 26 July 2010

Computational fluid dynamics (CFD) is one of the branches of fluid mechanics that uses numerical methods and algorithms to solve and analyze problems that involve fluid flows. Computers are used to perform the millions of calculations required to simulate the interaction of liquids and gases with surfaces defined by boundary conditions. Even with high-speed supercomputers only approximate solutions can be achieved in many cases. Ongoing research, however, may yield software that improves the accuracy and speed of complex simulation scenarios such as transonic or turbulent flows. Initial validation of such software is often performed using a wind tunnel with the final validation coming in flight test.

Even for the cases where analytical solution is available, the interpretation of the solution is often difficult because the solution is expressed as a very complicated series. Numerical solution therefore becomes a desirable approach for heat conduction under non-linear, complex geometric configurations, or complex boundary conditions. Instead of obtaining the analytical expression of the temperature distribution, the results of numerical solutions are given at discrete points. The numerical solution involves three steps: (1) discretization of the computational domain, (2) discretization of the governing equations, and (3) solution of the algebraic equations (Murthy et al., 2006).

Contents

Overview

The most fundamental consideration in CFD is how one treats a continuous fluid in a discretized fashion on a computer. One method is to discretize the spatial domain into small cells to form a volume mesh or grid, and then apply a suitable algorithm to solve the equations of motion (Euler equations for inviscid, and Navier–Stokes equations for viscous flow). In addition, such a mesh can be either irregular (for instance consisting of triangles in 2D, or pyramidal solids in 3D) or regular; the distinguishing characteristic of the former is that each cell must be stored separately in memory. Where shocks or discontinuities are present, high resolution schemes such as Total Variation Diminishing (TVD), Flux Corrected Transport (FCT), Essentially NonOscillatory (ENO), or MUSCL schemes are needed to avoid spurious oscillations (Gibbs phenomenon) in the solution.

If one chooses not to proceed with a mesh-based method, a number of alternatives exist, notably :

  • Smoothed particle hydrodynamics (SPH), a Lagrangian method of solving fluid problems,
  • Spectral methods, a technique where the equations are projected onto basis functions like the spherical harmonics and Chebyshev polynomials,
  • Lattice Boltzmann methods (LBM), which simulate an equivalent mesoscopic system on a Cartesian grid, instead of solving the macroscopic system (or the real microscopic physics).

It is possible to directly solve the Navier–Stokes equations for laminar flows and for turbulent flows when all of the relevant length scales can be resolved by the grid (a Direct numerical simulation). In general however, the range of length scales appropriate to the problem is larger than even today's massively parallel computers can model. In these cases, turbulent flow simulations require the introduction of a turbulence model. Large eddy simulations (LES) and the Reynolds-averaged Navier–Stokes equations (RANS) formulation, with the k-ε model or the Reynolds stress model, are two techniques for dealing with these scales.

In many instances, other equations are solved simultaneously with the Navier–Stokes equations. These other equations can include those describing species concentration (mass transfer), chemical reactions, heat transfer, etc. More advanced codes allow the simulation of more complex cases involving multi-phase flows (e.g. liquid/gas, solid/gas, liquid/solid), non-Newtonian fluids (such as blood), or chemically reacting flows (such as combustion).

Methodology

In all of these approaches the same basic procedure is followed.

  • During preprocessing
    • The geometry (physical bounds) of the problem is defined.
    • The volume occupied by the fluid is divided into discrete cells (the mesh). The mesh may be uniform or non uniform.
    • The physical modeling is defined – for example, the equations of motions + enthalpy + radiation + species conservation
    • Boundary conditions are defined. This involves specifying the fluid behaviour and properties at the boundaries of the problem. For transient problems, the initial conditions are also defined.
  • The simulation is started and the equations are solved iteratively as a steady-state or transient.
  • Finally a postprocessor is used for the analysis and visualization of the resulting solution.

Discretization methods

The stability of the chosen discretization is generally established numerically rather than analytically as with simple linear problems. Special care must also be taken to ensure that the discretization handles discontinuous solutions gracefully. The Euler equations and Navier–Stokes equations both admit shocks, and contact surfaces.

Some of the discretization methods being used are:

  • Finite volume method (FVM). This is the "classical" or standard approach used most often in commercial software and research codes. The governing equations are solved on discrete control volumes. FVM recasts the PDE's (Partial Differential Equations) of the N-S equation in the conservative form and then discretize this equation. This guarantees the conservation of fluxes through a particular control volume. Though the overall solution will be conservative in nature there is no guarantee that it is the actual solution. Moreover this method is sensitive to distorted elements which can prevent convergence if such elements are in critical flow regions. This integration approach yields a method that is inherently conservative (i.e. quantities such as density remain physically meaningful)
\frac{\partial}{\partial t}\iiint Q\, dV + \iint F\, d\mathbf{A} = 0,
where Q is the vector of conserved variables, F is the vector of fluxes (see Euler equations or Navier–Stokes equations), V is the cell volume, and \mathbf{A} is the cell surface area.
  • Finite element method (FEM). This method is popular for structural analysis of solids, but is also applicable to fluids. The FEM formulation requires, however, special care to ensure a conservative solution. The FEM formulation has been adapted for use with the Navier–Stokes equations. Although in FEM conservation has to be taken care of, it is much more stable than the FVM. approach[1] Consequently it is the new direction in which CFD is movingTemplate:Citation needed. Generally stability/robustness of the solution is better in FEM though for some cases it might take more memory than FVM methods.(Huebner, 1995)
In this method, a weighted residual equation is formed:
R_i = \iiint W_iQ\,dV^e
where Ri is the equation residual at an element vertex i , Q is the conservation equation expressed on an element basis, Wi is the weight factor and Ve is the volume of the element.
  • Finite difference method. This method has historical importance and is simple to program. It is currently only used in few specialized codes. Modern finite difference codes make use of an embedded boundary for handling complex geometries making these codes highly efficient and accurate. Other ways to handle geometries are using overlapping-grids, where the solution is interpolated across each grid.
 
\frac{\partial Q}{\partial t}+
\frac{\partial F}{\partial x}+
\frac{\partial G}{\partial y}+
\frac{\partial H}{\partial z}=0
Where Q is the vector of conserved variables, and F, G, and H are the fluxes in the x, y, and z directions respectively.
  • Boundary element method. The boundary occupied by the fluid is divided into surface mesh.
  • High-resolution schemes are used where shocks or discontinuities are present. To capture sharp changes in the solution requires the use of second or higher order numerical schemes that do not introduce spurious oscillations. This usually necessitates the application of flux limiters to ensure that the solution is total variation diminishing.

Discretization of Computational Domain and Governing Equations

The discretization of the computational domain is a process that divides the computational domain into many control volumes as shown in the figure below (Patankar, 1980). Each subdomain is bounded by faces represented by the dashed lines. The physical properties of the cell are defined at the grid points. In Practice A, the faces are always located midway between the grid points. On the contrary, the grid points are always located in the center of the control volume in Practice B. Obviously, if a uniform grid is used, the two practices result in identical grid size and therefore, any discussion on the differences between two practices are meaningful only if the grid size is not uniform. Since the faces in Practice A are located in the midway between grid points, the heat flux across the faces can be more accurately calculated. The disadvantage of Practice A is that the properties of the entire control volume are represented by a point not located in the center of the control volume, which will result in inaccuracy. On the other hand, the properties of the entire control volume in Practice B are represented by the grid point at the center which is a better representation. In addition, Practice

Discritization of the computational domain.
Discritization of the computational domain.

B can easily handle discontinuity of thermophysical properties or boundary conditions. The discretization of governing equations can be done by local or point-wise representation of the partial differential equations (finite difference method; FDM), or weighted integral of the partial differential equations (finite element method; FEM). Patankar (1980) proposed a finite volume method (FVM) involving obtaining the discretized equation by performing integration on the governing equation over the small region. While the resultant algebraic equations for FVM and FDM are often similar, the FVM can guarantee conservation of the mass, momentum and energy on each cell, regardless of the size of the cell. The FVM can also be very easily extended to convective heat transfer because mature numerical methods have been developed in the last three decades.

Other Numerical Methods

Other notable methods for numerical solution of heat conduction problems include boundary element method (BEM) that volume integrals are converted to surface integrals, as well as spectral methods that approximate solutions by a series of functions. The drawback of these methods is that they are very difficult to be extended to convective heat transfer.

References

Murthy, J.Y., Minkowycz, W.J., Sparrow, E.M., and Mathur, S.R., “Survey of Numerical Methods,” Handbook of Numerical Heat Transfer, 2nd ed., eds., Minkowycz, W.J., Sparrow, E.M., and Murthy, J.Y., pp. 3-51, Wiley, New York.

Patankar, S.V., 1980, Numerical Heat Transfer and Fluid Flow, Hemisphere, Washington, DC.

Further Reading

External Links


Cite error: <ref> tags exist, but no <references/> tag was found