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

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