Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / src / thermophysicalModels / reactionThermo / derivedFvPatchFields / fixedUnburntEnthalpy / fixedUnburntEnthalpyFvPatchScalarField.C
blob68f7da071942ab6a9e91ebb83c7fa269248c048b
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation, either version 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "fixedUnburntEnthalpyFvPatchScalarField.H"
27 #include "addToRunTimeSelectionTable.H"
28 #include "fvPatchFieldMapper.H"
29 #include "volFields.H"
30 #include "hhuCombustionThermo.H"
32 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
34 namespace Foam
37 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
39 fixedUnburntEnthalpyFvPatchScalarField::fixedUnburntEnthalpyFvPatchScalarField
41     const fvPatch& p,
42     const DimensionedField<scalar, volMesh>& iF
45     fixedValueFvPatchScalarField(p, iF)
49 fixedUnburntEnthalpyFvPatchScalarField::fixedUnburntEnthalpyFvPatchScalarField
51     const fixedUnburntEnthalpyFvPatchScalarField& ptf,
52     const fvPatch& p,
53     const DimensionedField<scalar, volMesh>& iF,
54     const fvPatchFieldMapper& mapper
57     fixedValueFvPatchScalarField(ptf, p, iF, mapper)
61 fixedUnburntEnthalpyFvPatchScalarField::fixedUnburntEnthalpyFvPatchScalarField
63     const fvPatch& p,
64     const DimensionedField<scalar, volMesh>& iF,
65     const dictionary& dict
68     fixedValueFvPatchScalarField(p, iF, dict)
72 fixedUnburntEnthalpyFvPatchScalarField::fixedUnburntEnthalpyFvPatchScalarField
74     const fixedUnburntEnthalpyFvPatchScalarField& tppsf
77     fixedValueFvPatchScalarField(tppsf)
81 fixedUnburntEnthalpyFvPatchScalarField::fixedUnburntEnthalpyFvPatchScalarField
83     const fixedUnburntEnthalpyFvPatchScalarField& tppsf,
84     const DimensionedField<scalar, volMesh>& iF
87     fixedValueFvPatchScalarField(tppsf, iF)
91 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
93 void fixedUnburntEnthalpyFvPatchScalarField::updateCoeffs()
95     if (updated())
96     {
97         return;
98     }
100     const hhuCombustionThermo& thermo = db().lookupObject<hhuCombustionThermo>
101     (
102         "thermophysicalProperties"
103     );
105     const label patchi = patch().index();
107     fvPatchScalarField& Tw =
108         const_cast<fvPatchScalarField&>(thermo.Tu().boundaryField()[patchi]);
109     Tw.evaluate();
110     operator==(thermo.hu(Tw, patchi));
112     fixedValueFvPatchScalarField::updateCoeffs();
116 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
118 makePatchTypeField(fvPatchScalarField, fixedUnburntEnthalpyFvPatchScalarField);
120 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
122 } // End namespace Foam
124 // ************************************************************************* //