- easier support for non-mandatory functions. In some boundary conditions it can be desirable to support additional functions, but not necessarily require them. Make this easier to support with a Function1, PatchFunction1 NewIfPresent() selector. - support for compatibility lookups - harmonize branching logic and error handling between Function1 and PatchFunction1. ENH: refactor a base class for Function1, PatchFunction1 - includes base characteristics, patch or scalar information ENH: additional creation macros - makeConcreteFunction1, makeConcretePatchFunction1Type for adding a non-templated function into the correct templated selection table. makeScalarPatchFunction1 for similarity with makeScalarFunction1
111 lines
2.9 KiB
C
111 lines
2.9 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2018-2020 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/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "UniformValueField.H"
|
|
#include "polyMesh.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::PatchFunction1Types::UniformValueField<Type>::UniformValueField
|
|
(
|
|
const polyPatch& pp,
|
|
const word& redirectType,
|
|
const word& entryName,
|
|
const dictionary& dict,
|
|
const bool faceValues
|
|
)
|
|
:
|
|
PatchFunction1<Type>(pp, entryName, dict, faceValues),
|
|
uniformValuePtr_
|
|
(
|
|
Function1<Type>::New
|
|
(
|
|
entryName,
|
|
dict,
|
|
redirectType
|
|
)
|
|
)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::PatchFunction1Types::UniformValueField<Type>::UniformValueField
|
|
(
|
|
const UniformValueField<Type>& rhs
|
|
)
|
|
:
|
|
UniformValueField<Type>(rhs, rhs.patch())
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::PatchFunction1Types::UniformValueField<Type>::UniformValueField
|
|
(
|
|
const UniformValueField<Type>& rhs,
|
|
const polyPatch& pp
|
|
)
|
|
:
|
|
PatchFunction1<Type>(rhs, pp),
|
|
uniformValuePtr_(rhs.uniformValuePtr_.clone())
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
void Foam::PatchFunction1Types::UniformValueField<Type>::autoMap
|
|
(
|
|
const FieldMapper& mapper
|
|
)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::PatchFunction1Types::UniformValueField<Type>::rmap
|
|
(
|
|
const PatchFunction1<Type>& pf1,
|
|
const labelList& addr
|
|
)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::PatchFunction1Types::UniformValueField<Type>::writeData
|
|
(
|
|
Ostream& os
|
|
) const
|
|
{
|
|
PatchFunction1<Type>::writeData(os);
|
|
//os << token::END_STATEMENT << nl;
|
|
uniformValuePtr_->writeData(os);
|
|
//os << endl;
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|