FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

kqRWallFunctionFvPatchField.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) 2008-2010 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
00013     the Free Software Foundation, either version 3 of the License, or
00014     (at your 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, see <http://www.gnu.org/licenses/>.
00023 
00024 Class
00025     Foam::incompressible::RASModels::kqRWallFunctionFvPatchField
00026 
00027 Description
00028     Boundary condition for turbulence k, Q, and R when using wall functions.
00029     Simply acts as a zero gradient condition.
00030 
00031 SourceFiles
00032     kqRWallFunctionFvPatchField.C
00033 
00034 \*---------------------------------------------------------------------------*/
00035 
00036 #ifndef kqRWallFunctionFvPatchField_H
00037 #define kqRWallFunctionFvPatchField_H
00038 
00039 #include <finiteVolume/zeroGradientFvPatchField.H>
00040 
00041 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00042 
00043 namespace Foam
00044 {
00045 namespace incompressible
00046 {
00047 namespace RASModels
00048 {
00049 
00050 /*---------------------------------------------------------------------------*\
00051                 Class kqRWallFunctionFvPatchField Declaration
00052 \*---------------------------------------------------------------------------*/
00053 
00054 template<class Type>
00055 class kqRWallFunctionFvPatchField
00056 :
00057     public zeroGradientFvPatchField<Type>
00058 {
00059 
00060     // Private member functions
00061 
00062         //- Check the type of the patch
00063         void checkType();
00064 
00065 
00066 public:
00067 
00068     //- Runtime type information
00069     TypeName("kqRWallFunction");
00070 
00071 
00072     // Constructors
00073 
00074         //- Construct from patch and internal field
00075         kqRWallFunctionFvPatchField
00076         (
00077             const fvPatch&,
00078             const DimensionedField<Type, volMesh>&
00079         );
00080 
00081         //- Construct from patch, internal field and dictionary
00082         kqRWallFunctionFvPatchField
00083         (
00084             const fvPatch&,
00085             const DimensionedField<Type, volMesh>&,
00086             const dictionary&
00087         );
00088 
00089         //- Construct by mapping given
00090         // kqRWallFunctionFvPatchField
00091         //  onto a new patch
00092         kqRWallFunctionFvPatchField
00093         (
00094             const kqRWallFunctionFvPatchField&,
00095             const fvPatch&,
00096             const DimensionedField<Type, volMesh>&,
00097             const fvPatchFieldMapper&
00098         );
00099 
00100         //- Construct as copy
00101         kqRWallFunctionFvPatchField
00102         (
00103             const kqRWallFunctionFvPatchField&
00104         );
00105 
00106         //- Construct and return a clone
00107         virtual tmp<fvPatchField<Type> > clone() const
00108         {
00109             return tmp<fvPatchField<Type> >
00110             (
00111                 new kqRWallFunctionFvPatchField(*this)
00112             );
00113         }
00114 
00115         //- Construct as copy setting internal field reference
00116         kqRWallFunctionFvPatchField
00117         (
00118             const kqRWallFunctionFvPatchField&,
00119             const DimensionedField<Type, volMesh>&
00120         );
00121 
00122         //- Construct and return a clone setting internal field reference
00123         virtual tmp<fvPatchField<Type> > clone
00124         (
00125             const DimensionedField<Type, volMesh>& iF
00126         ) const
00127         {
00128             return tmp<fvPatchField<Type> >
00129             (
00130                 new kqRWallFunctionFvPatchField(*this, iF)
00131             );
00132         }
00133 
00134 
00135     // Member functions
00136 
00137         // Evaluation functions
00138 
00139             //- Evaluate the patchField
00140             virtual void evaluate
00141             (
00142                 const Pstream::commsTypes commsType=Pstream::Pstream::blocking
00143             );
00144 
00145 
00146         // I-O
00147 
00148             //- Write
00149             void write(Ostream&) const;
00150 };
00151 
00152 
00153 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00154 
00155 } // End namespace RASModels
00156 } // End namespace incompressible
00157 } // End namespace Foam
00158 
00159 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00160 
00161 #ifdef NoRepository
00162 #   include "kqRWallFunctionFvPatchField.C"
00163 #endif
00164 
00165 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00166 
00167 #endif
00168 
00169 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines