mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
158 lines
4.1 KiB
C
158 lines
4.1 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2012-2016 OpenFOAM Foundation
|
|
\\/ M anipulation | Copyright (C) 2018 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/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "volFields.H"
|
|
|
|
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
void Foam::functionObjects::turbulenceFields::processField
|
|
(
|
|
const word& fieldName,
|
|
const tmp<GeometricField<Type, fvPatchField, volMesh>>& tvalue
|
|
)
|
|
{
|
|
typedef GeometricField<Type, fvPatchField, volMesh> FieldType;
|
|
|
|
const word scopedName = modelName + ':' + fieldName;
|
|
|
|
if (obr_.foundObject<FieldType>(scopedName))
|
|
{
|
|
FieldType& fld =
|
|
const_cast<FieldType&>(obr_.lookupObject<FieldType>(scopedName));
|
|
fld == tvalue();
|
|
}
|
|
else if (obr_.found(scopedName))
|
|
{
|
|
WarningInFunction
|
|
<< "Cannot store turbulence field " << scopedName
|
|
<< " since an object with that name already exists"
|
|
<< nl << endl;
|
|
}
|
|
else
|
|
{
|
|
obr_.store
|
|
(
|
|
new FieldType
|
|
(
|
|
IOobject
|
|
(
|
|
scopedName,
|
|
obr_.time().timeName(),
|
|
obr_,
|
|
IOobject::READ_IF_PRESENT,
|
|
IOobject::NO_WRITE
|
|
),
|
|
tvalue
|
|
)
|
|
);
|
|
}
|
|
}
|
|
|
|
|
|
template<class Model>
|
|
Foam::tmp<Foam::volScalarField>
|
|
Foam::functionObjects::turbulenceFields::omega
|
|
(
|
|
const Model& model
|
|
) const
|
|
{
|
|
const scalar Cmu = 0.09;
|
|
|
|
// Assume k and epsilon are available
|
|
const volScalarField k(model.k());
|
|
const volScalarField epsilon(model.epsilon());
|
|
|
|
return tmp<volScalarField>::New
|
|
(
|
|
IOobject
|
|
(
|
|
"omega.tmp",
|
|
k.mesh().time().timeName(),
|
|
k.mesh()
|
|
),
|
|
epsilon/(Cmu*k),
|
|
epsilon.boundaryField().types()
|
|
);
|
|
}
|
|
|
|
|
|
template<class Model>
|
|
Foam::tmp<Foam::volScalarField>
|
|
Foam::functionObjects::turbulenceFields::nuTilda
|
|
(
|
|
const Model& model
|
|
) const
|
|
{
|
|
return tmp<volScalarField>::New
|
|
(
|
|
"nuTilda.tmp",
|
|
model.k()/omega(model)
|
|
);
|
|
}
|
|
|
|
|
|
template<class Model>
|
|
Foam::tmp<Foam::volScalarField>
|
|
Foam::functionObjects::turbulenceFields::L
|
|
(
|
|
const Model& model
|
|
) const
|
|
{
|
|
const scalar Cmu = 0.09;
|
|
|
|
// Assume k and epsilon are available
|
|
const volScalarField k(model.k());
|
|
const volScalarField epsilon(model.epsilon());
|
|
const dimensionedScalar eps0("eps0", epsilon.dimensions(), SMALL);
|
|
|
|
return tmp<volScalarField>::New
|
|
(
|
|
"L.tmp",
|
|
pow(Cmu, 0.75)*pow(k, 1.5)/(epsilon + eps0)
|
|
);
|
|
}
|
|
|
|
|
|
template<class Model>
|
|
Foam::tmp<Foam::volScalarField>
|
|
Foam::functionObjects::turbulenceFields::I
|
|
(
|
|
const Model& model
|
|
) const
|
|
{
|
|
// Assume k is available
|
|
const volScalarField uPrime(sqrt((2.0/3.0)*model.k()));
|
|
const dimensionedScalar U0("U0", dimVelocity, SMALL);
|
|
|
|
return tmp<volScalarField>::New
|
|
(
|
|
"I.tmp",
|
|
uPrime/max(max(uPrime, mag(model.U())), U0)
|
|
);
|
|
}
|
|
|
|
// ************************************************************************* //
|