Skip to content
Snippets Groups Projects
applyBoundaryLayer.C 10.1 KiB
Newer Older
/*---------------------------------------------------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     |
OpenFOAM bot's avatar
OpenFOAM bot committed
    \\  /    A nd           | www.openfoam.com
     \\/     M anipulation  |
-------------------------------------------------------------------------------
OpenFOAM bot's avatar
OpenFOAM bot committed
    Copyright (C) 2011-2016 OpenFOAM Foundation
-------------------------------------------------------------------------------
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

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.

    Compressible modes is automatically selected based on the existence of the
    "thermophysicalProperties" dictionary required to construct the
    thermodynamics package.

\*---------------------------------------------------------------------------*/

#include "fvCFD.H"
#include "singlePhaseTransportModel.H"
#include "turbulentTransportModel.H"
#include "wallDist.H"

// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

// Turbulence constants - file-scope
static const scalar Cmu(0.09);
static const scalar kappa(0.41);

template<class Type>
void correctProcessorPatches
(
    GeometricField<Type, fvPatchField, volMesh>& vf
)
{
    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();
        if (isA<processorFvPatchField<Type>>(bf[patchi]))
        if (isA<processorFvPatchField<Type>>(bf[patchi]))
    const word& fieldName,
andy's avatar
andy committed
    const fvMesh& mesh,
    const scalarField& mask,
    const scalarField& boundaryLayerField
    IOobject fieldHeader
    (
        fieldName,
        mesh.time().timeName(),
        mesh,
        IOobject::MUST_READ,
        IOobject::NO_WRITE,
        false
    );
    if (fieldHeader.typeHeaderOk<volScalarField>(true))
    {
        volScalarField fld(fieldHeader, mesh);
        scalarField& pf = fld.primitiveFieldRef();
        pf = (1 - mask)*pf + mask*boundaryLayerField;
        // Do not correct BC
        // - operation may use inconsistent fields wrt these local
        //   manipulations
        //fld.correctBoundaryConditions();
        correctProcessorPatches<scalar>(fld);
        Info<< "Writing " << fieldName << nl << endl;
        fld.write();
    }
void calcOmegaField
    const scalarField& mask,
    const scalarField& kBL,
    const scalarField& epsilonBL
)
{
    // Turbulence omega
    IOobject omegaHeader
    (
        "omega",
        mesh.time().timeName(),
        mesh,
        IOobject::MUST_READ,
        IOobject::NO_WRITE,
        false
    );

    if (omegaHeader.typeHeaderOk<volScalarField>(true))
        scalarField& pf = omega.primitiveFieldRef();
        pf = (1 - mask)*pf + mask*epsilonBL/(Cmu*kBL + SMALL);
        omega.max(SMALL);

        // Do not correct BC
        // - operation may use inconsistent fields wrt these local
        //   manipulations
        // omega.correctBoundaryConditions();
        correctProcessorPatches<scalar>(omega);

        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
    );

    if (fldHeader.typeHeaderOk<volScalarField>(true))
    {
        volScalarField fld(fldHeader, mesh);
        fld = value;

        // Do not correct BC
        // - operation may use inconsistent fields wrt these local
        //   manipulations
        // fld.correctBoundaryConditions();
        correctProcessorPatches<scalar>(fld);
tmp<volScalarField> calcNut
    const volVectorField& U
            basicThermo::dictName,
            runTime.constant(),
            mesh
        ).typeHeaderOk<IOdictionary>(true)
    )
    {
        // Compressible
        autoPtr<fluidThermo> pThermo(fluidThermo::New(mesh));
        fluidThermo& thermo = pThermo();
        volScalarField rho(thermo.rho());
        // Update/re-write phi
        #include "compressibleCreatePhi.H"
        phi.write();
        autoPtr<compressible::turbulenceModel> turbulence
        (
            compressible::turbulenceModel::New
            (
                rho,
                U,
                phi,
                thermo
            )
        );

        // Correct nut
        turbulence->validate();
        return tmp<volScalarField>::New(turbulence->nut());
        // Update/re-write phi
        #include "createPhi.H"
        phi.write();
        singlePhaseTransportModel laminarTransport(U, phi);
        autoPtr<incompressible::turbulenceModel> turbulence
        (
            incompressible::turbulenceModel::New(U, phi, laminarTransport)
        );

        return tmp<volScalarField>::New(turbulence->nut());
int main(int argc, char *argv[])
{
        "Apply a simplified boundary-layer model to the velocity and"
        " turbulence fields based on the 1/7th power-law."
    argList::addOption
    (
        "ybl",
        "scalar",
        "Specify the boundary-layer thickness"
        "Boundary-layer thickness as Cbl * mean distance to wall"
        "writeTurbulenceFields",  // (until 1906 was write-nut)
        "Write the turbulence fields"
    );
    argList::addOptionCompat
    (
        "writeTurbulenceFields", {"write-nut", 1906}
    #include "setRootCase.H"
    if (!args.found("ybl") && !args.found("Cbl"))
            << "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"))
            << "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");
    #include "createTime.H"
    #include "createFields.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;
            U[celli] *= ::pow(y[celli]/yblv, (1.0/7.0));
andy's avatar
andy committed
    mask.correctBoundaryConditions();
    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);
        // Boundary layer turbulence kinetic energy
        scalar ck0 = pow025(Cmu)*kappa;
        scalarField kBL(sqr(nut/(ck0*min(y, ybl))));
        // 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);
    }
    Info<< nl;
    runTime.printExecutionTime(Info);
}


// ************************************************************************* //