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

oscillatingDisplacementPointPatchVectorField.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::oscillatingDisplacementPointPatchVectorField
00026 
00027 Description
00028     Foam::oscillatingDisplacementPointPatchVectorField
00029 
00030 SourceFiles
00031     oscillatingDisplacementPointPatchVectorField.C
00032 
00033 \*---------------------------------------------------------------------------*/
00034 
00035 #ifndef oscillatingDisplacementPointPatchVectorField_H
00036 #define oscillatingDisplacementPointPatchVectorField_H
00037 
00038 #include <OpenFOAM/fixedValuePointPatchField.H>
00039 
00040 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00041 
00042 namespace Foam
00043 {
00044 
00045 /*---------------------------------------------------------------------------*\
00046         Class oscillatingDisplacementPointPatchVectorField Declaration
00047 \*---------------------------------------------------------------------------*/
00048 
00049 class oscillatingDisplacementPointPatchVectorField
00050 :
00051     public fixedValuePointPatchField<vector>
00052 {
00053     // Private data
00054 
00055         vector amplitude_;
00056         scalar omega_;
00057 
00058 
00059 public:
00060 
00061     //- Runtime type information
00062     TypeName("oscillatingDisplacement");
00063 
00064 
00065     // Constructors
00066 
00067         //- Construct from patch and internal field
00068         oscillatingDisplacementPointPatchVectorField
00069         (
00070             const pointPatch&,
00071             const DimensionedField<vector, pointMesh>&
00072         );
00073 
00074         //- Construct from patch, internal field and dictionary
00075         oscillatingDisplacementPointPatchVectorField
00076         (
00077             const pointPatch&,
00078             const DimensionedField<vector, pointMesh>&,
00079             const dictionary&
00080         );
00081 
00082         //- Construct by mapping given patchField<vector> onto a new patch
00083         oscillatingDisplacementPointPatchVectorField
00084         (
00085             const oscillatingDisplacementPointPatchVectorField&,
00086             const pointPatch&,
00087             const DimensionedField<vector, pointMesh>&,
00088             const pointPatchFieldMapper&
00089         );
00090 
00091         //- Construct and return a clone
00092         virtual autoPtr<pointPatchField<vector> > clone() const
00093         {
00094             return autoPtr<pointPatchField<vector> >
00095             (
00096                 new oscillatingDisplacementPointPatchVectorField
00097                 (
00098                     *this
00099                 )
00100             );
00101         }
00102 
00103         //- Construct as copy setting internal field reference
00104         oscillatingDisplacementPointPatchVectorField
00105         (
00106             const oscillatingDisplacementPointPatchVectorField&,
00107             const DimensionedField<vector, pointMesh>&
00108         );
00109 
00110         //- Construct and return a clone setting internal field reference
00111         virtual autoPtr<pointPatchField<vector> > clone
00112         (
00113             const DimensionedField<vector, pointMesh>& iF
00114         ) const
00115         {
00116             return autoPtr<pointPatchField<vector> >
00117             (
00118                 new oscillatingDisplacementPointPatchVectorField
00119                 (
00120                     *this,
00121                     iF
00122                 )
00123             );
00124         }
00125 
00126 
00127     // Member functions
00128 
00129         // Evaluation functions
00130 
00131             //- Update the coefficients associated with the patch field
00132             virtual void updateCoeffs();
00133 
00134 
00135         //- Write
00136         virtual void write(Ostream&) const;
00137 };
00138 
00139 
00140 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00141 
00142 } // End namespace Foam
00143 
00144 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00145 
00146 #endif
00147 
00148 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines