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