mixedEnergyCalculatedTemperatureFvPatchScalarField.C
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) 2019-2023 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 \*---------------------------------------------------------------------------*/
25 
27 
28 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
29 
30 namespace Foam
31 {
33  (
35  0
36  );
37 }
38 
39 
40 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
41 
44 (
45  const fvPatch& p,
47 )
48 :
49  calculatedFvPatchScalarField(p, iF),
50  heRefValue_(p.size()),
51  heRefGrad_(p.size()),
52  heValueFraction_(p.size())
53 {}
54 
55 
58 (
59  const fvPatch& p,
61  const dictionary& dict
62 )
63 :
64  calculatedFvPatchScalarField(p, iF),
65  heRefValue_(p.size()),
66  heRefGrad_(p.size()),
67  heValueFraction_(p.size())
68 {
70 }
71 
72 
75 (
77  const fvPatch& p,
79  const fvPatchFieldMapper& mapper
80 )
81 :
82  calculatedFvPatchScalarField(ptf, p, iF, mapper),
83  heRefValue_(mapper(ptf.heRefValue_)),
84  heRefGrad_(mapper(ptf.heRefGrad_)),
85  heValueFraction_(mapper(ptf.heValueFraction_))
86 {}
87 
88 
91 (
94 )
95 :
96  calculatedFvPatchScalarField(ptf, iF),
97  heRefValue_(ptf.heRefValue_),
98  heRefGrad_(ptf.heRefGrad_),
99  heValueFraction_(ptf.heValueFraction_)
100 {}
101 
102 
103 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
104 
106 (
107  const fvPatchScalarField& ptf,
108  const fvPatchFieldMapper& mapper
109 )
110 {
111  calculatedFvPatchScalarField::map(ptf, mapper);
112 
114  refCast<const mixedEnergyCalculatedTemperatureFvPatchScalarField>(ptf);
115 
116  mapper(heRefValue_, mptf.heRefValue_);
117  mapper(heRefGrad_, mptf.heRefGrad_);
118  mapper(heValueFraction_, mptf.heValueFraction_);
119 }
120 
121 
123 (
124  const fvPatchScalarField& ptf
125 )
126 {
127  calculatedFvPatchScalarField::reset(ptf);
128 
130  refCast<const mixedEnergyCalculatedTemperatureFvPatchScalarField>(ptf);
131 
132  heRefValue_.reset(mptf.heRefValue_);
133  heRefGrad_.reset(mptf.heRefGrad_);
134  heValueFraction_.reset(mptf.heValueFraction_);
135 }
136 
137 
138 // ************************************************************************* //
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
Foam::fvPatchFieldMapper.
Abstract base class with a fat-interface to all derived classes covering all possible ways in which t...
Definition: fvPatchField.H:87
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:64
Base class for temperature boundary conditions in which the parameters of the mixed energy condition ...
mixedEnergyCalculatedTemperatureFvPatchScalarField(const fvPatch &, const DimensionedField< scalar, volMesh > &)
Construct from patch and internal field.
virtual void reset(const fvPatchScalarField &)
Reset the fvPatchField to the given fvPatchField.
virtual void map(const fvPatchScalarField &, const fvPatchFieldMapper &)
Map the given fvPatchField onto this fvPatchField.
Namespace for OpenFOAM.
defineTypeNameAndDebug(combustionModel, 0)
void evaluate(GeometricField< Type, PatchField, GeoMesh > &result, const Function1< Type > &func, const GeometricField< Type, PatchField, GeoMesh > &x)
dictionary dict
volScalarField & p