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