/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
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 "fixedValueFvPatchField.H"
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template
Foam::fixedValueFvPatchField::fixedValueFvPatchField
(
const fvPatch& p,
const DimensionedField& iF
)
:
fvPatchField(p, iF)
{}
template
Foam::fixedValueFvPatchField::fixedValueFvPatchField
(
const fvPatch& p,
const DimensionedField& iF,
const Type& value
)
:
fvPatchField(p, iF, value)
{}
template
Foam::fixedValueFvPatchField::fixedValueFvPatchField
(
const fvPatch& p,
const DimensionedField& iF,
const dictionary& dict
)
:
fvPatchField(p, iF, dict, true)
{}
template
Foam::fixedValueFvPatchField::fixedValueFvPatchField
(
const fixedValueFvPatchField& ptf,
const fvPatch& p,
const DimensionedField& iF,
const fvPatchFieldMapper& mapper
)
:
fvPatchField(ptf, p, iF, mapper)
{
if (notNull(iF) && mapper.hasUnmapped())
{
WarningInFunction
<< "On field " << iF.name() << " patch " << p.name()
<< " patchField " << this->type()
<< " : mapper does not map all values." << nl
<< " To avoid this warning fully specify the mapping in derived"
<< " patch fields." << endl;
}
}
template
Foam::fixedValueFvPatchField::fixedValueFvPatchField
(
const fixedValueFvPatchField& ptf
)
:
fvPatchField(ptf)
{}
template
Foam::fixedValueFvPatchField::fixedValueFvPatchField
(
const fixedValueFvPatchField& ptf,
const DimensionedField& iF
)
:
fvPatchField(ptf, iF)
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template
Foam::tmp>
Foam::fixedValueFvPatchField::valueInternalCoeffs
(
const tmp&
) const
{
return tmp>
(
new Field(this->size(), Zero)
);
}
template
Foam::tmp>
Foam::fixedValueFvPatchField::valueBoundaryCoeffs
(
const tmp&
) const
{
return *this;
}
template
Foam::tmp>
Foam::fixedValueFvPatchField::gradientInternalCoeffs() const
{
return -pTraits::one*this->patch().deltaCoeffs();
}
template
Foam::tmp>
Foam::fixedValueFvPatchField::gradientBoundaryCoeffs() const
{
return this->patch().deltaCoeffs()*(*this);
}
template
void Foam::fixedValueFvPatchField::write(Ostream& os) const
{
fvPatchField::write(os);
this->writeEntry("value", os);
}
// ************************************************************************* //