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-------------------------------------------------------------------------------
10License
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
26Class
27 Foam::semiPermeableBaffleVelocityFvPatchVectorField
28
29Group
30 grpGenericBoundaryConditions
31
32Description
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
43Usage
44 \table
45 Property | Description | Req'd? | Default
46 rho | Name of the density field | no | rho
47 \endtable
48
49See also
50 Foam::semiPermeableBaffleMassFractionFvPatchScalarField
51
52SourceFiles
53 semiPermeableBaffleVelocityFvPatchVectorField.C
54
55\*---------------------------------------------------------------------------*/
56
57#ifndef semiPermeableBaffleVelocityFvPatchVectorField_H
58#define semiPermeableBaffleVelocityFvPatchVectorField_H
59
60#include "mappedPatchBase.H"
62
63// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
64
65namespace Foam
66{
67
68class basicSpecieMixture;
69
70/*---------------------------------------------------------------------------*\
71 Class semiPermeableBaffleVelocityFvPatchVectorField Declaration
72\*---------------------------------------------------------------------------*/
73
74class semiPermeableBaffleVelocityFvPatchVectorField
75:
76 public fixedValueFvPatchVectorField
77{
78 // Private data
79
80 //- Name of the density field
81 const word rhoName_;
82
84 // Private Member Functions
85
86 //- Return the composition
87 const basicSpecieMixture& composition() const;
88
89
90public:
91
92 //- Runtime type information
93 TypeName("semiPermeableBaffleVelocity");
94
95
96 // Constructors
97
98 //- Construct from patch and internal field
100 (
101 const fvPatch&,
103 );
104
105 //- Construct from patch, internal field and dictionary
107 (
108 const fvPatch&,
110 const dictionary&
111 );
112
113 //- Construct by mapping given fixedValueTypeFvPatchField
114 // onto a new patch
116 (
118 const fvPatch&,
120 const fvPatchFieldMapper&
121 );
122
123 //- Construct as copy
125 (
127 );
128
129 //- Construct and return a clone
130 virtual tmp<fvPatchVectorField> clone() const
131 {
133 (
135 );
136 }
137
138 //- Construct as copy setting internal field reference
140 (
143 );
144
145 //- Construct and return a clone setting internal field reference
147 (
149 ) const
150 {
152 (
154 (
155 *this,
156 iF
157 )
158 );
159 }
160
161
162 // Member functions
163
164 // Evaluation functions
165
166 //- Update the coefficients associated with the patch field
167 virtual void updateCoeffs();
168
169
170 //- Write
171 virtual void write(Ostream&) const;
172};
173
174
175// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
176
177} // End namespace Foam
178
179// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
180
181
182#endif
183
184// ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:62
Specialization of basicMultiComponentMixture for a mixture consisting of a number for molecular speci...
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Definition: dictionary.H:126
A FieldMapper for finite-volume patch fields.
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:71
This is a velocity boundary condition for a semi-permeable baffle.
virtual tmp< fvPatchVectorField > clone(const DimensionedField< vector, volMesh > &iF) const
Construct and return a clone setting internal field reference.
virtual tmp< fvPatchVectorField > clone() const
Construct and return a clone.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
TypeName("semiPermeableBaffleVelocity")
Runtime type information.
A class for managing temporary objects.
Definition: tmp.H:65
A class for handling words, derived from Foam::string.
Definition: word.H:68
Namespace for OpenFOAM.
runTime write()
#define TypeName(TypeNameString)
Declare a ClassName() with extra virtual type info.
Definition: typeInfo.H:73