/*---------------------------------------------------------------------------*\
========= |
\\ / 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) 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 .
Class
Foam::zeroGradientFaPatchField
Description
Author
Zeljko Tukovic, FMENA
Hrvoje Jasak, Wikki Ltd.
SourceFiles
zeroGradientFaPatchField.C
\*---------------------------------------------------------------------------*/
#ifndef Foam_zeroGradientFaPatchField_H
#define Foam_zeroGradientFaPatchField_H
#include "faPatchField.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class zeroGradientFaPatchField Declaration
\*---------------------------------------------------------------------------*/
template
class zeroGradientFaPatchField
:
public faPatchField
{
public:
//- Runtime type information
TypeName("zeroGradient"); // fieldTypes::zeroGradientTypeName_()
// Constructors
//- Construct from patch and internal field
zeroGradientFaPatchField
(
const faPatch&,
const DimensionedField&
);
//- Construct from patch, internal field and dictionary
zeroGradientFaPatchField
(
const faPatch&,
const DimensionedField&,
const dictionary&
);
//- Construct by mapping the given zeroGradient patch field
//- onto a new patch
zeroGradientFaPatchField
(
const zeroGradientFaPatchField&,
const faPatch&,
const DimensionedField&,
const faPatchFieldMapper&
);
//- Construct as copy
zeroGradientFaPatchField
(
const zeroGradientFaPatchField&
);
//- Construct as copy setting internal field reference
zeroGradientFaPatchField
(
const zeroGradientFaPatchField&,
const DimensionedField&
);
//- Return clone
virtual tmp> clone() const
{
return faPatchField::Clone(*this);
}
//- Clone with an internal field reference
virtual tmp> clone
(
const DimensionedField& iF
) const
{
return faPatchField::Clone(*this, iF);
}
// Member functions
// Evaluation functions
//- Return gradient at boundary
virtual tmp> snGrad() const
{
return tmp>::New(this->size(), Zero);
}
//- Evaluate the patch field
virtual void evaluate
(
const Pstream::commsTypes commsType =
Pstream::commsTypes::buffered
);
//- Return the matrix diagonal coefficients corresponding to the
// evaluation of the value of this patchField with given weights
virtual tmp> valueInternalCoeffs
(
const tmp&
) const;
//- Return the matrix source coefficients corresponding to the
// evaluation of the value of this patchField with given weights
virtual tmp> valueBoundaryCoeffs
(
const tmp&
) const;
//- Return the matrix diagonal coefficients corresponding to the
// evaluation of the gradient of this patchField
virtual tmp> gradientInternalCoeffs() const;
//- Return the matrix source coefficients corresponding to the
// evaluation of the gradient of this patchField
virtual tmp> gradientBoundaryCoeffs() const;
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#ifdef NoRepository
#include "zeroGradientFaPatchField.C"
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //