/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Copyright (C) 2011-2023 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 "zeroGradientFvPatchField.H" #include "fvPatchFieldMapper.H" // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template Foam::zeroGradientFvPatchField::zeroGradientFvPatchField ( const fvPatch& p, const DimensionedField& iF ) : fvPatchField(p, iF) {} template Foam::zeroGradientFvPatchField::zeroGradientFvPatchField ( const fvPatch& p, const DimensionedField& iF, const dictionary& dict ) : fvPatchField(p, iF, dict, false) { fvPatchField::operator=(this->patchInternalField()); } template Foam::zeroGradientFvPatchField::zeroGradientFvPatchField ( const zeroGradientFvPatchField& ptf, const fvPatch& p, const DimensionedField& iF, const fvPatchFieldMapper& mapper ) : fvPatchField(ptf, p, iF, mapper) {} template Foam::zeroGradientFvPatchField::zeroGradientFvPatchField ( const zeroGradientFvPatchField& zgpf, const DimensionedField& iF ) : fvPatchField(zgpf, iF) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template void Foam::zeroGradientFvPatchField::evaluate(const Pstream::commsTypes) { if (!this->updated()) { this->updateCoeffs(); } fvPatchField::operator==(this->patchInternalField()); fvPatchField::evaluate(); } template Foam::tmp> Foam::zeroGradientFvPatchField::valueInternalCoeffs ( const tmp& ) const { return tmp> ( new Field(this->size(), pTraits::one) ); } template Foam::tmp> Foam::zeroGradientFvPatchField::valueBoundaryCoeffs ( const tmp& ) const { return tmp> ( new Field(this->size(), Zero) ); } template Foam::tmp> Foam::zeroGradientFvPatchField::gradientInternalCoeffs() const { return tmp> ( new Field(this->size(), Zero) ); } template Foam::tmp> Foam::zeroGradientFvPatchField::gradientBoundaryCoeffs() const { return tmp> ( new Field(this->size(), Zero) ); } // ************************************************************************* //