combustionModel.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) 2011-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 "combustionModel.H"
27 
28 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
29 
30 namespace Foam
31 {
32  defineTypeNameAndDebug(combustionModel, 0);
33  defineRunTimeSelectionTable(combustionModel, dictionary)
34 }
35 
37 (
38  "combustionProperties"
39 );
40 
41 
42 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
43 
44 Foam::IOobject Foam::combustionModel::createIOobject
45 (
46  const fluidReactionThermo& thermo,
47  const word& combustionProperties
48 ) const
49 {
50  IOobject io
51  (
52  thermo.phasePropertyName(combustionProperties),
53  thermo.T().mesh().time().constant(),
54  thermo.T().mesh(),
57  );
58 
59  if (io.typeHeaderOk<IOdictionary>(true))
60  {
62  return io;
63  }
64  else
65  {
66  io.readOpt() = IOobject::NO_READ;
67  return io;
68  }
69 }
70 
71 
72 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
73 
75 (
76  const word& modelType,
77  const fluidReactionThermo& thermo,
79  const word& combustionProperties
80 )
81 :
82  IOdictionary(createIOobject(thermo, combustionProperties)),
83  mesh_(thermo.T().mesh()),
84  thermo_(thermo),
85  turb_(turb),
86  coeffs_(optionalSubDict(modelType + "Coeffs")),
87  modelType_(modelType)
88 {}
89 
90 
91 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
92 
94 {}
95 
96 
97 // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
98 
100 {
101  if (regIOobject::read())
102  {
103  coeffs_ = optionalSubDict(modelType_ + "Coeffs");
104  return true;
105  }
106  else
107  {
108  return false;
109  }
110 }
111 
112 
113 // ************************************************************************* //
combustionModel(const word &modelType, const fluidReactionThermo &thermo, const compressibleMomentumTransportModel &turb, const word &combustionProperties=combustionPropertiesName)
Construct from components.
virtual bool read()
Read object.
Base-class for multi-component fluid thermodynamic properties.
IOdictionary is derived from dictionary and IOobject to give the dictionary automatic IO functionalit...
Definition: IOdictionary.H:53
A class for handling words, derived from string.
Definition: word.H:59
virtual ~combustionModel()
Destructor.
virtual bool read()
Update properties from given dictionary.
defineRunTimeSelectionTable(reactionRateFlameArea, dictionary)
const Mesh & mesh() const
Return mesh.
defineTypeNameAndDebug(combustionModel, 0)
virtual const volScalarField & T() const =0
Temperature [K].
readOption readOpt() const
Definition: IOobject.H:353
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
Definition: IOobject.H:92
Abstract base class for turbulence models (RAS, LES and laminar).
Namespace for OpenFOAM.
static const word combustionPropertiesName
Default combustionProperties dictionary name.