infiniteReactionRateI.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-2019 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 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
27 
29 {}
30 
31 
33 (
34  const speciesTable&,
35  const dictionary&
36 )
37 {}
38 
39 
41 {}
42 
43 
44 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
45 
46 inline Foam::scalar Foam::infiniteReactionRate::operator()
47 (
48  const scalar p,
49  const scalar,
50  const scalarField&,
51  const label
52 ) const
53 {
54  return (1);
55 }
56 
57 inline Foam::scalar Foam::infiniteReactionRate::ddT
58 (
59  const scalar p,
60  const scalar,
61  const scalarField&,
62  const label
63 ) const
64 {
65  return (0);
66 }
67 
68 
71 {
72  return NullObjectRef<List<Tuple2<label, scalar>>>();
73 }
74 
75 
77 (
78  const scalar p,
79  const scalar T,
80  const scalarField& c,
81  const label li,
82  scalarField& dcidc
83 ) const
84 {}
85 
86 
87 inline Foam::scalar Foam::infiniteReactionRate::dcidT
88 (
89  const scalar p,
90  const scalar T,
91  const scalarField& c,
92  const label li
93 ) const
94 {
95  return 0;
96 }
97 
98 
99 inline Foam::Ostream& Foam::operator<<
100 (
101  Ostream& os,
102  const infiniteReactionRate& rr
103 )
104 {
105  rr.write(os);
106  return os;
107 }
108 
109 
110 // ************************************************************************* //
void dcidc(const scalar p, const scalar T, const scalarField &c, const label li, scalarField &dcidc) const
Species concentration derivative of the pressure dependent term.
virtual Ostream & write(const char)=0
Write character.
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
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
A 1D array of objects of type <T>, where the size of the vector is known and used for subscript bound...
Definition: HashTable.H:59
scalar dcidT(const scalar p, const scalar T, const scalarField &c, const label li) const
Temperature derivative of the pressure dependent term.
void write(Ostream &os) const
Write to stream.
scalar ddT(const scalar p, const scalar T, const scalarField &c, const label li) const
An Ostream is an abstract base class for all output systems (streams, files, token lists...
Definition: Ostream.H:54
const List< Tuple2< label, scalar > > & beta() const
Third-body efficiencies (beta = 1-alpha)
infiniteReactionRate()
Null constructor.
A wordList with hashed indices for faster lookup by name.
infinite reaction rate.
volScalarField & p