Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / src / finiteVolume / fields / fvPatchFields / derived / pressureInletOutletVelocity / pressureInletOutletVelocityFvPatchVectorField.H
blob94ccd7b32b307d9b0db31c87e5d10154e8bdd7c0
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::pressureInletOutletVelocityFvPatchVectorField
27 Description
28     Velocity inlet/outlet boundary condition patches for where the pressure is
29     specified.  zero-gradient is applied for outflow (as defined by the flux)
30     and for inflow the velocity is obtained from the patch-face normal
31     component of the internal-cell value.
33 SourceFiles
34     pressureInletOutletVelocityFvPatchVectorField.C
36 \*---------------------------------------------------------------------------*/
38 #ifndef pressureInletOutletVelocityFvPatchVectorField_H
39 #define pressureInletOutletVelocityFvPatchVectorField_H
41 #include "fvPatchFields.H"
42 #include "directionMixedFvPatchFields.H"
44 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
46 namespace Foam
49 /*---------------------------------------------------------------------------*\
50               Class pressureInletOutletVelocityFvPatch Declaration
51 \*---------------------------------------------------------------------------*/
53 class pressureInletOutletVelocityFvPatchVectorField
55     public directionMixedFvPatchVectorField
57     // Private data
59         //- Name of flux field
60         word phiName_;
62         //- Optional tangential velocity component
63         vectorField tangentialVelocity_;
66 public:
68     //- Runtime type information
69     TypeName("pressureInletOutletVelocity");
72     // Constructors
74         //- Construct from patch and internal field
75         pressureInletOutletVelocityFvPatchVectorField
76         (
77             const fvPatch&,
78             const DimensionedField<vector, volMesh>&
79         );
81         //- Construct from patch, internal field and dictionary
82         pressureInletOutletVelocityFvPatchVectorField
83         (
84             const fvPatch&,
85             const DimensionedField<vector, volMesh>&,
86             const dictionary&
87         );
89         //- Construct by mapping given
90         //  pressureInletOutletVelocityFvPatchVectorField onto a new patch
91         pressureInletOutletVelocityFvPatchVectorField
92         (
93             const pressureInletOutletVelocityFvPatchVectorField&,
94             const fvPatch&,
95             const DimensionedField<vector, volMesh>&,
96             const fvPatchFieldMapper&
97         );
99         //- Construct as copy
100         pressureInletOutletVelocityFvPatchVectorField
101         (
102             const pressureInletOutletVelocityFvPatchVectorField&
103         );
105         //- Construct and return a clone
106         virtual tmp<fvPatchVectorField> clone() const
107         {
108             return tmp<fvPatchVectorField>
109             (
110                 new pressureInletOutletVelocityFvPatchVectorField(*this)
111             );
112         }
114         //- Construct as copy setting internal field reference
115         pressureInletOutletVelocityFvPatchVectorField
116         (
117             const pressureInletOutletVelocityFvPatchVectorField&,
118             const DimensionedField<vector, volMesh>&
119         );
121         //- Construct and return a clone setting internal field reference
122         virtual tmp<fvPatchVectorField> clone
123         (
124             const DimensionedField<vector, volMesh>& iF
125         ) const
126         {
127             return tmp<fvPatchVectorField>
128             (
129                 new pressureInletOutletVelocityFvPatchVectorField(*this, iF)
130             );
131         }
134     // Member functions
136         // Access
138             //- Return the name of phi
139             const word& phiName() const
140             {
141                 return phiName_;
142             }
144             //- Return reference to the name of phi to allow adjustment
145             word& phiName()
146             {
147                 return phiName_;
148             }
150             //- Return the tangential velocity
151             const vectorField& tangentialVelocity() const
152             {
153                 return tangentialVelocity_;
154             }
156             //- Reset the tangential velocity
157             void setTangentialVelocity(const vectorField& tangentialVelocity);
160         // Mapping functions
162             //- Map (and resize as needed) from self given a mapping object
163             virtual void autoMap
164             (
165                 const fvPatchFieldMapper&
166             );
168             //- Reverse map the given fvPatchField onto this fvPatchField
169             virtual void rmap
170             (
171                 const fvPatchVectorField&,
172                 const labelList&
173             );
176         //- Update the coefficients associated with the patch field
177         virtual void updateCoeffs();
179         //- Write
180         virtual void write(Ostream&) const;
183     // Member operators
185         virtual void operator=(const fvPatchField<vector>& pvf);
189 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
191 } // End namespace Foam
193 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
195 #endif
197 // ************************************************************************* //