00001 /*---------------------------------------------------------------------------*\ 00002 ========= | 00003 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox 00004 \\ / O peration | 00005 \\ / A nd | Copyright (C) 2010-2010 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 3 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 Foam::fixedShearStressFvPatchVectorField 00027 00028 Description 00029 Set a constant shear stress as tau0 = -nuEff dU/dn. 00030 00031 SourceFiles 00032 fixedShearStressFvPatchVectorField.C 00033 00034 \*---------------------------------------------------------------------------*/ 00035 00036 #ifndef fixedShearStressFvPatchVectorField_H 00037 #define fixedShearStressFvPatchVectorField_H 00038 00039 #include <finiteVolume/fvPatchFields.H> 00040 #include <finiteVolume/fixedValueFvPatchFields.H> 00041 00042 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00043 00044 namespace Foam 00045 { 00046 namespace incompressible 00047 { 00048 /*---------------------------------------------------------------------------*\ 00049 Class fixedShearStressFvPatchVectorField Declaration 00050 \*---------------------------------------------------------------------------*/ 00051 00052 class fixedShearStressFvPatchVectorField 00053 : 00054 public fixedValueFvPatchVectorField 00055 { 00056 // Private data 00057 00058 //- Constant shear stress 00059 const vector tau0_; 00060 00061 00062 public: 00063 00064 //- Runtime type information 00065 TypeName("fixedShearStress"); 00066 00067 00068 // Constructors 00069 00070 //- Construct from patch and internal field 00071 fixedShearStressFvPatchVectorField 00072 ( 00073 const fvPatch&, 00074 const DimensionedField<vector, volMesh>& 00075 ); 00076 00077 //- Construct from patch, internal field and dictionary 00078 fixedShearStressFvPatchVectorField 00079 ( 00080 const fvPatch&, 00081 const DimensionedField<vector, volMesh>&, 00082 const dictionary& 00083 ); 00084 00085 //- Construct by mapping given 00086 fixedShearStressFvPatchVectorField 00087 ( 00088 const fixedShearStressFvPatchVectorField&, 00089 const fvPatch&, 00090 const DimensionedField<vector, volMesh>&, 00091 const fvPatchFieldMapper& 00092 ); 00093 00094 //- Construct as copy 00095 fixedShearStressFvPatchVectorField 00096 ( 00097 const fixedShearStressFvPatchVectorField& 00098 ); 00099 00100 //- Construct and return a clone 00101 virtual tmp<fvPatchVectorField> clone() const 00102 { 00103 return tmp<fvPatchVectorField> 00104 ( 00105 new fixedShearStressFvPatchVectorField(*this) 00106 ); 00107 } 00108 00109 //- Construct as copy setting internal field reference 00110 fixedShearStressFvPatchVectorField 00111 ( 00112 const fixedShearStressFvPatchVectorField&, 00113 const DimensionedField<vector, volMesh>& 00114 ); 00115 00116 //- Construct and return a clone setting internal field reference 00117 virtual tmp<fvPatchVectorField> clone 00118 ( 00119 const DimensionedField<vector, volMesh>& iF 00120 ) const 00121 { 00122 return tmp<fvPatchVectorField> 00123 ( 00124 new fixedShearStressFvPatchVectorField(*this, iF) 00125 ); 00126 } 00127 00128 00129 // Member functions 00130 00131 //- Update the coefficients associated with the patch field 00132 virtual void updateCoeffs(); 00133 00134 //- Write 00135 virtual void write(Ostream&) const; 00136 }; 00137 00138 00139 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00140 00141 } // End namespace incompressible 00142 } // End namespace Foam 00143 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // 00144 00145 #endif 00146 00147 // ************************************************************************* //