Files
openfoam/src/functionObjects/field/XiReactionRate/XiReactionRate.H
Andrew Heather 54042b08df ENH: Function objects - first pass at updating read functionality
Note: should be using the result of the parent::read(dict) when
deciding whether to read local entries...
2016-09-30 13:24:58 +01:00

131 lines
3.4 KiB
C++

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2016 OpenFOAM Foundation
\\/ M anipulation | Copyright (C) 2016 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/>.
Class
Foam::functionObjects::XiReactionRate
Group
grpFieldFunctionObjects
Description
Writes the turbulent flame-speed and reaction-rate volScalarFields for the
Xi-based combustion models.
Example of function object specification:
\verbatim
XiReactionRate
{
type XiReactionRate;
libs ("libfieldFunctionObjects.so");
...
}
\endverbatim
Usage
\table
Property | Description | Required | Default value
type | type name: XiReactionRate | yes |
\endtable
See also
Foam::functionObjects::fvMeshFunctionObject
SourceFiles
XiReactionRate.C
\*---------------------------------------------------------------------------*/
#ifndef functionObjects_XiReactionRate_H
#define functionObjects_XiReactionRate_H
#include "fvMeshFunctionObject.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
namespace functionObjects
{
/*---------------------------------------------------------------------------*\
Class XiReactionRate Declaration
\*---------------------------------------------------------------------------*/
class XiReactionRate
:
public fvMeshFunctionObject
{
// Private member functions
//- Disallow default bitwise copy construct
XiReactionRate(const XiReactionRate&);
//- Disallow default bitwise assignment
void operator=(const XiReactionRate&);
public:
//- Runtime type information
TypeName("XiReactionRate");
// Constructors
//- Construct from Time and dictionary
XiReactionRate
(
const word& name,
const Time& runTime,
const dictionary& dict
);
//- Destructor
virtual ~XiReactionRate();
// Member Functions
//- Read the reaction rate data
virtual bool read(const dictionary&);
//- Do nothing
virtual bool execute();
//- Write the reaction rate fields
virtual bool write();
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace functionObjects
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //