fixedRhoFvPatchScalarField.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) 2011-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::fixedRhoFvPatchScalarField
26 
27 Description
28  Foam::fixedRhoFvPatchScalarField
29 
30  This boundary condition provides a fixed density inlet condition for
31  compressible solvers, where the density of calculated using:
32 
33  \f[
34  \rho = \psi p
35  \f]
36 
37  where
38  \vartable
39  p | pressure [Pa]
40  \rho | density [kg/m3]
41  \endvartable
42 
43 
44 Usage
45  \table
46  Property | Description | Required | Default value
47  p | Pressure field name | no | p
48  psi | Compressibility field name | no | thermo:psi
49  \endtable
50 
51  Example of the boundary condition specification:
52  \verbatim
53  <patchName>
54  {
55  type fixedRho;
56  }
57  \endverbatim
58 
59 SourceFiles
60  fixedRhoFvPatchScalarField.C
61 
62 \*---------------------------------------------------------------------------*/
63 
64 #ifndef fixedRhoFvPatchScalarField_H
65 #define fixedRhoFvPatchScalarField_H
66 
68 
69 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
70 
71 namespace Foam
72 {
73 
74 /*---------------------------------------------------------------------------*\
75  Class fixedRhoFvPatchScalarField Declaration
76 \*---------------------------------------------------------------------------*/
77 
78 class fixedRhoFvPatchScalarField
79 :
80  public fixedValueFvPatchScalarField
81 {
82 
83 private:
84 
85  // Private data
86 
87  //- Pressure field name, default = "p"
88  word pName_;
89 
90  //- Compressibility field name, default = "thermo:psi"
91  word psiName_;
92 
93 
94 public:
95 
96  //- Runtime type information
97  TypeName("fixedRho");
98 
99 
100  // Constructors
101 
102  //- Construct from patch and internal field
104  (
105  const fvPatch&,
107  );
108 
109  //- Construct from patch, internal field and dictionary
111  (
112  const fvPatch&,
114  const dictionary&
115  );
116 
117  //- Construct by mapping given fixedRhoFvPatchScalarField
118  // onto a new patch
120  (
122  const fvPatch&,
124  const fvPatchFieldMapper&
125  );
126 
127  //- Construct as copy
129  (
131  );
132 
133  //- Construct and return a clone
134  virtual tmp<fvPatchScalarField> clone() const
135  {
137  (
138  new fixedRhoFvPatchScalarField(*this)
139  );
140  }
141 
142  //- Construct as copy setting internal field reference
144  (
147  );
148 
149  //- Construct and return a clone setting internal field reference
151  (
153  ) const
154  {
156  (
157  new fixedRhoFvPatchScalarField(*this, iF)
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 };
174 
175 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
176 
177 } // End namespace Foam
178 
179 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
180 
181 #endif
182 
183 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
virtual tmp< fvPatchScalarField > clone() const
Construct and return a clone.
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
fixedRhoFvPatchScalarField(const fvPatch &, const DimensionedField< scalar, volMesh > &)
Construct from patch and internal field.
Foam::fixedRhoFvPatchScalarField.
TypeName("fixedRho")
Runtime type information.
Foam::fvPatchFieldMapper.
virtual void write(Ostream &) const
Write.
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:53
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
A class for managing temporary objects.
Definition: PtrList.H:53
Namespace for OpenFOAM.