![]() |
|
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 pressureDirectedInletOutletVelocityFvPatchVectorField 00027 00028 Description 00029 00030 SourceFiles 00031 pressureDirectedInletOutletVelocityFvPatchVectorField.C 00032 00033 \*---------------------------------------------------------------------------*/ 00034 00035 #ifndef pressureDirectedInletOutletVelocityFvPatchVectorField_H 00036 #define pressureDirectedInletOutletVelocityFvPatchVectorField_H 00037 00038 #include "fvPatchFields.H" 00039 #include "mixedFvPatchFields.H" 00040 00041 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00042 00043 namespace Foam 00044 { 00045 00046 /*---------------------------------------------------------------------------*\ 00047 Class pressureDirectedInletOutletVelocityFvPatch Declaration 00048 \*---------------------------------------------------------------------------*/ 00049 00050 class pressureDirectedInletOutletVelocityFvPatchVectorField 00051 : 00052 public mixedFvPatchVectorField 00053 { 00054 // Private data 00055 00056 vectorField inletDir_; 00057 00058 00059 public: 00060 00061 //- Runtime type information 00062 TypeName("pressureDirectedInletOutletVelocity"); 00063 00064 00065 // Constructors 00066 00067 //- Construct from patch and internal field 00068 pressureDirectedInletOutletVelocityFvPatchVectorField 00069 ( 00070 const fvPatch&, 00071 const vectorField& 00072 ); 00073 00074 //- Construct from patch, internal field and dictionary 00075 pressureDirectedInletOutletVelocityFvPatchVectorField 00076 ( 00077 const fvPatch&, 00078 const vectorField&, 00079 const dictionary& 00080 ); 00081 00082 //- Construct by mapping given 00083 // pressureDirectedInletOutletVelocityFvPatchVectorField 00084 // onto a new patch 00085 pressureDirectedInletOutletVelocityFvPatchVectorField 00086 ( 00087 const pressureDirectedInletOutletVelocityFvPatchVectorField&, 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 pressureDirectedInletOutletVelocityFvPatchVectorField 00099 ( 00100 *this 00101 ) 00102 ); 00103 } 00104 00105 //- Construct as copy setting internal field reference 00106 pressureDirectedInletOutletVelocityFvPatchVectorField 00107 ( 00108 const pressureDirectedInletOutletVelocityFvPatchVectorField&, 00109 const vectorField& 00110 ); 00111 00112 //- Construct and return a clone setting internal field reference 00113 virtual tmp<fvPatchVectorField> clone(const vectorField& iF) const 00114 { 00115 return tmp<fvPatchVectorField> 00116 ( 00117 new pressureDirectedInletOutletVelocityFvPatchVectorField 00118 ( 00119 *this, 00120 iF 00121 ) 00122 ); 00123 } 00124 00125 00126 00127 // Member functions 00128 00129 // Mapping functions 00130 00131 //- Map (and resize as needed) from self given a mapping object 00132 virtual void autoMap 00133 ( 00134 const fvPatchFieldMapper& 00135 ); 00136 00137 //- Reverse map the given fvPatchField onto this fvPatchField 00138 virtual void rmap 00139 ( 00140 const fvPatchVectorField&, 00141 const labelList& 00142 ); 00143 00144 00145 //- Update the coefficients associated with the patch field 00146 virtual void updateCoeffs(); 00147 00148 //- Write 00149 virtual void write(Ostream&) const; 00150 }; 00151 00152 00153 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00154 00155 } // End namespace Foam 00156 00157 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00158 00159 #endif 00160 00161 // ************************************************************************* //