/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) YEAR 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 .
Description
Template for use with dynamic code generation of a Function1.
- without state
SourceFiles
codedFunction1Template.C
\*---------------------------------------------------------------------------*/
#ifndef codedFunction1Template_H
#define codedFunction1Template_H
#include "Function1.H"
#include "fieldTypes.H"
//{{{ begin codeInclude
${codeInclude}
//}}} end codeInclude
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
namespace Function1s
{
/*---------------------------------------------------------------------------*\
A templated Function1
\*---------------------------------------------------------------------------*/
class ${typeName}Function1${TemplateType}
:
public FieldFunction1<${TemplateType}, ${typeName}Function1${TemplateType}>
{
public:
// Runtime type information
TypeName("${typeName}");
// Constructors
//- Construct from entry name and dictionary
${typeName}Function1${TemplateType}
(
const word& entryName,
const dictionary& dict
);
//- Copy constructor
${typeName}Function1${TemplateType}
(
const ${typeName}Function1${TemplateType}& f1
);
//- Construct and return a clone
virtual tmp> clone() const
{
return tmp>
(
new ${typeName}Function1${TemplateType}(*this)
);
}
//- Destructor
virtual ~${typeName}Function1${TemplateType}();
// Member Functions
//- Return value as a function of scalar variable
inline virtual ${TemplateType} value(const scalar x) const
{
//{{{ begin code
${code}
//}}} end code
}
//- Integrate between two values
virtual ${TemplateType} integral
(
const scalar x1,
const scalar x2
) const;
//- Write data to dictionary stream
virtual void write(Ostream& os) const;
// Member Operators
//- Disallow default bitwise assignment
void operator=(const ${typeName}Function1${TemplateType}&) = delete;
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Function1s
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //