Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / finiteVolume / cfdTools / general / fieldSources / pressureGradientExplicitSource / pressureGradientExplicitSource.H
blob2fd41eb45aea74b3f6e15326720f11b4141cc6c5
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::pressureGradientExplicitSource
27 Description
28     Creates a cell set pressure gradient source
30     Note: Currently only handles kinematic pressure
32 SourceFiles
33     pressureGradientExplicitSource.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef pressureGradientExplicitSource_H
38 #define pressureGradientExplicitSource_H
40 #include "autoPtr.H"
41 #include "topoSetSource.H"
42 #include "cellSet.H"
43 #include "fvMesh.H"
44 #include "volFields.H"
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 namespace Foam
51 /*---------------------------------------------------------------------------*\
52               Class pressureGradientExplicitSource Declaration
53 \*---------------------------------------------------------------------------*/
55 class pressureGradientExplicitSource
57     // Private data
59         //- Name of the source
60         const word sourceName_;
62         //- Reference to the mesh
63         const fvMesh& mesh_;
65         //- Reference to the velocity field
66         volVectorField& U_;
68         //- Properties dictionary
69         IOdictionary dict_;
71         //- Average velocity
72         vector Ubar_;
74         //- Initial pressure gradient
75         dimensionedScalar gradPini_;
77         //- Pressure gradient
78         dimensionedScalar gradP_;
80         //- Flow direction
81         vector flowDir_;
83         //- Name of cell source
84         word cellSource_;
86         //- The method by which the cells will be selected
87         autoPtr<topoSetSource> cellSelector_;
89         //- The set of selected cells
90         cellSet selectedCellSet_;
93     // Private Member Functions
95         //- Write the pressure gradient to file (for restarts etc)
96         void writeGradP() const;
98         //- Disallow default bitwise copy construct
99         pressureGradientExplicitSource(const pressureGradientExplicitSource&);
101         //- Disallow default bitwise assignment
102         void operator=(const pressureGradientExplicitSource&);
105 public:
107     // Constructors
109         //- Construct from explicit source name and mesh
110         pressureGradientExplicitSource
111         (
112             const word& sourceName,
113             volVectorField& U
114         );
117     // Member Functions
119         // Access
121             //- Return a tmp field of the source
122             tmp<DimensionedField<vector, volMesh> > Su() const;
125         //- Correct driving force for a constant mass flow rate
126         void update();
130 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
132 } // End namespace Foam
134 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
136 #endif
138 // ************************************************************************* //