/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | www.openfoam.com
\\/ M anipulation |
-------------------------------------------------------------------------------
Copyright (C) 2011-2016 OpenFOAM Foundation
-------------------------------------------------------------------------------
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::transformFvPatchField
Group
grpGenericBoundaryConditions
Description
Intermediate layer (not used directly as a user boundary condition).
The "value" entry is NO_READ, NO_WRITE.
SourceFiles
transformFvPatchField.C
\*---------------------------------------------------------------------------*/
#ifndef Foam_transformFvPatchField_H
#define Foam_transformFvPatchField_H
#include "fvPatchField.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class transformFvPatch Declaration
\*---------------------------------------------------------------------------*/
template
class transformFvPatchField
:
public fvPatchField
{
public:
//- Runtime type information
TypeName("transform");
// Constructors
//- Construct from patch and internal field
transformFvPatchField
(
const fvPatch&,
const DimensionedField&
);
//- Construct from patch, internal field and dictionary.
//- The "value" entry is NO_READ.
transformFvPatchField
(
const fvPatch&,
const DimensionedField&,
const dictionary&
);
//- Construct by mapping the given transform patch field
//- onto a new patch
transformFvPatchField
(
const transformFvPatchField&,
const fvPatch&,
const DimensionedField&,
const fvPatchFieldMapper&
);
//- Construct as copy
transformFvPatchField
(
const transformFvPatchField&
);
//- Construct as copy setting internal field reference
transformFvPatchField
(
const transformFvPatchField&,
const DimensionedField&
);
//- Return a clone
virtual tmp> clone() const = 0;
//- Construct and return a clone setting internal field reference
virtual tmp> clone
(
const DimensionedField&
) const = 0;
// Member Functions
//- True: this patch field is altered by assignment.
virtual bool assignable() const { return true; }
// 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 fvPatchField&);
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#ifdef NoRepository
#include "transformFvPatchField.C"
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************************************************************* //