gradientEnergyFvPatchScalarField.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::gradientEnergyFvPatchScalarField
26 
27 Description
28  This boundary condition provides a gradient condition for internal energy,
29  where the gradient is calculated using:
30 
31  \f[
32  \nabla(e_p) = \nabla_\perp C_p(p, T) + \frac{e_p - e_c}{\Delta}
33  \f]
34 
35  where
36  \vartable
37  e_p | energy at patch faces [J]
38  e_c | energy at patch internal cells [J]
39  p | pressure [bar]
40  T | temperature [K]
41  C_p | specific heat [J/kg/K]
42  \Delta | distance between patch face and internal cell centres [m]
43  \endvartable
44 
45 Usage
46  Example of the boundary condition specification:
47  \verbatim
48  <patchName>
49  {
50  type gradientEnergy;
51  gradient uniform 10;
52  }
53  \endverbatim
54 
55 See also
56  Foam::fixedGradientFvPatchField
57 
58 SourceFiles
59  gradientEnergyFvPatchScalarField.C
60 
61 \*---------------------------------------------------------------------------*/
62 
63 #ifndef gradientEnergyFvPatchScalarField_H
64 #define gradientEnergyFvPatchScalarField_H
65 
67 
68 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
69 
70 namespace Foam
71 {
72 
73 /*---------------------------------------------------------------------------*\
74  Class gradientEnergyFvPatchScalarField Declaration
75 \*---------------------------------------------------------------------------*/
76 
77 class gradientEnergyFvPatchScalarField
78 :
79  public fixedGradientFvPatchScalarField
80 {
81 
82 public:
83 
84  //- Runtime type information
85  TypeName("gradientEnergy");
86 
87 
88  // Constructors
89 
90  //- Construct from patch and internal field
92  (
93  const fvPatch&,
94  const DimensionedField<scalar, volMesh>&
95  );
96 
97  //- Construct from patch, internal field and dictionary
99  (
100  const fvPatch&,
102  const dictionary&
103  );
104 
105  //- Construct by mapping given gradientEnergyFvPatchScalarField
106  // onto a new patch
108  (
110  const fvPatch&,
112  const fvPatchFieldMapper&
113  );
114 
115  //- Construct as copy
117  (
119  );
120 
121  //- Construct and return a clone
122  virtual tmp<fvPatchScalarField> clone() const
123  {
125  (
127  );
128  }
129 
130  //- Construct as copy setting internal field reference
132  (
135  );
136 
137  //- Construct and return a clone setting internal field reference
139  (
141  ) const
142  {
144  (
146  );
147  }
148 
149 
150  // Member functions
151 
152  // Evaluation functions
153 
154  //- Update the coefficients associated with the patch field
155  virtual void updateCoeffs();
156 };
157 
158 
159 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
160 
161 } // End namespace Foam
163 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
164 
165 #endif
166 
167 // ************************************************************************* //
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
This boundary condition provides a gradient condition for internal energy, where the gradient is calc...
Foam::fvPatchFieldMapper.
virtual tmp< fvPatchScalarField > clone() const
Construct and return a clone.
gradientEnergyFvPatchScalarField(const fvPatch &, const DimensionedField< scalar, volMesh > &)
Construct from patch and internal field.
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
TypeName("gradientEnergy")
Runtime type information.
Namespace for OpenFOAM.