Skip to main content

turbulentDFSEMInlet

Description

The turbulentDFSEMInlet is a synthesised-eddy based velocity inlet boundary condition to generate synthetic turbulence-alike time-series from a given set of turbulence statistics for LES and DES computations.

Usage

The condition requires entries in both the boundary and field files.

Boundary file

<patchName>
{
type patch;
...
}

Field file

<patchName>
{
// Mandatory entries
type turbulentDFSEMInlet;
delta <scalar>;
R <PatchFunction1>;
U <PatchFunction1>;
L <PatchFunction1>;

// e.g.
// R uniform (<Rxx> <Rxy> <Rxz> <Ryy> <Ryz> <Rzz>);
// U uniform (<Ux> <Uy> <Uz>);
// L uniform <L>;

// Optional entries
d <scalar>;
nCellPerEddy <label>;
kappa <scalar>;
Uref <scalar>;
Lref <scalar>;
scale <scalar>;
m <scalar>;
writeEddies <bool>;

// Inherited entries
...
}

where:

PropertyDescriptionTypeRequiredDefault
typeType name: turbulentDFSEMInletwordyes-
deltaCharacteristic length scalescalaryes-
RReynolds-stress tensor fieldPatchFunction1<symmTensor>yes-
UMean velocity fieldPatchFunction1<vector>yes-
LIntegral-length scale fieldPatchFunction1<scalar>yes-
dRatio of sum of eddy volumes to eddy box volume i.e. eddy density (fill fraction)scalarno1.0
nCellPerEddyMinimum eddy length in units of number of cellslabelno5
kappavon Karman constantscalarno0.41
UrefNormalisation factor for Reynolds-stress tensor and mean velocityscalarno1.0
LrefNormalisation factor for integral-length scalescalarno1.0
scaleHeuristic scaling factor being applied on the normalisation factor C1scalarno1.0
mThe power of V defined in C1scalarno0.5
writeEddiesFlag to write eddies as OBJ fileboolnofalse

The inherited entries are elaborated in:

  • The delta value typically represents the characteristic scale of flow or flow domain, e.g. a channel half height for plane channel flows.
  • nCellPerEddy and scale entries are heuristic entries which do not exist in the standard method, yet are necessary to reproduce the results published in the original journal paper.
  • In the original journal paper, C1 in Eq. 11 is not dimensionless. It is not clear whether this dimensionality issue was intentional. To alleviate this matter, users can alter the input entry m, which is the power of the eddy-box volume defined in the C1, to obtain a dimensionless C1 coefficient. The default value of m is 0.5, which is the value stated in the original journal paper, and m=1/3 leads to a dimensionless C1.

Further information

Tutorial:

Source code:

API:

History: Introduced in version v1606+