BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / finiteVolume / fields / fvPatchFields / derived / pressureInletOutletVelocity / pressureInletOutletVelocityFvPatchVectorField.H
blob174142e5ec22b8327197ca0d97716eaed65fc68f
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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::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         word phiName_;
61         //- Optional tangential velocity component
62         vectorField tangentialVelocity_;
65 public:
67     //- Runtime type information
68     TypeName("pressureInletOutletVelocity");
71     // Constructors
73         //- Construct from patch and internal field
74         pressureInletOutletVelocityFvPatchVectorField
75         (
76             const fvPatch&,
77             const DimensionedField<vector, volMesh>&
78         );
80         //- Construct from patch, internal field and dictionary
81         pressureInletOutletVelocityFvPatchVectorField
82         (
83             const fvPatch&,
84             const DimensionedField<vector, volMesh>&,
85             const dictionary&
86         );
88         //- Construct by mapping given
89         //  pressureInletOutletVelocityFvPatchVectorField onto a new patch
90         pressureInletOutletVelocityFvPatchVectorField
91         (
92             const pressureInletOutletVelocityFvPatchVectorField&,
93             const fvPatch&,
94             const DimensionedField<vector, volMesh>&,
95             const fvPatchFieldMapper&
96         );
98         //- Construct as copy
99         pressureInletOutletVelocityFvPatchVectorField
100         (
101             const pressureInletOutletVelocityFvPatchVectorField&
102         );
104         //- Construct and return a clone
105         virtual tmp<fvPatchVectorField> clone() const
106         {
107             return tmp<fvPatchVectorField>
108             (
109                 new pressureInletOutletVelocityFvPatchVectorField(*this)
110             );
111         }
113         //- Construct as copy setting internal field reference
114         pressureInletOutletVelocityFvPatchVectorField
115         (
116             const pressureInletOutletVelocityFvPatchVectorField&,
117             const DimensionedField<vector, volMesh>&
118         );
120         //- Construct and return a clone setting internal field reference
121         virtual tmp<fvPatchVectorField> clone
122         (
123             const DimensionedField<vector, volMesh>& iF
124         ) const
125         {
126             return tmp<fvPatchVectorField>
127             (
128                 new pressureInletOutletVelocityFvPatchVectorField(*this, iF)
129             );
130         }
133     // Member functions
135         // Access
137             //- Return the name of phi
138             const word& phiName() const
139             {
140                 return phiName_;
141             }
143             //- Return reference to the name of phi to allow adjustment
144             word& phiName()
145             {
146                 return phiName_;
147             }
149             //- Return the tangential velocity
150             const vectorField& tangentialVelocity() const
151             {
152                 return tangentialVelocity_;
153             }
155             //- Reset the tangential velocity
156             void setTangentialVelocity(const vectorField& tangentialVelocity);
159         // Mapping functions
161             //- Map (and resize as needed) from self given a mapping object
162             virtual void autoMap
163             (
164                 const fvPatchFieldMapper&
165             );
167             //- Reverse map the given fvPatchField onto this fvPatchField
168             virtual void rmap
169             (
170                 const fvPatchVectorField&,
171                 const labelList&
172             );
175         //- Update the coefficients associated with the patch field
176         virtual void updateCoeffs();
178         //- Write
179         virtual void write(Ostream&) const;
182     // Member operators
184         virtual void operator=(const fvPatchField<vector>& pvf);
188 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
190 } // End namespace Foam
192 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
194 #endif
196 // ************************************************************************* //