semiPermeableBaffleVelocityFvPatchVectorField.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2017-2018 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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.
15 
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.
20 
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/>.
23 
24 Class
25  Foam::semiPermeableBaffleVelocityFvPatchVectorField
26 
27 Description
28  This is a velocity boundary condition for a semi-permeable baffle.
29 
30  This is a velocity boundary condition for baffles which are permeable to a
31  some species and impermeable to others. It must be used in conjunction
32  with the corresponding mass-fraction condition,
33  semiPermeableBaffleMassFractionFvPatchScalarField.
34 
35  This condition sums the species fluxes generated by the mass-fraction
36  conditions, and uses this total to set the velocity.
37 
38 Usage
39  \table
40  Property | Description | Req'd? | Default
41  rho | Name of the density field | no | rho
42  \endtable
43 
44 See also
45  Foam::semiPermeableBaffleMassFractionFvPatchScalarField
46 
47 SourceFiles
48  semiPermeableBaffleVelocityFvPatchVectorField.C
49 
50 \*---------------------------------------------------------------------------*/
51 
52 #ifndef semiPermeableBaffleVelocityFvPatchVectorField_H
53 #define semiPermeableBaffleVelocityFvPatchVectorField_H
54 
55 #include "mappedPatchBase.H"
57 
58 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
59 
60 namespace Foam
61 {
62 
63 class basicSpecieMixture;
64 
65 /*---------------------------------------------------------------------------*\
66  Class semiPermeableBaffleVelocityFvPatchVectorField Declaration
67 \*---------------------------------------------------------------------------*/
68 
69 class semiPermeableBaffleVelocityFvPatchVectorField
70 :
71  public fixedValueFvPatchVectorField
72 {
73  // Private data
74 
75  //- Name of the density field
76  const word rhoName_;
77 
78 
79  // Private Member Functions
80 
81  //- Return the composition
82  const basicSpecieMixture& composition() const;
83 
84 
85 public:
86 
87  //- Runtime type information
88  TypeName("semiPermeableBaffleVelocity");
89 
90 
91  // Constructors
92 
93  //- Construct from patch and internal field
95  (
96  const fvPatch&,
98  );
99 
100  //- Construct from patch, internal field and dictionary
102  (
103  const fvPatch&,
105  const dictionary&
106  );
107 
108  //- Construct by mapping given fixedValueTypeFvPatchField
109  // onto a new patch
111  (
113  const fvPatch&,
115  const fvPatchFieldMapper&
116  );
117 
118  //- Construct as copy
120  (
122  );
123 
124  //- Construct and return a clone
125  virtual tmp<fvPatchVectorField> clone() const
126  {
128  (
130  );
131  }
132 
133  //- Construct as copy setting internal field reference
135  (
138  );
139 
140  //- Construct and return a clone setting internal field reference
142  (
144  ) const
145  {
147  (
149  (
150  *this,
151  iF
152  )
153  );
154  }
155 
156 
157  // Member functions
158 
159  // Evaluation functions
160 
161  //- Update the coefficients associated with the patch field
162  virtual void updateCoeffs();
163 
164 
165  //- Write
166  virtual void write(Ostream&) const;
167 };
168 
169 
170 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
171 
172 } // End namespace Foam
173 
174 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
175 
176 
177 #endif
178 
179 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
Specialization of basicMultiComponentMixture for a mixture consisting of a number for molecular speci...
Foam::fvPatchFieldMapper.
TypeName("semiPermeableBaffleVelocity")
Runtime type information.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:53
semiPermeableBaffleVelocityFvPatchVectorField(const fvPatch &, const DimensionedField< vector, volMesh > &)
Construct from patch and internal field.
This is a velocity boundary condition for a semi-permeable baffle.
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
A class for managing temporary objects.
Definition: PtrList.H:53
virtual tmp< fvPatchVectorField > clone() const
Construct and return a clone.
Namespace for OpenFOAM.