Both the functionObject call context (the command line for postProcess, and the
controlDict path for run-time post-precessing) and the configuration file
context where the arguments are substituted are now printed in the error
message, e.g.
postProcess -func 'patchAverage(name=inlet, ields=(p U))'
generates the message
--> FOAM FATAL IO ERROR:
Essential value for keyword 'fields' not set in function entry
patchAverage(name=inlet, ields=(p U))
in command line postProcess -func patchAverage(name=inlet, ields=(p U))
Placeholder value is <field_names>
file: /home/dm2/henry/OpenFOAM/OpenFOAM-dev/etc/caseDicts/postProcessing/surfaceFieldValue/patchAverage from line 13 to line 17.
and with the following in controlDict
functions
{
#includeFunc patchAverage(name=inlet, ields=(p U))
}
generates the message
--> FOAM FATAL IO ERROR:
Essential value for keyword 'fields' not set in function entry
patchAverage(name=inlet, ields=(p U))
in file /home/dm2/henry/OpenFOAM/OpenFOAM-dev/tutorials/incompressible/pimpleFoam/RAS/pitzDaily/system/controlDict at line 55
Placeholder value is <field_names>
file: /home/dm2/henry/OpenFOAM/OpenFOAM-dev/etc/caseDicts/postProcessing/surfaceFieldValue/patchAverage from line 13 to line 17.
153 lines
4.0 KiB
C++
153 lines
4.0 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Copyright (C) 2011-2019 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/>.
|
|
|
|
Namespace
|
|
Foam::functionEntries
|
|
|
|
Description
|
|
Namespace for containing a functionEntry.
|
|
|
|
|
|
Class
|
|
Foam::functionEntry
|
|
|
|
Description
|
|
A functionEntry causes entries to be added/manipulated on the specified
|
|
dictionary given an input stream.
|
|
|
|
In dictionaries, a \c '\#' sigil is typically used for a functionEntry.
|
|
|
|
SourceFiles
|
|
functionEntry.C
|
|
functionEntryIO.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef functionEntry_H
|
|
#define functionEntry_H
|
|
|
|
#include "word.H"
|
|
#include "memberFunctionSelectionTables.H"
|
|
#include "primitiveEntry.H"
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
namespace Foam
|
|
{
|
|
|
|
class dictionary;
|
|
|
|
/*---------------------------------------------------------------------------*\
|
|
Class functionEntry Declaration
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
class functionEntry
|
|
:
|
|
public primitiveEntry
|
|
{
|
|
// Private Member Functions
|
|
|
|
//- Read line as string token
|
|
static string readLine(const word& key, Istream& is);
|
|
|
|
|
|
public:
|
|
|
|
// Constructors
|
|
|
|
//- Construct from keyword, parent dictionary and Istream
|
|
functionEntry(const word&, const dictionary&, Istream&);
|
|
|
|
autoPtr<entry> clone(const dictionary&) const
|
|
{
|
|
return autoPtr<entry>(new functionEntry(*this));
|
|
}
|
|
|
|
|
|
// Member Function Selectors
|
|
|
|
declareMemberFunctionSelectionTable
|
|
(
|
|
bool,
|
|
functionEntry,
|
|
execute,
|
|
dictionaryIstream,
|
|
(
|
|
dictionary& parentDict,
|
|
Istream& is
|
|
),
|
|
(parentDict, is)
|
|
);
|
|
|
|
//- Execute the functionEntry in a sub-dict context
|
|
static bool execute
|
|
(
|
|
const word& functionName,
|
|
dictionary& parentDict,
|
|
Istream&
|
|
);
|
|
|
|
declareMemberFunctionSelectionTable
|
|
(
|
|
bool,
|
|
functionEntry,
|
|
execute,
|
|
primitiveEntryIstream,
|
|
(
|
|
const dictionary& parentDict,
|
|
primitiveEntry& entry,
|
|
Istream& is
|
|
),
|
|
(parentDict, entry, is)
|
|
);
|
|
|
|
//- Execute the functionEntry in a primitiveEntry context
|
|
static bool execute
|
|
(
|
|
const word& functionName,
|
|
const dictionary& parentDict,
|
|
primitiveEntry&,
|
|
Istream&
|
|
);
|
|
|
|
//- Write
|
|
virtual void write(Ostream&) const;
|
|
|
|
|
|
// Member Operators
|
|
|
|
//- Disallow default bitwise assignment
|
|
void operator=(const functionEntry&) = delete;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|