![]() |
|
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 nuSgsWallFunctionFvPatchScalarField 00027 00028 Description 00029 00030 SourceFiles 00031 nuSgsWallFunctionFvPatchScalarField.C 00032 00033 \*---------------------------------------------------------------------------*/ 00034 00035 #ifndef nuSgsWallFunctionFvPatchScalarField_H 00036 #define nuSgsWallFunctionFvPatchScalarField_H 00037 00038 #include "fixedValueFvPatchFields.H" 00039 00040 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00041 00042 namespace Foam 00043 { 00044 namespace LESmodels 00045 { 00046 00047 /*---------------------------------------------------------------------------*\ 00048 Class nuSgsWallFunctionFvPatch Declaration 00049 \*---------------------------------------------------------------------------*/ 00050 00051 class nuSgsWallFunctionFvPatchScalarField 00052 : 00053 public fixedValueFvPatchScalarField 00054 { 00055 // Private data 00056 00057 00058 public: 00059 00060 //- Runtime type information 00061 TypeName("nuSgsWallFunction"); 00062 00063 00064 // Constructors 00065 00066 //- Construct from patch and internal field 00067 nuSgsWallFunctionFvPatchScalarField 00068 ( 00069 const fvPatch&, 00070 const scalarField& 00071 ); 00072 00073 //- Construct from patch, internal field and dictionary 00074 nuSgsWallFunctionFvPatchScalarField 00075 ( 00076 const fvPatch&, 00077 const scalarField&, 00078 const dictionary& 00079 ); 00080 00081 //- Construct by mapping given nuSgsWallFunctionFvPatchScalarField 00082 // onto a new patch 00083 nuSgsWallFunctionFvPatchScalarField 00084 ( 00085 const nuSgsWallFunctionFvPatchScalarField&, 00086 const fvPatch&, 00087 const scalarField&, 00088 const fvPatchFieldMapper& 00089 ); 00090 00091 //- Construct and return a clone 00092 virtual tmp<fvPatchScalarField> clone() const 00093 { 00094 return tmp<fvPatchScalarField> 00095 ( 00096 new nuSgsWallFunctionFvPatchScalarField(*this) 00097 ); 00098 } 00099 00100 //- Construct as copy setting internal field reference 00101 nuSgsWallFunctionFvPatchScalarField 00102 ( 00103 const nuSgsWallFunctionFvPatchScalarField&, 00104 const scalarField& 00105 ); 00106 00107 //- Construct and return a clone setting internal field reference 00108 virtual tmp<fvPatchScalarField> clone(const scalarField& iF) const 00109 { 00110 return tmp<fvPatchScalarField> 00111 ( 00112 new nuSgsWallFunctionFvPatchScalarField(*this, iF) 00113 ); 00114 } 00115 00116 00117 // Member functions 00118 00119 // Evaluation functions 00120 00121 //- Evaluate the patchField 00122 virtual void evaluate(); 00123 }; 00124 00125 00126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00127 00128 } // End namespace LESmodels 00129 } // End namespace Foam 00130 00131 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00132 00133 #endif 00134 00135 // ************************************************************************* //