Files
openfoam/src/finiteArea/fields/faPatchFields/derived/inletOutlet/inletOutletFaPatchField.C
Mark Olesen 70d526cd82 ENH: neg(x) instead of '1 - pos0(x)' for less-than 0 check
- fewer operations

ENH: replace 'neg(x)*a + pos0(x)*b' with 'lerp(a, b, pos0(x))'

- uses pos0 as a 0-1 selector. Fewer operations.
2023-02-21 10:05:27 +01:00

146 lines
3.9 KiB
C

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2016-2017 Wikki Ltd
Copyright (C) 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 "inletOutletFaPatchField.H"
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template<class Type>
Foam::inletOutletFaPatchField<Type>::inletOutletFaPatchField
(
const faPatch& p,
const DimensionedField<Type, areaMesh>& iF
)
:
mixedFaPatchField<Type>(p, iF),
phiName_("phi")
{
this->refValue() = pTraits<Type>::zero;
this->refGrad() = pTraits<Type>::zero;
this->valueFraction() = 0.0;
}
template<class Type>
Foam::inletOutletFaPatchField<Type>::inletOutletFaPatchField
(
const inletOutletFaPatchField<Type>& ptf,
const faPatch& p,
const DimensionedField<Type, areaMesh>& iF,
const faPatchFieldMapper& mapper
)
:
mixedFaPatchField<Type>(ptf, p, iF, mapper),
phiName_(ptf.phiName_)
{}
template<class Type>
Foam::inletOutletFaPatchField<Type>::inletOutletFaPatchField
(
const faPatch& p,
const DimensionedField<Type, areaMesh>& iF,
const dictionary& dict
)
:
mixedFaPatchField<Type>(p, iF),
phiName_(dict.getOrDefault<word>("phi", "phi"))
{
this->refValue() = Field<Type>("inletValue", dict, p.size());
if (dict.found("value"))
{
faPatchField<Type>::operator=
(
Field<Type>("value", dict, p.size())
);
}
else
{
faPatchField<Type>::operator=(this->refValue());
}
this->refGrad() = pTraits<Type>::zero;
this->valueFraction() = 0.0;
}
template<class Type>
Foam::inletOutletFaPatchField<Type>::inletOutletFaPatchField
(
const inletOutletFaPatchField<Type>& ptf
)
:
mixedFaPatchField<Type>(ptf),
phiName_(ptf.phiName_)
{}
template<class Type>
Foam::inletOutletFaPatchField<Type>::inletOutletFaPatchField
(
const inletOutletFaPatchField<Type>& ptf,
const DimensionedField<Type, areaMesh>& iF
)
:
mixedFaPatchField<Type>(ptf, iF),
phiName_(ptf.phiName_)
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template<class Type>
void Foam::inletOutletFaPatchField<Type>::updateCoeffs()
{
if (this->updated())
{
return;
}
const Field<scalar>& phip =
this->patch().template lookupPatchField<edgeScalarField>(phiName_);
this->valueFraction() = neg(phip);
mixedFaPatchField<Type>::updateCoeffs();
}
template<class Type>
void Foam::inletOutletFaPatchField<Type>::write(Ostream& os) const
{
faPatchField<Type>::write(os);
os.writeEntryIfDifferent<word>("phi", "phi", phiName_);
this->refValue().writeEntry("inletValue", os);
faPatchField<Type>::writeValueEntry(os);
}
// ************************************************************************* //