/*---------------------------------------------------------------------------*\
========= |
\\ / 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 .
\*---------------------------------------------------------------------------*/
#include "fixedProfileFvPatchField.H"
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template
Foam::fixedProfileFvPatchField::fixedProfileFvPatchField
(
const fvPatch& p,
const DimensionedField& iF
)
:
fixedValueFvPatchField(p, iF),
profile_(),
dir_(Zero),
origin_(0)
{}
template
Foam::fixedProfileFvPatchField::fixedProfileFvPatchField
(
const fvPatch& p,
const DimensionedField& iF,
const Field& fld
)
:
fixedValueFvPatchField(p, iF, fld),
profile_(),
dir_(Zero),
origin_(0)
{}
template
Foam::fixedProfileFvPatchField::fixedProfileFvPatchField
(
const fvPatch& p,
const DimensionedField& iF,
const dictionary& dict
)
:
fixedValueFvPatchField(p, iF, dict, IOobjectOption::NO_READ),
profile_(Function1::New("profile", dict, &this->db())),
dir_(dict.lookup("direction")),
origin_(dict.get("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
Foam::fixedProfileFvPatchField::fixedProfileFvPatchField
(
const fixedProfileFvPatchField& ptf,
const fvPatch& p,
const DimensionedField& iF,
const fvPatchFieldMapper& mapper
)
:
fixedValueFvPatchField(p, iF), // Don't map
profile_(ptf.profile_.clone()),
dir_(ptf.dir_),
origin_(ptf.origin_)
{
// Evaluate profile since value not mapped
this->evaluate();
}
template
Foam::fixedProfileFvPatchField::fixedProfileFvPatchField
(
const fixedProfileFvPatchField& ptf
)
:
fixedValueFvPatchField(ptf),
profile_(ptf.profile_.clone()),
dir_(ptf.dir_),
origin_(ptf.origin_)
{}
template
Foam::fixedProfileFvPatchField::fixedProfileFvPatchField
(
const fixedProfileFvPatchField& ptf,
const DimensionedField& iF
)
:
fixedValueFvPatchField(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
void Foam::fixedProfileFvPatchField::updateCoeffs()
{
if (this->updated())
{
return;
}
const scalarField dirCmpt((dir_ & this->patch().Cf()) - origin_);
fvPatchField::operator==(profile_->value(dirCmpt));
fixedValueFvPatchField::updateCoeffs();
}
template
void Foam::fixedProfileFvPatchField::write(Ostream& os) const
{
fvPatchField::write(os);
profile_->writeData(os);
os.writeEntry("direction", dir_);
os.writeEntry("origin", origin_);
fvPatchField::writeValueEntry(os);
}
// ************************************************************************* //