- Avoids the need for the 'OutputFilterFunctionObject' wrapper
- Time-control for execution and writing is now provided by the
'timeControlFunctionObject' which instantiates the processing
'functionObject' and controls its operation.
- Alternative time-control functionObjects can now be written and
selected at run-time without the need to compile wrapped version of
EVERY existing functionObject which would have been required in the
old structure.
- The separation of 'execute' and 'write' functions is now formalized in the
'functionObject' base-class and all derived classes implement the
two functions.
- Unnecessary implementations of functions with appropriate defaults
in the 'functionObject' base-class have been removed reducing
clutter and simplifying implementation of new functionObjects.
- The 'coded' 'functionObject' has also been updated, simplified and tested.
- Further simplification is now possible by creating some general
intermediate classes derived from 'functionObject'.
274 lines
7.3 KiB
C
274 lines
7.3 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2013-2016 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 "wallShearStress.H"
|
|
#include "volFields.H"
|
|
#include "surfaceFields.H"
|
|
#include "turbulentTransportModel.H"
|
|
#include "turbulentFluidThermoModel.H"
|
|
#include "wallPolyPatch.H"
|
|
#include "addToRunTimeSelectionTable.H"
|
|
|
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
namespace functionObjects
|
|
{
|
|
defineTypeNameAndDebug(wallShearStress, 0);
|
|
addToRunTimeSelectionTable(functionObject, wallShearStress, dictionary);
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * //
|
|
|
|
void Foam::functionObjects::wallShearStress::writeFileHeader(const label i)
|
|
{
|
|
// Add headers to output data
|
|
writeHeader(file(), "Wall shear stress");
|
|
writeCommented(file(), "Time");
|
|
writeTabbed(file(), "patch");
|
|
writeTabbed(file(), "min");
|
|
writeTabbed(file(), "max");
|
|
file() << endl;
|
|
}
|
|
|
|
|
|
void Foam::functionObjects::wallShearStress::calcShearStress
|
|
(
|
|
const fvMesh& mesh,
|
|
const volSymmTensorField& Reff,
|
|
volVectorField& shearStress
|
|
)
|
|
{
|
|
forAllConstIter(labelHashSet, patchSet_, iter)
|
|
{
|
|
label patchi = iter.key();
|
|
const polyPatch& pp = mesh.boundaryMesh()[patchi];
|
|
|
|
vectorField& ssp = shearStress.boundaryFieldRef()[patchi];
|
|
const vectorField& Sfp = mesh.Sf().boundaryField()[patchi];
|
|
const scalarField& magSfp = mesh.magSf().boundaryField()[patchi];
|
|
const symmTensorField& Reffp = Reff.boundaryField()[patchi];
|
|
|
|
ssp = (-Sfp/magSfp) & Reffp;
|
|
|
|
vector minSsp = gMin(ssp);
|
|
vector maxSsp = gMax(ssp);
|
|
|
|
if (Pstream::master())
|
|
{
|
|
file() << mesh.time().value()
|
|
<< token::TAB << pp.name()
|
|
<< token::TAB << minSsp
|
|
<< token::TAB << maxSsp
|
|
<< endl;
|
|
}
|
|
|
|
if (log_) Info<< " min/max(" << pp.name() << ") = "
|
|
<< minSsp << ", " << maxSsp << endl;
|
|
}
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
Foam::functionObjects::wallShearStress::wallShearStress
|
|
(
|
|
const word& name,
|
|
const Time& runTime,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
writeFiles(name, runTime, dict, name),
|
|
patchSet_()
|
|
{
|
|
if (!isA<fvMesh>(obr_))
|
|
{
|
|
FatalErrorInFunction
|
|
<< "objectRegistry is not an fvMesh" << exit(FatalError);
|
|
}
|
|
|
|
const fvMesh& mesh = refCast<const fvMesh>(obr_);
|
|
|
|
volVectorField* wallShearStressPtr
|
|
(
|
|
new volVectorField
|
|
(
|
|
IOobject
|
|
(
|
|
type(),
|
|
mesh.time().timeName(),
|
|
mesh,
|
|
IOobject::NO_READ,
|
|
IOobject::NO_WRITE
|
|
),
|
|
mesh,
|
|
dimensionedVector
|
|
(
|
|
"0",
|
|
sqr(dimLength)/sqr(dimTime),
|
|
Zero
|
|
)
|
|
)
|
|
);
|
|
|
|
mesh.objectRegistry::store(wallShearStressPtr);
|
|
|
|
read(dict);
|
|
resetName(typeName);
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
|
|
|
|
Foam::functionObjects::wallShearStress::~wallShearStress()
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
bool Foam::functionObjects::wallShearStress::read(const dictionary& dict)
|
|
{
|
|
writeFiles::read(dict);
|
|
|
|
const fvMesh& mesh = refCast<const fvMesh>(obr_);
|
|
const polyBoundaryMesh& pbm = mesh.boundaryMesh();
|
|
|
|
patchSet_ =
|
|
mesh.boundaryMesh().patchSet
|
|
(
|
|
wordReList(dict.lookupOrDefault("patches", wordReList()))
|
|
);
|
|
|
|
Info<< type() << " " << name() << ":" << nl;
|
|
|
|
if (patchSet_.empty())
|
|
{
|
|
forAll(pbm, patchi)
|
|
{
|
|
if (isA<wallPolyPatch>(pbm[patchi]))
|
|
{
|
|
patchSet_.insert(patchi);
|
|
}
|
|
}
|
|
|
|
Info<< " processing all wall patches" << nl << endl;
|
|
}
|
|
else
|
|
{
|
|
Info<< " processing wall patches: " << nl;
|
|
labelHashSet filteredPatchSet;
|
|
forAllConstIter(labelHashSet, patchSet_, iter)
|
|
{
|
|
label patchi = iter.key();
|
|
if (isA<wallPolyPatch>(pbm[patchi]))
|
|
{
|
|
filteredPatchSet.insert(patchi);
|
|
Info<< " " << pbm[patchi].name() << endl;
|
|
}
|
|
else
|
|
{
|
|
WarningInFunction
|
|
<< "Requested wall shear stress on non-wall boundary "
|
|
<< "type patch: " << pbm[patchi].name() << endl;
|
|
}
|
|
}
|
|
|
|
Info<< endl;
|
|
|
|
patchSet_ = filteredPatchSet;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
bool Foam::functionObjects::wallShearStress::execute(const bool postProcess)
|
|
{
|
|
typedef compressible::turbulenceModel cmpModel;
|
|
typedef incompressible::turbulenceModel icoModel;
|
|
|
|
writeFiles::write();
|
|
|
|
const fvMesh& mesh = refCast<const fvMesh>(obr_);
|
|
|
|
volVectorField& wallShearStress =
|
|
const_cast<volVectorField&>
|
|
(
|
|
mesh.lookupObject<volVectorField>(type())
|
|
);
|
|
|
|
if (log_) Info<< type() << " " << name() << " output:" << nl;
|
|
|
|
|
|
tmp<volSymmTensorField> Reff;
|
|
if (mesh.foundObject<cmpModel>(turbulenceModel::propertiesName))
|
|
{
|
|
const cmpModel& model =
|
|
mesh.lookupObject<cmpModel>(turbulenceModel::propertiesName);
|
|
|
|
Reff = model.devRhoReff();
|
|
}
|
|
else if (mesh.foundObject<icoModel>(turbulenceModel::propertiesName))
|
|
{
|
|
const icoModel& model =
|
|
mesh.lookupObject<icoModel>(turbulenceModel::propertiesName);
|
|
|
|
Reff = model.devReff();
|
|
}
|
|
else
|
|
{
|
|
FatalErrorInFunction
|
|
<< "Unable to find turbulence model in the "
|
|
<< "database" << exit(FatalError);
|
|
}
|
|
|
|
calcShearStress(mesh, Reff(), wallShearStress);
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
bool Foam::functionObjects::wallShearStress::write(const bool postProcess)
|
|
{
|
|
writeFiles::write();
|
|
|
|
const volVectorField& wallShearStress =
|
|
obr_.lookupObject<volVectorField>(type());
|
|
|
|
if (log_) Info<< type() << " " << name() << " output:" << nl
|
|
<< " writing field " << wallShearStress.name() << nl
|
|
<< endl;
|
|
|
|
wallShearStress.write();
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|