Smagorinsky Subgrid Scale Model

The Smagorinsky Subgrid Scale model is the original and most basic subgrid scale model, upon which many more advanced models are based. This model uses a mixing length hypothesis to model the subgrid scale stresses.

One shortcoming of the Smagorinsky Subgrid Scale model is that it contains a model coefficient Cs that is not universal and depends on the local flow conditions. Additionally, a damping function is needed for proper results in wall-bounded flows. The Van Driest damping function is a non-local operation, requiring the use of a KD-tree data structure to communicate wall information to the interior. In simulations with very complex geometries, this KD-tree must be broadcast to each parallel node, resulting in a memory and communication overhead. An update policy can be used to improve the communication overhead, but not the memory overhead. Therefore, this model should be avoided for large-scale computations on complex geometries. It is, however, useful for reference simulations, since it is the original algebraic subgrid scale model formulation.

Smagorinsky Subgrid Scale Viscosity

The Smagorinsky Subgrid Scale model [355] provides the following mixing-length type formula for the subgrid scale viscosity:

Figure 1. EQUATION_DISPLAY
μt=ρΔ2S
(1387)

where:

  • ρ is the density.
  • Δ is the length scale or grid filter width.
  • S is given by Eqn. (1129) and computed from the resolved velocity field v˜.

The length scale Δ is directly related to the cell volume V and the wall distance d as follows:

Figure 2. EQUATION_DISPLAY
Δ={fv CsV1/3   if length scale limit not appliedfv min(κd,CsV1/3)   if  length scale limit is applied
(1388)

where:

The Van Driest damping function f v computed as follows:

Figure 3. EQUATION_DISPLAY
fv={1no damping1-exp(-y+A)standard 1-exp(-y+A)3modified
(1389)

where A is a Model Coefficient.

y+ is the dimensionless wall distance defined as:

y+=u*dν
(1390)

where:

  • u* is the friction velocity computed from the instantaneous wall shear stress at the nearest wall face.
  • d is the distance to the wall.
  • ν is the kinematic viscosity.

The modified version of the Van Driest damping function [357] is attributed to Piomelli and co-workers [351].

Model Coefficients

Cs κ A
0.1 0.41 25
The model coefficient Cs is not universal. Typical values of Cs reported in the literature range from 0.165 for homogeneous isotropic decaying turbulence to 0.07 for channel flows. The default value of Cs=0.1 is a compromise between these two extremes.