- implemented as lazy evaluation with an additional update() method. This avoids unnecessary changes until the values are actually required. - apply mesh motion changes for momentum, volFieldValue, specieReactionRates function objects
273 lines
7.1 KiB
C
273 lines
7.1 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | Copyright (C) 2011-2017 OpenFOAM Foundation
|
|
\\/ M anipulation | Copyright (C) 2015-2019 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 "volFieldValue.H"
|
|
#include "volFields.H"
|
|
|
|
// * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
bool Foam::functionObjects::fieldValues::volFieldValue::validField
|
|
(
|
|
const word& fieldName
|
|
) const
|
|
{
|
|
typedef GeometricField<Type, fvPatchField, volMesh> vf;
|
|
|
|
if (obr_.foundObject<vf>(fieldName))
|
|
{
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type>>
|
|
Foam::functionObjects::fieldValues::volFieldValue::getFieldValues
|
|
(
|
|
const word& fieldName,
|
|
const bool mustGet
|
|
) const
|
|
{
|
|
typedef GeometricField<Type, fvPatchField, volMesh> vf;
|
|
|
|
if (obr_.foundObject<vf>(fieldName))
|
|
{
|
|
return filterField(obr_.lookupObject<vf>(fieldName));
|
|
}
|
|
|
|
if (mustGet)
|
|
{
|
|
FatalErrorInFunction
|
|
<< "Field " << fieldName << " not found in database"
|
|
<< abort(FatalError);
|
|
}
|
|
|
|
return tmp<Field<Type>>::New(Zero);
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Type Foam::functionObjects::fieldValues::volFieldValue::processValues
|
|
(
|
|
const Field<Type>& values,
|
|
const scalarField& V,
|
|
const scalarField& weightField
|
|
) const
|
|
{
|
|
Type result = Zero;
|
|
switch (operation_)
|
|
{
|
|
case opNone:
|
|
{
|
|
break;
|
|
}
|
|
case opMin:
|
|
{
|
|
result = gMin(values);
|
|
break;
|
|
}
|
|
case opMax:
|
|
{
|
|
result = gMax(values);
|
|
break;
|
|
}
|
|
case opSumMag:
|
|
{
|
|
result = gSum(cmptMag(values));
|
|
break;
|
|
}
|
|
case opSum:
|
|
case opWeightedSum:
|
|
{
|
|
if (canWeight(weightField))
|
|
{
|
|
result = gSum(weightField*values);
|
|
}
|
|
else
|
|
{
|
|
// Unweighted form
|
|
result = gSum(values);
|
|
}
|
|
break;
|
|
}
|
|
case opAverage:
|
|
case opWeightedAverage:
|
|
{
|
|
if (canWeight(weightField))
|
|
{
|
|
result =
|
|
gSum(weightField*values)/(gSum(weightField) + ROOTVSMALL);
|
|
}
|
|
else
|
|
{
|
|
// Unweighted form
|
|
const label n = returnReduce(values.size(), sumOp<label>());
|
|
result = gSum(values)/(scalar(n) + ROOTVSMALL);
|
|
}
|
|
break;
|
|
}
|
|
case opVolAverage:
|
|
case opWeightedVolAverage:
|
|
{
|
|
if (canWeight(weightField))
|
|
{
|
|
result = gSum(weightField*V*values)
|
|
/(gSum(weightField*V) + ROOTVSMALL);
|
|
}
|
|
else
|
|
{
|
|
// Unweighted form
|
|
result = gSum(V*values)/(gSum(V) + ROOTVSMALL);
|
|
}
|
|
break;
|
|
}
|
|
case opVolIntegrate:
|
|
case opWeightedVolIntegrate:
|
|
{
|
|
if (canWeight(weightField))
|
|
{
|
|
result = gSum(weightField*V*values);
|
|
}
|
|
else
|
|
{
|
|
// Unweighted form
|
|
result = gSum(V*values);
|
|
}
|
|
break;
|
|
}
|
|
case opCoV:
|
|
{
|
|
const scalar sumV = gSum(V);
|
|
|
|
Type meanValue = gSum(V*values)/sumV;
|
|
|
|
for (direction d=0; d < pTraits<Type>::nComponents; ++d)
|
|
{
|
|
tmp<scalarField> vals(values.component(d));
|
|
const scalar mean = component(meanValue, d);
|
|
scalar& res = setComponent(result, d);
|
|
|
|
res = sqrt(gSum(V*sqr(vals - mean))/sumV)/(mean + ROOTVSMALL);
|
|
}
|
|
|
|
break;
|
|
}
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
bool Foam::functionObjects::fieldValues::volFieldValue::writeValues
|
|
(
|
|
const word& fieldName,
|
|
const scalarField& V,
|
|
const scalarField& weightField
|
|
)
|
|
{
|
|
const bool ok = validField<Type>(fieldName);
|
|
|
|
if (ok)
|
|
{
|
|
Field<Type> values(getFieldValues<Type>(fieldName));
|
|
|
|
if (writeFields_)
|
|
{
|
|
Field<Type> allValues(values);
|
|
combineFields(allValues);
|
|
|
|
if (Pstream::master())
|
|
{
|
|
word outName = fieldName + '_' + regionTypeNames_[regionType_];
|
|
if (this->volRegion::regionName_ != polyMesh::defaultRegion)
|
|
{
|
|
outName = outName + '-' + this->volRegion::regionName_;
|
|
}
|
|
|
|
IOField<Type>
|
|
(
|
|
IOobject
|
|
(
|
|
outName,
|
|
obr_.time().timeName(),
|
|
obr_,
|
|
IOobject::NO_READ,
|
|
IOobject::NO_WRITE
|
|
),
|
|
scaleFactor_*weightField*allValues
|
|
).write();
|
|
}
|
|
}
|
|
|
|
// Apply scale factor
|
|
values *= scaleFactor_;
|
|
|
|
Type result = processValues(values, V, weightField);
|
|
|
|
file()<< tab << result;
|
|
|
|
Log << " " << operationTypeNames_[operation_]
|
|
<< "(" << this->volRegion::regionName_ << ") of " << fieldName
|
|
<< " = " << result << endl;
|
|
|
|
// Write state/results information
|
|
const word& opName = operationTypeNames_[operation_];
|
|
word outName = fieldName;
|
|
if (this->volRegion::regionName_ != polyMesh::defaultRegion)
|
|
{
|
|
outName = this->volRegion::regionName_ + ',' + outName;
|
|
}
|
|
word resultName = opName + '(' + outName + ')';
|
|
this->setResult(resultName, result);
|
|
}
|
|
|
|
return ok;
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::tmp<Foam::Field<Type>>
|
|
Foam::functionObjects::fieldValues::volFieldValue::filterField
|
|
(
|
|
const Field<Type>& field
|
|
) const
|
|
{
|
|
if (volRegion::vrtAll == this->volRegion::regionType())
|
|
{
|
|
return field;
|
|
}
|
|
|
|
return tmp<Field<Type>>::New(field, cellIDs());
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|