FreeFOAM The Cross-Platform CFD Toolkit
Hosted by SourceForge:
Get FreeFOAM at SourceForge.net.
            Fast, secure and Free Open Source software downloads

translatingWallVelocityFvPatchVectorField.H

Go to the documentation of this file.
00001 /*---------------------------------------------------------------------------*\
00002   =========                 |
00003   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
00004    \\    /   O peration     |
00005     \\  /    A nd           | Copyright (C) 1991-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
00013     the Free Software Foundation, either version 3 of the License, or
00014     (at your 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, see <http://www.gnu.org/licenses/>.
00023 
00024 Class
00025     Foam::translatingWallVelocityFvPatchVectorField
00026 
00027 Description
00028     Foam::translatingWallVelocityFvPatchVectorField
00029 
00030 SourceFiles
00031     translatingWallVelocityFvPatchVectorField.C
00032 
00033 \*---------------------------------------------------------------------------*/
00034 
00035 #ifndef translatingWallVelocityFvPatchVectorField_H
00036 #define translatingWallVelocityFvPatchVectorField_H
00037 
00038 #include <finiteVolume/fixedValueFvPatchFields.H>
00039 
00040 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00041 
00042 namespace Foam
00043 {
00044 
00045 /*---------------------------------------------------------------------------*\
00046            Class translatingWallVelocityFvPatchField Declaration
00047 \*---------------------------------------------------------------------------*/
00048 
00049 class translatingWallVelocityFvPatchVectorField
00050 :
00051     public fixedValueFvPatchVectorField
00052 {
00053     // Private data
00054 
00055         //- Origin of the rotation
00056         vector U_;
00057 
00058 
00059 public:
00060 
00061     //- Runtime type information
00062     TypeName("translatingWallVelocity");
00063 
00064 
00065     // Constructors
00066 
00067         //- Construct from patch and internal field
00068         translatingWallVelocityFvPatchVectorField
00069         (
00070             const fvPatch&,
00071             const DimensionedField<vector, volMesh>&
00072         );
00073 
00074         //- Construct from patch, internal field and dictionary
00075         translatingWallVelocityFvPatchVectorField
00076         (
00077             const fvPatch&,
00078             const DimensionedField<vector, volMesh>&,
00079             const dictionary&
00080         );
00081 
00082         //- Construct by mapping given a
00083         // translatingWallVelocityFvPatchVectorField onto a new patch
00084         translatingWallVelocityFvPatchVectorField
00085         (
00086             const translatingWallVelocityFvPatchVectorField&,
00087             const fvPatch&,
00088             const DimensionedField<vector, volMesh>&,
00089             const fvPatchFieldMapper&
00090         );
00091 
00092         //- Construct as copy
00093         translatingWallVelocityFvPatchVectorField
00094         (
00095             const translatingWallVelocityFvPatchVectorField&
00096         );
00097 
00098         //- Construct and return a clone
00099         virtual tmp<fvPatchVectorField> clone() const
00100         {
00101             return tmp<fvPatchVectorField>
00102             (
00103                 new translatingWallVelocityFvPatchVectorField(*this)
00104             );
00105         }
00106 
00107         //- Construct as copy setting internal field reference
00108         translatingWallVelocityFvPatchVectorField
00109         (
00110             const translatingWallVelocityFvPatchVectorField&,
00111             const DimensionedField<vector, volMesh>&
00112         );
00113 
00114         //- Construct and return a clone setting internal field reference
00115         virtual tmp<fvPatchVectorField> clone
00116         (
00117              const DimensionedField<vector, volMesh>& iF
00118         ) const
00119         {
00120             return tmp<fvPatchVectorField>
00121             (
00122                 new translatingWallVelocityFvPatchVectorField(*this, iF)
00123             );
00124         }
00125 
00126 
00127 
00128     // Member functions
00129 
00130         // Access functions
00131 
00132             //- Return the velocity
00133             const vector& U() const
00134             {
00135                 return U_;
00136             }
00137 
00138             //- Update the coefficients associated with the patch field
00139             virtual void updateCoeffs();
00140 
00141             //- Write
00142             virtual void write(Ostream&) const;
00143 };
00144 
00145 
00146 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00147 
00148 } // End namespace Foam
00149 
00150 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00151 
00152 #endif
00153 
00154 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines