CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Wiki > Basic aspects of discretization

Basic aspects of discretization

From CFD-Wiki

Revision as of 04:33, 21 May 2014 by Adityakashi (Talk | contribs)
Jump to: navigation, search

There are various methods of discretization, which can broadly be classified into mesh (grid) methods and mesh-free methods. Currently (as of 2014), mainly mesh methods are being used.

Contents

Mesh Methods

These methods involve two steps:

  1. Meshing - divide the region ("domain") into smaller regions. These smaller regions may be triangles and rectangles (in 2D) and tetrahedrons, hexahedrons (in 3D) and other types of geometric entities. The vertices of these geometric entities are called nodes.
  2. Discretization of the governing equations over the mesh

Finite Differences

The general idea behind discretization is to break a domain into a mesh, and then replace derivatives in the governing equation with difference quotients. There are several ways in which this can be done - the most prominent being forward difference, backward difference and central difference.

To give an example, in the forward difference scheme, derivatives are approximated as follows.  f'(x_i)= \frac{f(x_{i+1})-f(x_i)}{x_{i+1}-x_i} where subscripts are node indices of the mesh.

The article on finite difference method is here.

Finite Volumes

The article on finite volume method is here.

Finite Elements

Meshfree Methods

Several kinds of meshfree methods are also in use. Many are being actively developed. Some such methods are:

  1. Smooth Particle Hydrodynamics (SPH)
  2. Finite Pointset Method (FPM) (This is relatively recent)
My wiki