/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2016-2017 Wikki 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::transformFaPatchField Description Author Zeljko Tukovic, FMENA Hrvoje Jasak, Wikki Ltd. SourceFiles transformFaPatchField.C \*---------------------------------------------------------------------------*/ #ifndef transformFaPatchField_H #define transformFaPatchField_H #include "faPatchField.H" #include "areaFaMesh.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class transformFaPatch Declaration \*---------------------------------------------------------------------------*/ template class transformFaPatchField : public faPatchField { public: //- Runtime type information TypeName("transform"); // Constructors //- Construct from patch and internal field transformFaPatchField ( const faPatch&, const DimensionedField& ); //- Construct from patch, internal field and dictionary. // The "value" entry: NO_READ transformFaPatchField ( const faPatch&, const DimensionedField&, const dictionary& ); //- Construct by mapping the given transform patch field //- onto a new patch transformFaPatchField ( const transformFaPatchField&, const faPatch&, const DimensionedField&, const faPatchFieldMapper& ); //- Construct as copy setting internal field reference transformFaPatchField ( const transformFaPatchField&, const DimensionedField& ); //- Return clone virtual tmp> clone() const = 0; //- Construct and return a clone setting internal field reference virtual tmp> clone ( const DimensionedField& ) const = 0; // Member functions // Evaluation functions //- Return gradient at boundary virtual tmp> snGrad() const = 0; //- Return face-gradient transform diagonal virtual tmp> snGradTransformDiag() const = 0; //- 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; // Member operators virtual void operator=(const faPatchField&); }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository #include "transformFaPatchField.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //