mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
220 lines
5.5 KiB
C
220 lines
5.5 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Original code Copyright (C) 2010-2018 Bernhard Gschaider
|
|
Copyright (C) 2019 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 "exprValuePointPatchField.H"
|
|
#include "pointPatchFieldMapper.H"
|
|
#include "typeInfo.H"
|
|
#include "facePointPatch.H"
|
|
|
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
Foam::exprValuePointPatchField<Type>::exprValuePointPatchField
|
|
(
|
|
const pointPatch& p,
|
|
const DimensionedField<Type, pointMesh>& iF
|
|
)
|
|
:
|
|
valuePointPatchField<Type>(p, iF),
|
|
expressions::patchExprFieldBase(false),
|
|
driver_
|
|
(
|
|
expressions::patchExprFieldBase::getFvPatch
|
|
(
|
|
dynamicCast<const facePointPatch>(this->patch())
|
|
)
|
|
)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::exprValuePointPatchField<Type>::exprValuePointPatchField
|
|
(
|
|
const exprValuePointPatchField<Type>& ptf,
|
|
const pointPatch& p,
|
|
const DimensionedField<Type, pointMesh>& iF,
|
|
const pointPatchFieldMapper& mapper
|
|
)
|
|
:
|
|
valuePointPatchField<Type>(ptf, p, iF, mapper),
|
|
expressions::patchExprFieldBase(ptf),
|
|
driver_
|
|
(
|
|
expressions::patchExprFieldBase::getFvPatch
|
|
(
|
|
dynamicCast<const facePointPatch>(this->patch())
|
|
),
|
|
ptf.driver_
|
|
)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::exprValuePointPatchField<Type>::exprValuePointPatchField
|
|
(
|
|
const pointPatch& p,
|
|
const DimensionedField<Type, pointMesh>& iF,
|
|
const dictionary& dict
|
|
)
|
|
:
|
|
valuePointPatchField<Type>(p, iF),
|
|
expressions::patchExprFieldBase(dict, false, true),
|
|
driver_
|
|
(
|
|
expressions::patchExprFieldBase::getFvPatch
|
|
(
|
|
dynamicCast<const facePointPatch>(this->patch())
|
|
),
|
|
dict
|
|
)
|
|
{
|
|
// Basic sanity
|
|
if (this->valueExpr_.empty())
|
|
{
|
|
FatalIOErrorInFunction(dict)
|
|
<< "The valueExpr was not defined!" << nl
|
|
<< exit(FatalIOError);
|
|
}
|
|
|
|
driver_.readDict(dict);
|
|
|
|
if (dict.found("value"))
|
|
{
|
|
Field<Type>::operator=
|
|
(
|
|
Field<Type>("value", dict, p.size())
|
|
);
|
|
}
|
|
else
|
|
{
|
|
WarningInFunction
|
|
<< "No value defined for "
|
|
<< this->internalField().name()
|
|
<< " on " << this->patch().name()
|
|
<< endl;
|
|
}
|
|
|
|
if (this->evalOnConstruct_)
|
|
{
|
|
// For potentialFoam or other solvers that don't evaluate
|
|
this->evaluate();
|
|
}
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
Foam::exprValuePointPatchField<Type>::exprValuePointPatchField
|
|
(
|
|
const exprValuePointPatchField<Type>& ptf,
|
|
const DimensionedField<Type, pointMesh>& iF
|
|
)
|
|
:
|
|
valuePointPatchField<Type>(ptf, iF),
|
|
expressions::patchExprFieldBase(ptf),
|
|
driver_
|
|
(
|
|
expressions::patchExprFieldBase::getFvPatch
|
|
(
|
|
dynamicCast<const facePointPatch>(this->patch())
|
|
),
|
|
ptf.driver_
|
|
)
|
|
{}
|
|
|
|
|
|
template<class Type>
|
|
Foam::exprValuePointPatchField<Type>::exprValuePointPatchField
|
|
(
|
|
const exprValuePointPatchField<Type>& ptf
|
|
)
|
|
:
|
|
valuePointPatchField<Type>(ptf),
|
|
expressions::patchExprFieldBase(ptf),
|
|
driver_
|
|
(
|
|
expressions::patchExprFieldBase::getFvPatch
|
|
(
|
|
dynamicCast<const facePointPatch>(this->patch())
|
|
),
|
|
ptf.driver_
|
|
)
|
|
{}
|
|
|
|
|
|
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
|
|
|
|
template<class Type>
|
|
void Foam::exprValuePointPatchField<Type>::updateCoeffs()
|
|
{
|
|
if (debug)
|
|
{
|
|
InfoInFunction
|
|
<< "Value: " << this->valueExpr_ << nl
|
|
<< "Variables: ";
|
|
driver_.writeVariableStrings(Info) << endl;
|
|
}
|
|
|
|
if (this->updated())
|
|
{
|
|
return;
|
|
}
|
|
|
|
// Expression evaluation
|
|
{
|
|
driver_.clearVariables();
|
|
|
|
if (this->valueExpr_.empty())
|
|
{
|
|
(*this) == Zero;
|
|
}
|
|
else
|
|
{
|
|
Field<Type>::operator=
|
|
(
|
|
driver_.evaluate<Type>(this->valueExpr_, true)
|
|
);
|
|
}
|
|
}
|
|
|
|
valuePointPatchField<Type>::updateCoeffs();
|
|
}
|
|
|
|
|
|
template<class Type>
|
|
void Foam::exprValuePointPatchField<Type>::write(Ostream& os) const
|
|
{
|
|
valuePointPatchField<Type>::write(os);
|
|
expressions::patchExprFieldBase::write(os);
|
|
|
|
this->writeEntry("value",os);
|
|
|
|
// driver_.writeCommon(os,this->debug_ || debug);
|
|
}
|
|
|
|
// ************************************************************************* //
|