semiPermeableBaffleVelocityFvPatchVectorField.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2017 OpenFOAM Foundation
9 -------------------------------------------------------------------------------
10 License
11  This file is part of OpenFOAM.
12 
13  OpenFOAM is free software: you can redistribute it and/or modify it
14  under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21  for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 
26 Class
27  Foam::semiPermeableBaffleVelocityFvPatchVectorField
28 
29 Group
30  grpGenericBoundaryConditions
31 
32 Description
33  This is a velocity boundary condition for a semi-permeable baffle.
34 
35  This is a velocity boundary condition for baffles which are permeable to a
36  some species and impermeable to others. It must be used in conjunction
37  with the corresponding mass-fraction condition,
38  semiPermeableBaffleMassFractionFvPatchScalarField.
39 
40  This condition sums the species fluxes generated by the the mass-fraction
41  conditions, and uses this total to set the velocity.
42 
43 Usage
44  \table
45  Property | Description | Req'd? | Default
46  rho | Name of the density field | no | rho
47  \endtable
48 
49 See also
50  Foam::semiPermeableBaffleMassFractionFvPatchScalarField
51 
52 SourceFiles
53  semiPermeableBaffleVelocityFvPatchVectorField.C
54 
55 \*---------------------------------------------------------------------------*/
56 
57 #ifndef semiPermeableBaffleVelocityFvPatchVectorField_H
58 #define semiPermeableBaffleVelocityFvPatchVectorField_H
59 
60 #include "mappedPatchBase.H"
62 
63 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
64 
65 namespace Foam
66 {
67 
68 class basicSpecieMixture;
69 
70 /*---------------------------------------------------------------------------*\
71  Class semiPermeableBaffleVelocityFvPatchVectorField Declaration
72 \*---------------------------------------------------------------------------*/
73 
74 class semiPermeableBaffleVelocityFvPatchVectorField
75 :
76  public fixedValueFvPatchVectorField
77 {
79  typedef fixedValueFvPatchVectorField parent_bctype;
80 
81  // Private Data
82 
83  //- Name of the density field
84  const word rhoName_;
85 
86 
87  // Private Member Functions
88 
89  //- Return the composition
90  const basicSpecieMixture& composition() const;
91 
92 
93 public:
94 
95  //- Runtime type information
96  TypeName("semiPermeableBaffleVelocity");
97 
98 
99  // Constructors
100 
101  //- Construct from patch and internal field
103  (
104  const fvPatch&,
106  );
107 
108  //- Construct from patch, internal field and dictionary
110  (
111  const fvPatch&,
113  const dictionary&
114  );
115 
116  //- Construct by mapping onto a new patch
118  (
119  const this_bctype&,
120  const fvPatch&,
122  const fvPatchFieldMapper&
123  );
124 
125  //- Construct as copy setting internal field reference
127  (
128  const this_bctype&,
130  );
131 
132  //- No copy without an internal field
134  (
135  const this_bctype&
136  ) = delete;
137 
138  //- Clone with an internal field reference
140  (
142  ) const
143  {
144  return fvPatchField<vector>::Clone(*this, iF);
145  }
146 
147 
148  // Member functions
149 
150  // Evaluation functions
151 
152  //- Update the coefficients associated with the patch field
153  virtual void updateCoeffs();
154 
155 
156  //- Write
157  virtual void write(Ostream&) const;
158 
159 
160  // Member Operators
161 
162  //- Inherit assignment
163  using parent_bctype::operator=;
164 };
165 
166 
167 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
168 
169 } // End namespace Foam
170 
171 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
172 
173 
174 #endif
175 
176 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by a number of values (eg...
Definition: dictionary.H:130
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:70
Specialization of basicMultiComponentMixture for a mixture consisting of a number for molecular speci...
virtual tmp< fvPatchField< vector > > clone(const DimensionedField< vector, volMesh > &iF) const
Clone with an internal field reference.
static tmp< fvPatchField< Type > > Clone(const DerivedPatchField &pf, Args &&... args)
Clone a patch field, optionally with internal field reference etc.
Definition: fvPatchField.H:635
A class for handling words, derived from Foam::string.
Definition: word.H:63
A FieldMapper for finite-volume patch fields.
TypeName("semiPermeableBaffleVelocity")
Runtime type information.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:56
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: HashPtrTable.H:50
Namespace for OpenFOAM.