Turbulent Flow Over Tutorial13
Turbulent Flow Over Tutorial13
Table of Contents
Introduction and Problem Definition ....................................................................................... 1
Turbulence Model ............................................................................................................... 2
Solution ............................................................................................................................. 3
Postprocessing .................................................................................................................... 6
References ........................................................................................................................ 10
Copyrights ........................................................................................................................ 10
http://www.quickersim.com/cfd-toolbox-for-matlab/index.
Geometry of the computational domain is shown below along with the ids of Physical Lines. We will
simulate flow at an angle of attack of 5 degrees and Reynolds number of 50 000 based on airfoil chord.
1
Tutorial 13: Turbulent Flow
over a NACA Airfoil -
CITM Turbulence Model
Turbulence Model
CITM (Constant Intensity Turbulence Model) is a model which combines the well known Van-Driest
model (refer to Tutorial 12 for details and an example) and the idea of the VL (Chen-Xu) turbulence model
used for HVAC applications (see reference [1]). Let us remind a couple of formulae from turbulence theory
and modelling. The turbulence model determines turbulent viscosity by
Turbulent kinetic energy can be defined by means of turbulence intensity and flow velocity as
Futhermore, knowing the turbulent length scale one can determine dissipation of turbulent kinetic
energy as
Combining the above equations yields the following formula for turbulent viscosity
2
Tutorial 13: Turbulent Flow
over a NACA Airfoil -
CITM Turbulence Model
The CITM model uses distance to the closest wall as the turbulent length scale or the 'Ltmax' parameter
specified by the user, if distance to the closest wall is greater than 'Ltmax'. This manifests the fact that
turbulent length scale should not grow unbounded in freestream. In the boundary layer the CITM model
uses a blending function to switch from the assumption of constant turbulence intensity and length scale
to Van-Driest model which proved to be appropriate in proximity of walls. The Van-Driest model used
close to the wall is defined by:
with
Solution
In this section we provide the script which simulates turbulent flow around a NACA-0012 airfoil. Majority
of description is provided in comments to the source code - details of subsequent functions can be found
in documentation.
clc;
clear;
3
Tutorial 13: Turbulent Flow
over a NACA Airfoil -
CITM Turbulence Model
% Solve equations
us = u;
u = NS\F;
end
0 6.6408 0.5810 0
4
Tutorial 13: Turbulent Flow
over a NACA Airfoil -
CITM Turbulence Model
2.0000 1.0628 0.0980 0.0000
5
Tutorial 13: Turbulent Flow
over a NACA Airfoil -
CITM Turbulence Model
Postprocessing
% Display x-velocity field
figure(3)
displaySolution2D(p,t,u(indices.indu),'x-velocity');
6
Tutorial 13: Turbulent Flow
over a NACA Airfoil -
CITM Turbulence Model
title('Pressure coefficient distribution');
grid on;
Cd =
0.0633
Cl =
0.4795
7
Tutorial 13: Turbulent Flow
over a NACA Airfoil -
CITM Turbulence Model
8
Tutorial 13: Turbulent Flow
over a NACA Airfoil -
CITM Turbulence Model
Below we show the pressure coefficient and velocity field in close surrounding of the airfoil.
9
Tutorial 13: Turbulent Flow
over a NACA Airfoil -
CITM Turbulence Model
References
[1] Q. Chen, W. Xu, "A zero-equation turbulence model for indoor airflow simulation", Energy and Build-
ings 28 (1998) 137-144.
Copyrights
All rigths reserved for QuickerSim Ltd.
10