Newer
Older
/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\/ M anipulation |
-------------------------------------------------------------------------------

Kutalmış Berçin
committed
Copyright (C) 2015-2021 OpenCFD Ltd.
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
Application
applyBoundaryLayer
Group
grpPreProcessingUtilities
Description
Apply a simplified boundary-layer model to the velocity and
turbulence fields based on the 1/7th power-law.
The uniform boundary-layer thickness is either provided via the -ybl option
or calculated as the average of the distance to the wall scaled with
the thickness coefficient supplied via the option -Cbl. If both options
are provided -ybl is used.
Andrew Heather
committed
Compressible modes is automatically selected based on the existence of the
"thermophysicalProperties" dictionary required to construct the
thermodynamics package.
\*---------------------------------------------------------------------------*/
#include "fvCFD.H"
#include "turbulentTransportModel.H"
mattijs
committed
#include "turbulentFluidThermoModel.H"
mattijs
committed
#include "processorFvPatchField.H"
Andrew Heather
committed
#include "zeroGradientFvPatchField.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Turbulence constants - file-scope
static const scalar Cmu(0.09);
static const scalar kappa(0.41);
Andrew Heather
committed
template<class Type>
void correctProcessorPatches
(
GeometricField<Type, fvPatchField, volMesh>& vf
)
mattijs
committed
{
if (!Pstream::parRun())
{
return;
}
// Not possible to use correctBoundaryConditions on fields as they may
// use local info as opposed to the constraint values employed here,
// but still need to update processor patches
auto& bf = vf.boundaryFieldRef();
mattijs
committed
forAll(bf, patchi)
mattijs
committed
{
if (isA<processorFvPatchField<Type>>(bf[patchi]))
mattijs
committed
{
bf[patchi].initEvaluate();
mattijs
committed
}
}
forAll(bf, patchi)
mattijs
committed
{
if (isA<processorFvPatchField<Type>>(bf[patchi]))
mattijs
committed
{
bf[patchi].evaluate();
mattijs
committed
}
}
}
mattijs
committed
(
const scalarField& mask,
const scalarField& boundaryLayerField
mattijs
committed
)
{
IOobject fieldHeader
(
fieldName,
mesh.time().timeName(),
mesh,
IOobject::MUST_READ,
IOobject::NO_WRITE,
false
);
mattijs
committed
if (fieldHeader.typeHeaderOk<volScalarField>(true))
{
volScalarField fld(fieldHeader, mesh);
scalarField& pf = fld.primitiveFieldRef();
pf = (1 - mask)*pf + mask*boundaryLayerField;
mattijs
committed
// Do not correct BC
// - operation may use inconsistent fields wrt these local
// manipulations
//fld.correctBoundaryConditions();
correctProcessorPatches<scalar>(fld);
mattijs
committed
Info<< "Writing " << fieldName << nl << endl;
fld.write();
}
mattijs
committed
}
mattijs
committed
(
const fvMesh& mesh,
const scalarField& mask,
const scalarField& kBL,
const scalarField& epsilonBL
mattijs
committed
)
{
// Turbulence omega
IOobject omegaHeader
(
"omega",
mesh.time().timeName(),
mesh,
IOobject::MUST_READ,
IOobject::NO_WRITE,
false
);
mattijs
committed
if (omegaHeader.typeHeaderOk<volScalarField>(true))
mattijs
committed
{
volScalarField omega(omegaHeader, mesh);
scalarField& pf = omega.primitiveFieldRef();
mattijs
committed
pf = (1 - mask)*pf + mask*epsilonBL/(Cmu*kBL + SMALL);
mattijs
committed
omega.max(SMALL);
// Do not correct BC
// - operation may use inconsistent fields wrt these local
// manipulations
// omega.correctBoundaryConditions();
correctProcessorPatches<scalar>(omega);
mattijs
committed
Info<< "Writing omega\n" << endl;
omega.write();
}
}
void setField
(
const fvMesh& mesh,
const word& fieldName,
const volScalarField& value
)
{
IOobject fldHeader
(
fieldName,
mesh.time().timeName(),
mesh,
IOobject::MUST_READ,
IOobject::NO_WRITE,
false
);
mattijs
committed
if (fldHeader.typeHeaderOk<volScalarField>(true))
mattijs
committed
{
volScalarField fld(fldHeader, mesh);
fld = value;
// Do not correct BC
// - operation may use inconsistent fields wrt these local
// manipulations
// fld.correctBoundaryConditions();
correctProcessorPatches<scalar>(fld);
mattijs
committed
Info<< "Writing " << fieldName << nl << endl;
fld.write();
}
}
mattijs
committed
(
const fvMesh& mesh,
mattijs
committed
)
{
const Time& runTime = mesh.time();
mattijs
committed
(
mattijs
committed
(
basicThermo::dictName,
runTime.constant(),
mesh
).typeHeaderOk<IOdictionary>(true)
)
{
// Compressible
autoPtr<fluidThermo> pThermo(fluidThermo::New(mesh));
fluidThermo& thermo = pThermo();
volScalarField rho(thermo.rho());
mattijs
committed
// Update/re-write phi
#include "compressibleCreatePhi.H"
phi.write();
mattijs
committed
autoPtr<compressible::turbulenceModel> turbulence
(
compressible::turbulenceModel::New
(
rho,
U,
phi,
thermo
)
);
// Correct nut
turbulence->validate();
return tmp<volScalarField>::New(turbulence->nut());
}
else
{
// Incompressible
mattijs
committed
// Update/re-write phi
#include "createPhi.H"
phi.write();
mattijs
committed
singlePhaseTransportModel laminarTransport(U, phi);
mattijs
committed
autoPtr<incompressible::turbulenceModel> turbulence
(
incompressible::turbulenceModel::New(U, phi, laminarTransport)
);
Andrew Heather
committed
// Correct nut
turbulence->validate();
return tmp<volScalarField>::New(turbulence->nut());
mattijs
committed
}
int main(int argc, char *argv[])
{
argList::addNote
(
"Apply a simplified boundary-layer model to the velocity and"
" turbulence fields based on the 1/7th power-law."
mattijs
committed
#include "addRegionOption.H"
argList::addOption
(
"ybl",
"scalar",
"Specify the boundary-layer thickness"
);
argList::addOption
(
"Cbl",
"scalar",
"Boundary-layer thickness as Cbl * mean distance to wall"
Andrew Heather
committed
argList::addBoolOption
(
"writeTurbulenceFields", // (until 1906 was write-nut)
"Write the turbulence fields"
);
argList::addOptionCompat
(
"writeTurbulenceFields", {"write-nut", 1906}
Andrew Heather
committed
);
if (!args.found("ybl") && !args.found("Cbl"))
FatalErrorInFunction
<< "Neither option 'ybl' or 'Cbl' have been provided to calculate "
<< "the boundary-layer thickness.\n"
<< "Please choose either 'ybl' OR 'Cbl'."
<< exit(FatalError);
}
else if (args.found("ybl") && args.found("Cbl"))
FatalErrorInFunction
<< "Both 'ybl' and 'Cbl' have been provided to calculate "
<< "the boundary-layer thickness.\n"
<< "Please choose either 'ybl' OR 'Cbl'."
<< exit(FatalError);
}
const bool writeTurbulenceFields = args.found("writeTurbulenceFields");
Andrew Heather
committed
mattijs
committed
#include "createNamedMesh.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Modify velocity by applying a 1/7th power law boundary-layer
// u/U0 = (y/ybl)^(1/7)
// assumes U0 is the same as the current cell velocity
Info<< "Setting boundary layer velocity" << nl << endl;

Kutalmış Berçin
committed
const scalar yblv = ybl.value();
forAll(U, celli)

Kutalmış Berçin
committed
if ((y[celli] > 0) && (y[celli] <= yblv))
U[celli] *= ::pow(y[celli]/yblv, (1.0/7.0));
correctProcessorPatches<vector>(U);
if (writeTurbulenceFields)
{
// Retrieve nut from turbulence model
volScalarField nut(calcNut(mesh, U));
// Blend nut using boundary layer profile
volScalarField S("S", mag(dev(symm(fvc::grad(U)))));
nut = (1 - mask)*nut + mask*sqr(kappa*min(y, ybl))*::sqrt(2)*S;
// Do not correct BC - wall functions will 'undo' manipulation above
// by using nut from turbulence model
correctProcessorPatches<scalar>(nut);
Andrew Heather
committed
Info<< "Writing nut\n" << endl;
nut.write();
// Boundary layer turbulence kinetic energy
scalar ck0 = pow025(Cmu)*kappa;
scalarField kBL(sqr(nut/(ck0*min(y, ybl))));
mattijs
committed
// Boundary layer turbulence dissipation
scalar ce0 = ::pow(Cmu, 0.75)/kappa;
scalarField epsilonBL(ce0*kBL*sqrt(kBL)/min(y, ybl));
// Process fields if they are present
blendField("k", mesh, mask, kBL);
blendField("epsilon", mesh, mask, epsilonBL);
calcOmegaField(mesh, mask, kBL, epsilonBL);
setField(mesh, "nuTilda", nut);
}
// Write the updated U field
Andrew Heather
committed
Info<< "Writing U\n" << endl;
U.write();
Info<< nl;
runTime.printExecutionTime(Info);
Info<< "End\n" << endl;
}
// ************************************************************************* //