functionObjects::fieldExpression: Correct and improve warning messages
postProcess -func MachNo previously generated the warning Executing functionObjects --> FOAM Warning : functionObjects::MachNo MachNo cannot find required field U which is incorrect; the field 'U' is available but the thermophysicalProperties is not. Now 'postProcess' generates the warning: Executing functionObjects --> FOAM Warning : functionObjects::MachNo MachNo cannot find required object thermophysicalProperties of type fluidThermo --> FOAM Warning : functionObjects::MachNo MachNo failed to execute. Resolves bug-report http://bugs.openfoam.org/view.php?id=2352
This commit is contained in:
parent
acc2a7707e
commit
35f4d2da07
4 changed files with 66 additions and 12 deletions
|
|
@ -52,11 +52,11 @@ bool Foam::functionObjects::MachNo::calc()
|
||||||
if
|
if
|
||||||
(
|
(
|
||||||
foundObject<volVectorField>(fieldName_)
|
foundObject<volVectorField>(fieldName_)
|
||||||
&& mesh_.foundObject<fluidThermo>(fluidThermo::dictName)
|
&& foundObject<fluidThermo>(fluidThermo::dictName)
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
const fluidThermo& thermo =
|
const fluidThermo& thermo =
|
||||||
mesh_.lookupObject<fluidThermo>(fluidThermo::dictName);
|
lookupObject<fluidThermo>(fluidThermo::dictName);
|
||||||
|
|
||||||
const volVectorField& U = lookupObject<volVectorField>(fieldName_);
|
const volVectorField& U = lookupObject<volVectorField>(fieldName_);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -39,13 +39,6 @@ namespace functionObjects
|
||||||
|
|
||||||
// * * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * //
|
// * * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * //
|
||||||
|
|
||||||
bool Foam::functionObjects::fieldExpression::calc()
|
|
||||||
{
|
|
||||||
NotImplemented;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
void Foam::functionObjects::fieldExpression::setResultName
|
void Foam::functionObjects::fieldExpression::setResultName
|
||||||
(
|
(
|
||||||
const word& typeName,
|
const word& typeName,
|
||||||
|
|
@ -121,8 +114,8 @@ bool Foam::functionObjects::fieldExpression::execute()
|
||||||
if (!calc())
|
if (!calc())
|
||||||
{
|
{
|
||||||
Warning
|
Warning
|
||||||
<< "functionObject " << type() << ": Cannot find required field "
|
<< " functionObjects::" << type() << " " << name()
|
||||||
<< fieldName_ << endl;
|
<< " failed to execute." << endl;
|
||||||
|
|
||||||
// Clear the result field from the objectRegistry if present
|
// Clear the result field from the objectRegistry if present
|
||||||
clear();
|
clear();
|
||||||
|
|
|
||||||
|
|
@ -71,10 +71,13 @@ protected:
|
||||||
|
|
||||||
// Protected member functions
|
// Protected member functions
|
||||||
|
|
||||||
virtual bool calc();
|
virtual bool calc() = 0;
|
||||||
|
|
||||||
void setResultName(const word& typeName, const word& defaultArg);
|
void setResultName(const word& typeName, const word& defaultArg);
|
||||||
|
|
||||||
|
template<class Type>
|
||||||
|
bool foundObject(const word& name);
|
||||||
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
|
@ -133,6 +136,12 @@ public:
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
#ifdef NoRepository
|
||||||
|
#include "fieldExpressionTemplates.C"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,52 @@
|
||||||
|
/*---------------------------------------------------------------------------*\
|
||||||
|
========= |
|
||||||
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||||
|
\\ / O peration |
|
||||||
|
\\ / A nd | Copyright (C) 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 "fieldExpression.H"
|
||||||
|
|
||||||
|
// * * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * //
|
||||||
|
|
||||||
|
template<class Type>
|
||||||
|
bool Foam::functionObjects::fieldExpression::foundObject
|
||||||
|
(
|
||||||
|
const word& name
|
||||||
|
)
|
||||||
|
{
|
||||||
|
if (fvMeshFunctionObject::foundObject<Type>(name))
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Warning
|
||||||
|
<< " functionObjects::" << type() << " " << this->name()
|
||||||
|
<< " cannot find required object " << name << " of type "
|
||||||
|
<< Type::typeName << endl;
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
// ************************************************************************* //
|
||||||
Loading…
Add table
Reference in a new issue