Loading...
Searching...
No Matches
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
69
70/*---------------------------------------------------------------------------*\
71 Class semiPermeableBaffleVelocityFvPatchVectorField Declaration
72\*---------------------------------------------------------------------------*/
73
75:
76 public fixedValueFvPatchVectorField
77{
78 // Private data
80 //- Name of the density field
81 const word rhoName_;
82
83
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 );
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 as copy setting internal field reference
131 (
134 );
135
136 //- Return a clone
137 virtual tmp<fvPatchField<vector>> clone() const
138 {
139 return fvPatchField<vector>::Clone(*this);
140 }
141
142 //- Clone with an internal field reference
144 (
146 ) const
147 {
148 return fvPatchField<vector>::Clone(*this, iF);
149 }
150
151
152 // Member functions
153
154 // Evaluation functions
155
156 //- Update the coefficients associated with the patch field
157 virtual void updateCoeffs();
158
159
160 //- Write
161 virtual void write(Ostream&) const;
162};
163
164
165// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
166
167} // End namespace Foam
168
169// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
170
171
172#endif
173
174// ************************************************************************* //
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:59
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:133
A FieldMapper for finite-volume patch fields.
static tmp< fvPatchField< Type > > Clone(const DerivedPatchField &pf, Args &&... args)
Clone a patch field, optionally with internal field reference etc.
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< fvPatchField< vector > > clone() const
Return a clone.
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
TypeName("semiPermeableBaffleVelocity")
Runtime type information.
semiPermeableBaffleVelocityFvPatchVectorField(const fvPatch &, const DimensionedField< vector, volMesh > &)
Construct from patch and internal field.
virtual tmp< fvPatchField< vector > > clone(const DimensionedField< vector, volMesh > &iF) const
Clone with an internal field reference.
A class for managing temporary objects.
Definition tmp.H:75
A class for handling words, derived from Foam::string.
Definition word.H:66
basicSpecieMixture & composition
Namespace for OpenFOAM.
runTime write()
#define TypeName(TypeNameString)
Declare a ClassName() with extra virtual type info.
Definition typeInfo.H:68