297 lines
8.0 KiB
C
297 lines
8.0 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2013-2018 OpenFOAM Foundation
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
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 "turbulenceFields.H"
|
|
#include "turbulentTransportModel.H"
|
|
#include "turbulentFluidThermoModel.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace functionObjects
|
|
{
|
|
defineTypeNameAndDebug(turbulenceFields, 0);
|
|
|
|
addToRunTimeSelectionTable
|
|
(
|
|
functionObject,
|
|
turbulenceFields,
|
|
dictionary
|
|
);
|
|
}
|
|
}
|
|
|
|
template<>
|
|
const char* Foam::NamedEnum
|
|
<
|
|
Foam::functionObjects::turbulenceFields::compressibleField,
|
|
9
|
|
>::names[] =
|
|
{
|
|
"k",
|
|
"epsilon",
|
|
"omega",
|
|
"mut",
|
|
"muEff",
|
|
"alphat",
|
|
"alphaEff",
|
|
"R",
|
|
"devRhoReff"
|
|
};
|
|
|
|
const Foam::NamedEnum
|
|
<
|
|
Foam::functionObjects::turbulenceFields::compressibleField,
|
|
9
|
|
> Foam::functionObjects::turbulenceFields::compressibleFieldNames_;
|
|
|
|
template<>
|
|
const char* Foam::NamedEnum
|
|
<
|
|
Foam::functionObjects::turbulenceFields::incompressibleField,
|
|
7
|
|
>::names[] =
|
|
{
|
|
"k",
|
|
"epsilon",
|
|
"omega",
|
|
"nut",
|
|
"nuEff",
|
|
"R",
|
|
"devReff"
|
|
};
|
|
|
|
const Foam::NamedEnum
|
|
<
|
|
Foam::functionObjects::turbulenceFields::incompressibleField,
|
|
7
|
|
> Foam::functionObjects::turbulenceFields::incompressibleFieldNames_;
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::functionObjects::turbulenceFields::turbulenceFields
|
|
(
|
|
const word& name,
|
|
const Time& runTime,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
fvMeshFunctionObject(name, runTime, dict),
|
|
fieldSet_()
|
|
{
|
|
read(dict);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::functionObjects::turbulenceFields::~turbulenceFields()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
const Foam::word& Foam::functionObjects::turbulenceFields::modelName()
|
|
{
|
|
return Foam::turbulenceModel::propertiesName;
|
|
}
|
|
|
|
|
|
bool Foam::functionObjects::turbulenceFields::read(const dictionary& dict)
|
|
{
|
|
if (dict.found("field"))
|
|
{
|
|
fieldSet_.insert(word(dict.lookup("field")));
|
|
}
|
|
else
|
|
{
|
|
fieldSet_.insert(wordList(dict.lookup("fields")));
|
|
}
|
|
|
|
Info<< type() << " " << name() << ": ";
|
|
if (fieldSet_.size())
|
|
{
|
|
Info<< "storing fields:" << nl;
|
|
forAllConstIter(wordHashSet, fieldSet_, iter)
|
|
{
|
|
Info<< " " << modelName() << ':' << iter.key() << nl;
|
|
}
|
|
Info<< endl;
|
|
}
|
|
else
|
|
{
|
|
Info<< "no fields requested to be stored" << nl << endl;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
bool Foam::functionObjects::turbulenceFields::execute()
|
|
{
|
|
if (obr_.foundObject<compressible::turbulenceModel>(modelName()))
|
|
{
|
|
const compressible::turbulenceModel& model =
|
|
obr_.lookupObject<compressible::turbulenceModel>(modelName());
|
|
|
|
forAllConstIter(wordHashSet, fieldSet_, iter)
|
|
{
|
|
const word& f = iter.key();
|
|
switch (compressibleFieldNames_[f])
|
|
{
|
|
case compressibleField::k:
|
|
{
|
|
processField<scalar>(f, model.k());
|
|
break;
|
|
}
|
|
case compressibleField::epsilon:
|
|
{
|
|
processField<scalar>(f, model.epsilon());
|
|
break;
|
|
}
|
|
case compressibleField::omega:
|
|
{
|
|
processField<scalar>(f, omega(model));
|
|
break;
|
|
}
|
|
case compressibleField::mut:
|
|
{
|
|
processField<scalar>(f, model.mut());
|
|
break;
|
|
}
|
|
case compressibleField::muEff:
|
|
{
|
|
processField<scalar>(f, model.muEff());
|
|
break;
|
|
}
|
|
case compressibleField::alphat:
|
|
{
|
|
processField<scalar>(f, model.alphat());
|
|
break;
|
|
}
|
|
case compressibleField::alphaEff:
|
|
{
|
|
processField<scalar>(f, model.alphaEff());
|
|
break;
|
|
}
|
|
case compressibleField::R:
|
|
{
|
|
processField<symmTensor>(f, model.R());
|
|
break;
|
|
}
|
|
case compressibleField::devRhoReff:
|
|
{
|
|
processField<symmTensor>(f, model.devRhoReff());
|
|
break;
|
|
}
|
|
default:
|
|
{
|
|
FatalErrorInFunction
|
|
<< "Invalid field selection" << exit(FatalError);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else if (obr_.foundObject<incompressible::turbulenceModel>(modelName()))
|
|
{
|
|
const incompressible::turbulenceModel& model =
|
|
obr_.lookupObject<incompressible::turbulenceModel>(modelName());
|
|
|
|
forAllConstIter(wordHashSet, fieldSet_, iter)
|
|
{
|
|
const word& f = iter.key();
|
|
switch (incompressibleFieldNames_[f])
|
|
{
|
|
case incompressibleField::k:
|
|
{
|
|
processField<scalar>(f, model.k());
|
|
break;
|
|
}
|
|
case incompressibleField::epsilon:
|
|
{
|
|
processField<scalar>(f, model.epsilon());
|
|
break;
|
|
}
|
|
case incompressibleField::omega:
|
|
{
|
|
processField<scalar>(f, omega(model));
|
|
break;
|
|
}
|
|
case incompressibleField::nut:
|
|
{
|
|
processField<scalar>(f, model.nut());
|
|
break;
|
|
}
|
|
case incompressibleField::nuEff:
|
|
{
|
|
processField<scalar>(f, model.nuEff());
|
|
break;
|
|
}
|
|
case incompressibleField::R:
|
|
{
|
|
processField<symmTensor>(f, model.R());
|
|
break;
|
|
}
|
|
case incompressibleField::devReff:
|
|
{
|
|
processField<symmTensor>(f, model.devReff());
|
|
break;
|
|
}
|
|
default:
|
|
{
|
|
FatalErrorInFunction
|
|
<< "Invalid field selection" << exit(FatalError);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
FatalErrorInFunction
|
|
<< "Turbulence model not found in database, deactivating"
|
|
<< exit(FatalError);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
bool Foam::functionObjects::turbulenceFields::write()
|
|
{
|
|
forAllConstIter(wordHashSet, fieldSet_, iter)
|
|
{
|
|
const word fieldName = modelName() + ':' + iter.key();
|
|
writeObject(fieldName);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|