/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation Copyright (C) 2019-2022 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 . \*---------------------------------------------------------------------------*/ #include "nutUTabulatedWallFunctionFvPatchScalarField.H" #include "turbulenceModel.H" #include "fvPatchFieldMapper.H" #include "volFields.H" #include "addToRunTimeSelectionTable.H" // * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * // Foam::tmp Foam::nutUTabulatedWallFunctionFvPatchScalarField::calcNut() const { const label patchi = patch().index(); const auto& turbModel = db().lookupObject ( IOobject::groupName ( turbulenceModel::propertiesName, internalField().group() ) ); const scalarField& y = turbModel.y()[patchi]; const fvPatchVectorField& Uw = U(turbModel).boundaryField()[patchi]; const scalarField magUp(mag(Uw.patchInternalField() - Uw)); const scalarField magGradU(mag(Uw.snGrad())); const tmp tnuw = turbModel.nu(patchi); const scalarField& nuw = tnuw(); return max ( scalar(0), sqr(magUp/(calcUPlus(magUp*y/nuw) + ROOTVSMALL)) /(magGradU + ROOTVSMALL) - nuw ); } Foam::tmp Foam::nutUTabulatedWallFunctionFvPatchScalarField::calcUPlus ( const scalarField& Rey ) const { auto tuPlus = tmp::New(patch().size(), Zero); auto& uPlus = tuPlus.ref(); forAll(uPlus, facei) { uPlus[facei] = uPlusTable_.interpolateLog10(Rey[facei]); } return tuPlus; } void Foam::nutUTabulatedWallFunctionFvPatchScalarField::writeLocalEntries ( Ostream& os ) const { os.writeEntry("uPlusTable", uPlusTableName_); } // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::nutUTabulatedWallFunctionFvPatchScalarField:: nutUTabulatedWallFunctionFvPatchScalarField ( const fvPatch& p, const DimensionedField& iF ) : nutWallFunctionFvPatchScalarField(p, iF), uPlusTableName_("undefined-uPlusTableName"), uPlusTable_ ( IOobject ( uPlusTableName_, patch().boundaryMesh().mesh().time().constant(), patch().boundaryMesh().mesh(), IOobject::NO_READ, IOobject::NO_WRITE, IOobject::NO_REGISTER ), false ) {} Foam::nutUTabulatedWallFunctionFvPatchScalarField:: nutUTabulatedWallFunctionFvPatchScalarField ( const nutUTabulatedWallFunctionFvPatchScalarField& ptf, const fvPatch& p, const DimensionedField& iF, const fvPatchFieldMapper& mapper ) : nutWallFunctionFvPatchScalarField(ptf, p, iF, mapper), uPlusTableName_(ptf.uPlusTableName_), uPlusTable_(ptf.uPlusTable_) {} Foam::nutUTabulatedWallFunctionFvPatchScalarField:: nutUTabulatedWallFunctionFvPatchScalarField ( const fvPatch& p, const DimensionedField& iF, const dictionary& dict ) : nutWallFunctionFvPatchScalarField(p, iF, dict), uPlusTableName_(dict.get("uPlusTable")), uPlusTable_ ( IOobject ( uPlusTableName_, patch().boundaryMesh().mesh().time().constant(), patch().boundaryMesh().mesh(), IOobject::MUST_READ_IF_MODIFIED, IOobject::NO_WRITE, IOobject::NO_REGISTER ), true ) {} Foam::nutUTabulatedWallFunctionFvPatchScalarField:: nutUTabulatedWallFunctionFvPatchScalarField ( const nutUTabulatedWallFunctionFvPatchScalarField& wfpsf ) : nutWallFunctionFvPatchScalarField(wfpsf), uPlusTableName_(wfpsf.uPlusTableName_), uPlusTable_(wfpsf.uPlusTable_) {} Foam::nutUTabulatedWallFunctionFvPatchScalarField:: nutUTabulatedWallFunctionFvPatchScalarField ( const nutUTabulatedWallFunctionFvPatchScalarField& wfpsf, const DimensionedField& iF ) : nutWallFunctionFvPatchScalarField(wfpsf, iF), uPlusTableName_(wfpsf.uPlusTableName_), uPlusTable_(wfpsf.uPlusTable_) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // Foam::tmp Foam::nutUTabulatedWallFunctionFvPatchScalarField::yPlus() const { const label patchi = patch().index(); const auto& turbModel = db().lookupObject ( IOobject::groupName ( turbulenceModel::propertiesName, internalField().group() ) ); const scalarField& y = turbModel.y()[patchi]; const fvPatchVectorField& Uw = U(turbModel).boundaryField()[patchi]; const scalarField magUp(mag(Uw.patchInternalField() - Uw)); const tmp tnuw = turbModel.nu(patchi); const scalarField& nuw = tnuw(); const scalarField Rey(magUp*y/nuw); return Rey/(calcUPlus(Rey) + ROOTVSMALL); } void Foam::nutUTabulatedWallFunctionFvPatchScalarField::write ( Ostream& os ) const { nutWallFunctionFvPatchScalarField::write(os); writeLocalEntries(os); fvPatchField::writeValueEntry(os); } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { makePatchTypeField ( fvPatchScalarField, nutUTabulatedWallFunctionFvPatchScalarField ); } // ************************************************************************* //