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

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