All Courses
All Courses
Computational Fluid Dynamics : The term computational refers to one of the pathways to solve the fluid flow equations. the other possible pathways are experimental fluid dynamics and theoretical fluid dynamics. In experimental fluid dynamics, various experimental techniques are employed to determine the fluid flow…
Amith Ganta
updated on 24 Aug 2021
Computational Fluid Dynamics :
The term computational refers to one of the pathways to solve the fluid flow equations. the other possible pathways are experimental fluid dynamics and theoretical fluid dynamics. In experimental fluid dynamics, various experimental techniques are employed to determine the fluid flow phenomena. Theoretical fluid dynamics also refers to analytical fluid dynamics where we mathematically solve the governing equations to achieve fluid flow solution. In computational fluid dynamics, various numerical techniques are employed to simulate the flow of fluid using computers.
Fluid: Any material that cannot resist the flow of shear stress is called fluid. All Liquids and Gases are referred to as Fluids.
Dynamics: to determine both the kinematics parameters such as velocity, acceleration and the effect these parameters causes such as Force (Lift, Drag, Pressure forces, etc)
Computational fluid dynamics allows estimation of all flow-related phenomena using computers. This helps solve complex fluid flow phenomena and results can be obtained in no time with less cost than experimental technique.
Governing Equations :
2D incompressible flow:
Conservation of Mass :
∂u∂x+∂v∂y=0∂u∂x+∂v∂y=0
Conservation of Momentum :
∂u∂t+u∂u∂x+v∂u∂y=-1ρ∂p∂x+ϑ(∂2u∂x2+∂2u∂y2)+Fx
∂v∂t+u∂v∂x+v∂v∂y=-1ρ∂p∂y+ϑ(∂2v∂x2+∂2v∂y2)+Fy
In CFD, these differential equations are converted into Algebraic equations so that they can easily be manipulated. Finite differencing methods are one of the ways to convert them.
Taylor series:
Taylor series helps in determining the value of a function f(x) at multiple grid points.
if the value of a function is known at any given point x0, then by using taylor series, the value of the function at a distance h from x0 can be approximated.
f(x0+h)=f(x0)→Zeroth approximation
f(x0+h)=f(x0)+hf′(x0)→ First order approximation (Linear)
f(x0+h)=f(x0)+hf′(x0)+h22!f′′(x0)→ Second order approximation (curvature)
f(x0+h)=f(x0)+hf′(x0)+h22!f′′(x0)+h33!f′′′(x0)+...hnn!fn(x0)+...→ General Formulation - (1)
f(x0-h)=f(x0)-hf′(x0)+h22!f′′(x0)-h33!f′′′(x0)+...(-1)nhnn!fn(x0)→General Formulation
Forward differencing :
After rearranging the terms
f′(x0)=f(x0+h)-f(x0)h-(h2!f′′(x0)-h23!f′′′(x0)+...hn-1n!fn(x0)+...)
in most of the cases h is always less than 1
therefore h>h2>h3>h4....
f′(x0)=f(x0+h)-f(x0)h - O(h)
f(x0+h)-f(x0)h→ Approximation
O(h)→ Truncation error
Backward differencing :
After rearranging the terms
f′(x0)=f(x0)-f(x0-h)h+(h2!f′′(x0)-h23!f′′′(x0)+...(-1)nhn-1n!fn(x0)+...)
f(x0)-f(x0-h)h→Approximation
O(h)→ Truncation error
Central Differencing :
f′(x0)=f(x0+h)-f(x0-h)2h-(h23!f′′′(x0)+...hn-1n!fn(x0)+...)
f(x0+h)-f(x0-h)2h→ Approximation
h23!f′′′(x0)+...hn-1n!fn(x0)+...→ O(h^2) → Truncation error
* Central differencing method gives better approximation results compared to Forward and Backward differencing methods
Example :
f(x)=-4x3+7x2-3x+9
f′(x)=-12x2+14x-3
f′(0)=-3
The same can be approximated using finite difference methods. The following program has been executed in python
# Getting the numpy module
import math
import matplotlib.pyplot as plt
import numpy as np
# polynomial definition
poly_p = np.array([-4, 7, -3, 9])
# Polynomial derivative (numpy)
p_der = np.polyder(poly_p)
# confirmation of correct derivative polynomial
print('Derivative polynomial =' , p_der)
# Analytical result at x = 0
p_der_eval = np.polyval(p_der,0.0)
print('Theoritical Derivative =' , p_der_eval)
#Numerical calculations using FDM (forward)
x_0 = 0.0
h = np.float64(0.25)
forward_difference = (np.polyval(poly_p, (x_0 + h)) - np.polyval(poly_p, x_0))/h
print('Forward derivative =', forward_difference)
#Numerical calculations using FDM (backward)
x_0 = 0.0
h = np.float64(0.25)
backward_difference = (np.polyval(poly_p, (x_0)) - np.polyval(poly_p, x_0 - h))/h
print('Backward derivative =', backward_difference)
#Numerical calculations using FDM (central)
x_0 = 0.0
h = np.float64(0.25)
central_difference = (np.polyval(poly_p, (x_0 + h)) - np.polyval(poly_p, x_0 - h))/(2*h)
print('Central derivative =', central_difference)
Results
Derivative polynomial = [-12 14 -3]
Theoritical Derivative = -3.0
Forward derivative = -1.5
Backward derivative = -5.0
Central derivative = -3.25
Second-order derivative :
From the above forward difference and backward difference equations, the second derivative can be determined as follows
Central differencing :
f′′(x0)=f(x0+h)-2f(x0)+f(x0-h)h-(2h24!fiv(xo)+....)
f′′(x0)=f(x0+h)-2f(x0)+f(x0-h)h2-O(h2)
Forward differencing :
2f(x0+h)=2f(x0)+2hf′(x0)+2h22!f′′(x0)+2h33!f′′′(x0)+...2hnn!fn(x0)+...
f(x0+2h)=f(x0)+2hf′(x0)+4h22!f′′(x0)+8h33!f′′′(x0)+...(2h)nn!fn(x0)+...
f′′(x0)=f(x0+2h)-2f(x0+h)+f(x0)h2-O(h2)
similarly for
backward differencing :
f′′(x0)=f(x0)-2f(x0-h)+f(x0-2h)h2-O(h2)
Introduction to Finite Volume method (FVM)
In CFD, the physical domain is discretized into a computational mesh to solve the algebraic (converted partial differential) equations. In these series of points some are defined at the boundary and the other at the interior points. The function is evaluated at the node (grid) points
The building block of FVM
In a finite volume, the grid point is the centroid of the volume.
There are two methods in which the domain can be discretized in the Finite Volume method
1D mesh FVM
In the first method, the domain is put over a finite-difference mesh. A finite volume is substituted around each grid point. Even the boundary points here have a finite volume. But the volume will be halved.
The whole domain will have an equal number of finite volumes or equal size of finite volumes in the second method. This will reduce the total number of grid points. Also, there will be no grid points at the boundary.
If boundary conditions and boundary values are defined, then the first method is employed. If rather than boundary value boundary flux is defined then the second method is suitable.
Methodology of FVM
The governing equation is integrated over the finite volume in FVM. The volume is generated between adjacent grid points. The faces where this finite volume is generated are east face(e) and west face(w). The fundamental principle in using FVM is to take the governing equations and simply integrate them over the finite volume.
∫d2Tdx2dV=0
∫wed2Tdx2dx=0
| dTdx|e-| dTdx|w=0
Depending on the variation of function between two grid points, the derivatives are numerically approximated.
Basic Algorithm used in Matlab and Python to solve equations in FVM
1D heat conduction :
The physics of the simulation is governed by the differential equation of pure diffusion
d2Tdx2=0
Initially,
T(t =0 , x < 1) = 0 & T(t = 0, x = 1) = 1 ; (Initial conditions)
at any other instant T (t=t , x =0) =0 and T(t = t, x = 1) = 1 (Boundary conditions)
Objective :
To calculate the temperature distribution T(x), at equilibrium using the finite difference method.
The general idea of tackling a CFD problem
d2Tdx2=0
↓ central difference scheme
T′′(xo)=T(x0+h)-2T(x0)+T(x0-h)h2=0
T(x0)=(12)⋅(T(x0+h)+T(x0-h))
Use the above T(x0) at the second, third, fourth,.... (n-1) point. The edges are fixed in this case.
Converge is achieved until the error reaches the required error ε
∑x=x0|Tn-To|<ε
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Quater car modelling using Matlab
Quarter Car model …
22 Nov 2022 09:11 PM IST
Single cylinder SI engine modelling using GT-Suite
Introduction to GT Suite Effective utilization of simulation software with human intelligence is required…
03 Apr 2022 12:50 AM IST
internship formulas
∂ωx∂t=[2⋅a2a2+c2-2⋅a2a2+b2]⋅ωz⋅ωy+Posin(t)⋅2⋅a2a2+b2⋅ωZ+2⋅a2a2+c2⋅ωy+Posin(t)+L⋅τx ∂ωy∂t=[2⋅b2a2+b2-2⋅b2b2+c2]⋅ωx⋅ωz+Pocos(t)⋅2⋅b2a2+b2⋅ωZ-2⋅b2b2+c2⋅ωx+Pocos(t)+L⋅τy…
30 Oct 2021 02:16 PM IST
CI engine modelling of 2019 Chevrolet Silverado Duramax Diesel Engine Using GT Suite
Introduction to CI engines Compression - ignition or diesel engine…
17 Sep 2021 09:30 AM IST
Related Courses