ChemicallyActivatedReactionRate.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-2021 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 Class
25  Foam::ChemicallyActivatedReactionRate
26 
27 Description
28  General class for handling chemically-activated bimolecular reactions.
29 
30 SourceFiles
31  ChemicallyActivatedReactionRateI.H
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef ChemicallyActivatedReactionRate_H
36 #define ChemicallyActivatedReactionRate_H
37 
38 #include "thirdBodyEfficiencies.H"
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 
45 // Forward declaration of friend functions and operators
46 
47 template<class ReactionRate, class ChemicallyActivationFunction>
48 class ChemicallyActivatedReactionRate;
49 
50 template<class ReactionRate, class ChemicallyActivationFunction>
51 inline Ostream& operator<<
52 (
53  Ostream&,
55  <ReactionRate, ChemicallyActivationFunction>&
56 );
57 
58 
59 /*---------------------------------------------------------------------------*\
60  Class ChemicallyActivatedReactionRate Declaration
61 \*---------------------------------------------------------------------------*/
62 
63 template<class ReactionRate, class ChemicallyActivationFunction>
65 {
66  // Private Data
67 
68  ReactionRate k0_;
69  ReactionRate kInf_;
70  ChemicallyActivationFunction F_;
71  thirdBodyEfficiencies thirdBodyEfficiencies_;
72 
73 
74 public:
75 
76  // Constructors
77 
78  //- Construct from components
80  (
81  const ReactionRate& k0,
82  const ReactionRate& kInf,
83  const ChemicallyActivationFunction& F,
84  const thirdBodyEfficiencies& tbes
85  );
86 
87  //- Construct from dictionary
89  (
90  const speciesTable& species,
91  const dictionary& dict
92  );
93 
94 
95  // Member Functions
96 
97  //- Return the type name
98  static word type()
99  {
100  return ReactionRate::type()
102  + "ChemicallyActivated";
103  }
104 
105  //- Pre-evaluation hook
106  inline void preEvaluate() const;
107 
108  //- Post-evaluation hook
109  inline void postEvaluate() const;
110 
111  //- Return the rate
112  inline scalar operator()
113  (
114  const scalar p,
115  const scalar T,
116  const scalarField& c,
117  const label li
118  ) const;
119 
120  //- The derivative of the rate w.r.t. temperature
121  inline scalar ddT
122  (
123  const scalar p,
124  const scalar T,
125  const scalarField& c,
126  const label li
127  ) const;
128 
129  //- Is the rate a function of concentration?
130  inline bool hasDdc() const;
131 
132  //- The derivative of the rate w.r.t. concentration
133  inline void ddc
134  (
135  const scalar p,
136  const scalar T,
137  const scalarField& c,
138  const label li,
140  ) const;
141 
142  //- Write to stream
143  inline void write(Ostream& os) const;
144 
145 
146  // Ostream Operator
147 
148  friend Ostream& operator<< <ReactionRate, ChemicallyActivationFunction>
149  (
150  Ostream&,
152  <ReactionRate, ChemicallyActivationFunction>&
153  );
154 };
155 
156 
157 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
158 
159 } // End namespace Foam
160 
161 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
162 
164 
165 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
166 
167 #endif
168 
169 // ************************************************************************* //
General class for handling chemically-activated bimolecular reactions.
friend Ostream & operator(Ostream &, const ChemicallyActivatedReactionRate< ReactionRate, ChemicallyActivationFunction > &)
void write(Ostream &os) const
Write to stream.
void ddc(const scalar p, const scalar T, const scalarField &c, const label li, scalarField &ddc) const
The derivative of the rate w.r.t. concentration.
scalar ddT(const scalar p, const scalar T, const scalarField &c, const label li) const
The derivative of the rate w.r.t. temperature.
ChemicallyActivatedReactionRate(const ReactionRate &k0, const ReactionRate &kInf, const ChemicallyActivationFunction &F, const thirdBodyEfficiencies &tbes)
Construct from components.
bool hasDdc() const
Is the rate a function of concentration?
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:57
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
A wordList with hashed indices for faster lookup by name.
Third body efficiencies.
A class for handling words, derived from string.
Definition: word.H:62
const dimensionedScalar F
Faraday constant: default SI units: [C/mol].
const dimensionedScalar c
Speed of light in a vacuum.
Namespace for OpenFOAM.
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
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
fileType type(const fileName &, const bool checkVariants=true, const bool followLink=true)
Return the file type: directory or file.
Definition: POSIX.C:488
dictionary dict
volScalarField & p