![]() |
|
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 gradientEnthalpyFvPatchScalarField 00027 00028 Description 00029 00030 SourceFiles 00031 gradientEnthalpyFvPatchScalarField.C 00032 00033 \*---------------------------------------------------------------------------*/ 00034 00035 #ifndef gradientEnthalpyFvPatchScalarField_H 00036 #define gradientEnthalpyFvPatchScalarField_H 00037 00038 #include "fixedGradientFvPatchFields.H" 00039 00040 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00041 00042 namespace Foam 00043 { 00044 00045 /*---------------------------------------------------------------------------*\ 00046 Class gradientEnthalpyFvPatchScalarField Declaration 00047 \*---------------------------------------------------------------------------*/ 00048 00049 class gradientEnthalpyFvPatchScalarField 00050 : 00051 public fixedGradientFvPatchScalarField 00052 { 00053 00054 public: 00055 00056 //- Runtime type information 00057 TypeName("gradientEnthalpy"); 00058 00059 00060 // Constructors 00061 00062 //- Construct from patch and internal field 00063 gradientEnthalpyFvPatchScalarField 00064 ( 00065 const fvPatch&, 00066 const scalarField& 00067 ); 00068 00069 //- Construct from patch, internal field and dictionary 00070 gradientEnthalpyFvPatchScalarField 00071 ( 00072 const fvPatch&, 00073 const scalarField&, 00074 const dictionary& 00075 ); 00076 00077 //- Construct by mapping given gradientEnthalpyFvPatchScalarField 00078 // onto a new patch 00079 gradientEnthalpyFvPatchScalarField 00080 ( 00081 const gradientEnthalpyFvPatchScalarField&, 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 gradientEnthalpyFvPatchScalarField(*this) 00093 ); 00094 } 00095 00096 //- Construct as copy setting internal field reference 00097 gradientEnthalpyFvPatchScalarField 00098 ( 00099 const gradientEnthalpyFvPatchScalarField&, 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 gradientEnthalpyFvPatchScalarField(*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 // ************************************************************************* //