pyrolysisChemistryModelI.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2013-2016 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 "volFields.H"
27 
28 
29 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
30 
31 template<class CompType, class SolidThermo, class GasThermo>
34 {
35  return RRg_;
36 }
37 
38 
39 template<class CompType, class SolidThermo, class GasThermo>
40 inline const Foam::PtrList<GasThermo>&
42 gasThermo() const
43 {
44  return gasThermo_;
45 }
46 
47 
48 template<class CompType, class SolidThermo, class GasThermo>
49 inline const Foam::speciesTable&
51 gasTable() const
52 {
53  return pyrolisisGases_;
54 }
55 
56 
57 template<class CompType, class SolidThermo, class GasThermo>
58 inline Foam::label
60 nSpecie() const
61 {
62  return nSpecie_;
63 }
64 
65 
66 template<class CompType, class SolidThermo, class GasThermo>
69 (
70  const label i
71 ) const
72 {
73  return RRg_[i];
74 }
75 
76 
77 template<class CompType, class SolidThermo, class GasThermo>
80 RRg() const
81 {
83  (
85  (
86  IOobject
87  (
88  "RRg",
89  this->time().timeName(),
90  this->mesh(),
91  IOobject::NO_READ,
92  IOobject::NO_WRITE
93  ),
94  this->mesh(),
96  )
97  );
98 
99  if (this->chemistry_)
100  {
102  for (label i=0; i < nGases_; i++)
103  {
104  RRg += RRg_[i];
105  }
106  }
107 
108  return tRRg;
109 }
110 
111 
112 // ************************************************************************* //
label nSpecie() const
The number of solids.
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
PtrList< DimensionedField< scalar, volMesh > > & RRg()
Write access to source terms for gases.
const dimensionSet dimVolume(pow3(dimLength))
Definition: dimensionSets.H:58
dynamicFvMesh & mesh
word timeName
Definition: getTimeIndex.H:3
const speciesTable & gasTable() const
Gases table.
A wordList with hashed indices for faster lookup by name.
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used...
Definition: List.H:62
const PtrList< GasThermo > & gasThermo() const
Thermodynamic data of gases.
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
const dimensionSet dimTime(0, 0, 1, 0, 0, 0, 0)
Definition: dimensionSets.H:51
const dimensionSet dimMass(1, 0, 0, 0, 0, 0, 0)
Definition: dimensionSets.H:49
A class for managing temporary objects.
Definition: PtrList.H:54
T & ref() const
Return non-const reference or generate a fatal error.
Definition: tmpI.H:174
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
Definition: IOobject.H:91