Files
openfoam/src/finiteVolume/fields/fvPatchFields/derived/fixedProfile/fixedProfileFvPatchField.C
2021-11-26 11:22:36 +00:00

171 lines
4.4 KiB
C

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2015-2016 OpenFOAM Foundation
Copyright (C) 2020-2021 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 "fixedProfileFvPatchField.H"
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template<class Type>
Foam::fixedProfileFvPatchField<Type>::fixedProfileFvPatchField
(
const fvPatch& p,
const DimensionedField<Type, volMesh>& iF
)
:
fixedValueFvPatchField<Type>(p, iF),
profile_(),
dir_(Zero),
origin_(0)
{}
template<class Type>
Foam::fixedProfileFvPatchField<Type>::fixedProfileFvPatchField
(
const fvPatch& p,
const DimensionedField<Type, volMesh>& iF,
const Field<Type>& fld
)
:
fixedValueFvPatchField<Type>(p, iF, fld),
profile_(),
dir_(Zero),
origin_(0)
{}
template<class Type>
Foam::fixedProfileFvPatchField<Type>::fixedProfileFvPatchField
(
const fvPatch& p,
const DimensionedField<Type, volMesh>& iF,
const dictionary& dict
)
:
fixedValueFvPatchField<Type>(p, iF, dict, false),
profile_(Function1<Type>::New("profile", dict, &this->db())),
dir_(dict.lookup("direction")),
origin_(dict.get<scalar>("origin"))
{
if (mag(dir_) < SMALL)
{
FatalErrorInFunction
<< "magnitude Direction must be greater than zero"
<< abort(FatalError);
}
// Ensure direction vector is normalized
dir_ /= mag(dir_);
// Evaluate profile
this->evaluate();
}
template<class Type>
Foam::fixedProfileFvPatchField<Type>::fixedProfileFvPatchField
(
const fixedProfileFvPatchField<Type>& ptf,
const fvPatch& p,
const DimensionedField<Type, volMesh>& iF,
const fvPatchFieldMapper& mapper
)
:
fixedValueFvPatchField<Type>(p, iF), // Don't map
profile_(ptf.profile_.clone()),
dir_(ptf.dir_),
origin_(ptf.origin_)
{
// Evaluate profile since value not mapped
this->evaluate();
}
template<class Type>
Foam::fixedProfileFvPatchField<Type>::fixedProfileFvPatchField
(
const fixedProfileFvPatchField<Type>& ptf
)
:
fixedValueFvPatchField<Type>(ptf),
profile_(ptf.profile_.clone()),
dir_(ptf.dir_),
origin_(ptf.origin_)
{}
template<class Type>
Foam::fixedProfileFvPatchField<Type>::fixedProfileFvPatchField
(
const fixedProfileFvPatchField<Type>& ptf,
const DimensionedField<Type, volMesh>& iF
)
:
fixedValueFvPatchField<Type>(ptf, iF),
profile_(ptf.profile_.clone()),
dir_(ptf.dir_),
origin_(ptf.origin_)
{
// Evaluate the profile if defined
if (ptf.profile_)
{
this->evaluate();
}
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template<class Type>
void Foam::fixedProfileFvPatchField<Type>::updateCoeffs()
{
if (this->updated())
{
return;
}
const scalarField dirCmpt((dir_ & this->patch().Cf()) - origin_);
fvPatchField<Type>::operator==(profile_->value(dirCmpt));
fixedValueFvPatchField<Type>::updateCoeffs();
}
template<class Type>
void Foam::fixedProfileFvPatchField<Type>::write(Ostream& os) const
{
fvPatchField<Type>::write(os);
profile_->writeData(os);
os.writeEntry("direction", dir_);
os.writeEntry("origin", origin_);
this->writeEntry("value", os);
}
// ************************************************************************* //