OpenFOAM logo
Open Source CFD Toolkit

gradientUnburntEnthalpyFvPatchScalarField.H

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------------*\
00002   =========                 |
00003   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
00004    \\    /   O peration     |
00005     \\  /    A nd           | Copyright (C) 1991-2005 OpenCFD Ltd.
00006      \\/     M anipulation  |
00007 -------------------------------------------------------------------------------
00008 License
00009     This file is part of OpenFOAM.
00010 
00011     OpenFOAM is free software; you can redistribute it and/or modify it
00012     under the terms of the GNU General Public License as published by the
00013     Free Software Foundation; either version 2 of the License, or (at your
00014     option) any later version.
00015 
00016     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
00017     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
00018     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
00019     for more details.
00020 
00021     You should have received a copy of the GNU General Public License
00022     along with OpenFOAM; if not, write to the Free Software Foundation,
00023     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
00024 
00025 Class
00026     gradientUnburntEnthalpyFvPatchScalarField
00027 
00028 Description
00029 
00030 SourceFiles
00031     gradientUnburntEnthalpyFvPatchScalarField.C
00032 
00033 \*---------------------------------------------------------------------------*/
00034 
00035 #ifndef gradientUnburntEnthalpyFvPatchScalarField_H
00036 #define gradientUnburntEnthalpyFvPatchScalarField_H
00037 
00038 #include "fixedGradientFvPatchFields.H"
00039 
00040 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00041 
00042 namespace Foam
00043 {
00044 
00045 /*---------------------------------------------------------------------------*\
00046                Class gradientUnburntEnthalpyFvPatchScalarField Declaration
00047 \*---------------------------------------------------------------------------*/
00048 
00049 class gradientUnburntEnthalpyFvPatchScalarField
00050 :
00051     public fixedGradientFvPatchScalarField
00052 {
00053 
00054 public:
00055 
00056     //- Runtime type information
00057     TypeName("gradientUnburntEnthalpy");
00058 
00059 
00060     // Constructors
00061 
00062         //- Construct from patch and internal field
00063         gradientUnburntEnthalpyFvPatchScalarField
00064         (
00065             const fvPatch&,
00066             const scalarField&
00067         );
00068 
00069         //- Construct from patch, internal field and dictionary
00070         gradientUnburntEnthalpyFvPatchScalarField
00071         (
00072             const fvPatch&,
00073             const scalarField&,
00074             const dictionary&
00075         );
00076 
00077         //- Construct by mapping given gradientUnburntEnthalpyFvPatchScalarField
00078         // onto a new patch
00079         gradientUnburntEnthalpyFvPatchScalarField
00080         (
00081             const gradientUnburntEnthalpyFvPatchScalarField&,
00082             const fvPatch&,
00083             const scalarField&,
00084             const fvPatchFieldMapper&
00085         );
00086 
00087         //- Construct and return a clone
00088         virtual tmp<fvPatchScalarField> clone() const
00089         {
00090             return tmp<fvPatchScalarField>
00091             (
00092                 new gradientUnburntEnthalpyFvPatchScalarField(*this)
00093             );
00094         }
00095 
00096         //- Construct as copy setting internal field reference
00097         gradientUnburntEnthalpyFvPatchScalarField
00098         (
00099             const gradientUnburntEnthalpyFvPatchScalarField&,
00100             const scalarField&
00101         );
00102 
00103         //- Construct and return a clone setting internal field reference
00104         virtual tmp<fvPatchScalarField> clone(const scalarField& iF) const
00105         {
00106             return tmp<fvPatchScalarField>
00107             (
00108                 new gradientUnburntEnthalpyFvPatchScalarField(*this, iF)
00109             );
00110         }
00111 
00112 
00113     // Member functions
00114 
00115         // Evaluation functions
00116 
00117             //- Update the coefficients associated with the patch field
00118             virtual void updateCoeffs();
00119 };
00120 
00121 
00122 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00123 
00124 } // End namespace Foam
00125 
00126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00127 
00128 #endif
00129 
00130 // ************************************************************************* //
For further information go to www.openfoam.org