StandardChemistryModelI.H
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-2018 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"
28 
29 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
30 
31 template<class ReactionThermo, class ThermoType>
32 inline Foam::label
34 {
35  // nEqns = number of species + temperature + pressure
36  return nSpecie_ + 2;
37 }
38 
39 
40 template<class ReactionThermo, class ThermoType>
43 {
44  return RR_;
45 }
46 
47 
48 template<class ReactionThermo, class ThermoType>
51 {
52  return reactions_;
53 }
54 
55 
56 template<class ReactionThermo, class ThermoType>
57 inline const Foam::PtrList<ThermoType>&
59 {
60  return specieThermo_;
61 }
62 
63 
64 template<class ReactionThermo, class ThermoType>
65 inline Foam::label
67 {
68  return nSpecie_;
69 }
70 
71 
72 template<class ReactionThermo, class ThermoType>
73 inline Foam::label
75 {
76  return nReaction_;
77 }
78 
79 
80 template<class ReactionThermo, class ThermoType>
81 inline Foam::scalar
83 {
84  return Treact_;
85 }
86 
87 
88 template<class ReactionThermo, class ThermoType>
89 inline Foam::scalar&
91 {
92  return Treact_;
93 }
94 
95 
96 template<class ReactionThermo, class ThermoType>
99 (
100  const label i
101 ) const
102 {
103  return RR_[i];
104 }
105 
106 template<class ReactionThermo, class ThermoType>
109 (
110  const label i
111 )
112 {
113  return RR_[i];
114 }
115 
116 
117 // ************************************************************************* //
virtual label nSpecie() const
The number of species.
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
const PtrList< ThermoType > & specieThermo() const
Thermodynamic data of the species.
const PtrList< Reaction< ThermoType > > & reactions() const
The reactions.
scalar Treact() const
Temperature below which the reaction rates are assumed 0.
PtrList< volScalarField::Internal > & RR()
Write access to chemical source terms.
virtual label nEqns() const
Number of ODE&#39;s to solve.
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used...
Definition: List.H:70
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
virtual label nReaction() const
The number of reactions.