ChemistryCombustion.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) 2012-2020 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 
26 #include "ChemistryCombustion.H"
27 
28 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
29 
30 template<class ReactionThermo>
32 (
33  const word& modelType,
34  const ReactionThermo& thermo,
36  const word& combustionProperties
37 )
38 :
40  (
41  modelType,
42  thermo,
43  turb,
44  combustionProperties
45  ),
46  chemistryPtr_(BasicChemistryModel<ReactionThermo>::New(thermo))
47 {}
48 
49 
50 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
51 
52 template<class ReactionThermo>
55 {}
56 
57 
58 // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
59 
60 template<class ReactionThermo>
61 const ReactionThermo&
63 {
64  return chemistryPtr_->thermo();
65 }
66 
67 
68 // ************************************************************************* //
Basic chemistry model templated on thermodynamics.
virtual const ReactionThermo & thermo() const
Return const access to the thermo package.
rhoReactionThermo & thermo
Definition: createFields.H:28
ChemistryCombustion(const word &modelType, const ReactionThermo &thermo, const compressibleMomentumTransportModel &turb, const word &combustionProperties)
Construct from components and thermo.
A class for handling words, derived from string.
Definition: word.H:59
virtual ~ChemistryCombustion()
Destructor.
Combustion models for templated thermodynamics.
Abstract base class for turbulence models (RAS, LES and laminar).