/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation Copyright (C) 2021 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::mixedEnergyFvPatchScalarField Group grpThermoBoundaryConditions Description This boundary condition provides a mixed condition for internal energy See also Foam::mixedFvPatchField SourceFiles mixedEnergyFvPatchScalarField.C \*---------------------------------------------------------------------------*/ #ifndef mixedEnergyFvPatchScalarField_H #define mixedEnergyFvPatchScalarField_H #include "mixedFvPatchFields.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class mixedEnergyFvPatchScalarField Declaration \*---------------------------------------------------------------------------*/ class mixedEnergyFvPatchScalarField : public mixedFvPatchScalarField { public: //- Runtime type information TypeName("mixedEnergy"); // Constructors //- Construct from patch and internal field mixedEnergyFvPatchScalarField ( const fvPatch&, const DimensionedField& ); //- Construct from patch, internal field and dictionary mixedEnergyFvPatchScalarField ( const fvPatch&, const DimensionedField&, const dictionary& ); //- Construct by mapping given mixedEnergyFvPatchScalarField // onto a new patch mixedEnergyFvPatchScalarField ( const mixedEnergyFvPatchScalarField&, const fvPatch&, const DimensionedField&, const fvPatchFieldMapper& ); //- Construct as copy mixedEnergyFvPatchScalarField ( const mixedEnergyFvPatchScalarField& ); //- Construct as copy setting internal field reference mixedEnergyFvPatchScalarField ( const mixedEnergyFvPatchScalarField&, const DimensionedField& ); //- Return a clone virtual tmp> clone() const { return fvPatchField::Clone(*this); } //- Clone with an internal field reference virtual tmp> clone ( const DimensionedField& iF ) const { return fvPatchField::Clone(*this, iF); } // Member functions // Access //- Allow manipulation of the boundary values virtual bool fixesValue() const { return false; } // Evaluation functions //- Update the coefficients associated with the patch field virtual void updateCoeffs(); //- Manipulate matrix virtual void manipulateMatrix ( fvMatrix& m, const label iMatrix, const direction cmpt ); }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //