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