For example in the new tutorial case:
tutorials/incompressible/pimpleFoam/laminar/pitzDailyPulse
a cosine bell velocity pulse is specified at the inlet by directly defining the
code for it:
inlet
{
type uniformFixedValue;
uniformValue coded;
name pulse;
codeInclude
#{
#include "mathematicalConstants.H"
#};
code
#{
return vector
(
0.5*(1 - cos(constant::mathematical::twoPi*min(x/0.3, 1))),
0,
0
);
#};
}
which is then compiled automatically and linked into the running pimpleFoam
dynamically and executed to set the inlet velocity.
132 lines
3.5 KiB
C++
132 lines
3.5 KiB
C++
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / 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 <http://www.gnu.org/licenses/>.
|
|
|
|
Description
|
|
Template for use with dynamic code generation of a Function1.
|
|
|
|
- without state
|
|
|
|
SourceFiles
|
|
Function1Template.C
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#ifndef Function1Template_H
|
|
#define Function1Template_H
|
|
|
|
#include "Function1.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<Function1<${TemplateType}>> clone() const
|
|
{
|
|
return tmp<Function1<${TemplateType}>>
|
|
(
|
|
new ${typeName}Function1${TemplateType}(*this)
|
|
);
|
|
}
|
|
|
|
|
|
//- Destructor
|
|
virtual ~${typeName}Function1${TemplateType}();
|
|
|
|
|
|
// Member Functions
|
|
|
|
//- Return constant value
|
|
inline virtual ${TemplateType} value(const scalar x) const
|
|
{
|
|
//{{{ begin code
|
|
${code}
|
|
//}}} end code
|
|
}
|
|
|
|
//- Integrate between two values
|
|
virtual ${TemplateType} integrate
|
|
(
|
|
const scalar x1,
|
|
const scalar x2
|
|
) const;
|
|
|
|
//- Write in dictionary format
|
|
virtual void writeData(Ostream& os) const;
|
|
|
|
|
|
// Member Operators
|
|
|
|
//- Disallow default bitwise assignment
|
|
void operator=(const ${typeName}Function1${TemplateType}&) = delete;
|
|
};
|
|
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
} // End namespace Function1s
|
|
} // End namespace Foam
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
#endif
|
|
|
|
// ************************************************************************* //
|