/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- 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 . Class Foam::clampedPlateFaPatchField Description This BC provides a clamped BC. It sets zero fixed value and zeroGradient. Usage Example of the boundary condition specification: \verbatim { // Mandatory entries (unmodifiable) type clampedPlate; // Mandatory/Optional (inherited) entries ... } \endverbatim where the entries mean: \table Property | Description | Type | Reqd | Dflt type | Type name: clampedPlate | word | yes | - \endtable The inherited entries are elaborated in: - \link faPatchFields.H \endlink SourceFiles clampedPlateFaPatchField.C \*---------------------------------------------------------------------------*/ #ifndef clampedPlateFaPatchField_H #define clampedPlateFaPatchField_H #include "faPatchField.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class clampedPlateFaPatch Declaration \*---------------------------------------------------------------------------*/ template class clampedPlateFaPatchField : public faPatchField { public: //- Runtime type information TypeName("clampedPlate"); // Constructors //- Construct from patch and internal field clampedPlateFaPatchField ( const faPatch&, const DimensionedField& ); //- Construct from patch, internal field and dictionary // The "value" entry: NO_READ clampedPlateFaPatchField ( const faPatch&, const DimensionedField&, const dictionary& ); //- Construct by mapping the given clampedPlate patch field //- onto a new patch clampedPlateFaPatchField ( const clampedPlateFaPatchField&, const faPatch&, const DimensionedField&, const faPatchFieldMapper& ); //- Construct as copy clampedPlateFaPatchField ( const clampedPlateFaPatchField& ); //- Construct as copy setting internal field reference clampedPlateFaPatchField ( const clampedPlateFaPatchField&, 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); } //- Destructor virtual ~clampedPlateFaPatchField() = default; // Member Functions // Evaluation //- Return gradient at boundary virtual tmp> snGrad() const { return tmp>::New(this->size(), Foam::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; // IO //- Write includes "value" entry virtual void write(Ostream&) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository # include "clampedPlateFaPatchField.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //