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

alphaFixedPressureFvPatchScalarField.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::alphaFixedPressureFvPatchScalarField
00026 
00027 Description
00028     A fixed-pressure alphaContactAngle boundary
00029 
00030 SourceFiles
00031     alphaFixedPressureFvPatchScalarField.C
00032 
00033 \*---------------------------------------------------------------------------*/
00034 
00035 #ifndef alphaFixedPressureFvPatchScalarField_H
00036 #define alphaFixedPressureFvPatchScalarField_H
00037 
00038 #include <finiteVolume/fixedValueFvPatchFields.H>
00039 
00040 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00041 
00042 namespace Foam
00043 {
00044 
00045 /*---------------------------------------------------------------------------*\
00046                  Class alphaFixedPressureFvPatch Declaration
00047 \*---------------------------------------------------------------------------*/
00048 
00049 class alphaFixedPressureFvPatchScalarField
00050 :
00051     public fixedValueFvPatchScalarField
00052 {
00053     // Private data
00054 
00055         //- Fixed pressure
00056         scalarField p_;
00057 
00058 
00059 public:
00060 
00061     //- Runtime type information
00062     TypeName("alphaFixedPressure");
00063 
00064 
00065     // Constructors
00066 
00067         //- Construct from patch and internal field
00068         alphaFixedPressureFvPatchScalarField
00069         (
00070             const fvPatch&,
00071             const DimensionedField<scalar, volMesh>&
00072         );
00073 
00074         //- Construct from patch, internal field and dictionary
00075         alphaFixedPressureFvPatchScalarField
00076         (
00077             const fvPatch&,
00078             const DimensionedField<scalar, volMesh>&,
00079             const dictionary&
00080         );
00081 
00082         //- Construct by mapping given alphaFixedPressureFvPatchScalarField
00083         //  onto a new patch
00084         alphaFixedPressureFvPatchScalarField
00085         (
00086             const alphaFixedPressureFvPatchScalarField&,
00087             const fvPatch&,
00088             const DimensionedField<scalar, volMesh>&,
00089             const fvPatchFieldMapper&
00090         );
00091 
00092         //- Construct as copy
00093         alphaFixedPressureFvPatchScalarField
00094         (
00095             const alphaFixedPressureFvPatchScalarField&
00096         );
00097 
00098         //- Construct and return a clone
00099         virtual tmp<fvPatchScalarField> clone() const
00100         {
00101             return tmp<fvPatchScalarField>
00102             (
00103                 new alphaFixedPressureFvPatchScalarField(*this)
00104             );
00105         }
00106 
00107         //- Construct as copy setting internal field reference
00108         alphaFixedPressureFvPatchScalarField
00109         (
00110             const alphaFixedPressureFvPatchScalarField&,
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 alphaFixedPressureFvPatchScalarField(*this, iF)
00123             );
00124         }
00125 
00126 
00127     // Member functions
00128 
00129         // Access
00130 
00131             //- Return the alphaFixed pressure
00132             const scalarField& p() const
00133             {
00134                 return p_;
00135             }
00136 
00137             //- Return reference to the alphaFixed pressure to allow adjustment
00138             scalarField& p()
00139             {
00140                 return p_;
00141             }
00142 
00143 
00144         // Mapping functions
00145 
00146             //- Map (and resize as needed) from self given a mapping object
00147             virtual void autoMap
00148             (
00149                 const fvPatchFieldMapper&
00150             );
00151 
00152             //- Reverse map the given fvPatchField onto this fvPatchField
00153             virtual void rmap
00154             (
00155                 const fvPatchScalarField&,
00156                 const labelList&
00157             );
00158 
00159 
00160         // Evaluation functions
00161 
00162             //- Update the coefficients associated with the patch field
00163             virtual void updateCoeffs();
00164 
00165 
00166         //- Write
00167         virtual void write(Ostream&) const;
00168 };
00169 
00170 
00171 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00172 
00173 } // End namespace Foam
00174 
00175 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
00176 
00177 #endif
00178 
00179 // ************************ vim: set sw=4 sts=4 et: ************************ //
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines