noCombustion.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-2023 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::combustionModels::noCombustion
26 
27 Description
28  Dummy combustion model for 'no combustion'
29 
30 SourceFiles
31  noCombustion.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef noCombustion_H
36 #define noCombustion_H
37 
38 #include "combustionModel.H"
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 namespace combustionModels
45 {
46 
47 /*---------------------------------------------------------------------------*\
48  Class noCombustion Declaration
49 \*---------------------------------------------------------------------------*/
50 
51 class noCombustion
52 :
53  public combustionModel
54 {
55 public:
56 
57  //- Runtime type information
58  TypeName("none");
59 
60 
61  // Constructors
62 
63  //- Construct from components
65  (
66  const word& modelType,
69  const word& combustionProperties
70  );
71 
72  //- Disallow default bitwise copy construction
73  noCombustion(const noCombustion&) = delete;
74 
75 
76  //- Destructor
77  virtual ~noCombustion();
78 
79 
80  // Member Functions
81 
82  //- Correct combustion rate
83  virtual void correct();
84 
85  //- Specie consumption rate field
86  virtual tmp<volScalarField::Internal> R(const label speciei) const;
87 
88  //- Specie consumption rate matrix
89  virtual tmp<fvScalarMatrix> R(volScalarField& Y) const;
90 
91  //- Heat release rate [kg/m/s^3]
92  virtual tmp<volScalarField> Qdot() const;
93 
94  //- Update properties from given dictionary
95  virtual bool read();
96 
97 
98  // Member Operators
99 
100  //- Disallow default bitwise assignment
101  void operator=(const noCombustion&) = delete;
102 };
103 
104 
105 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
106 
107 } // End namespace combustionModels
108 } // End namespace Foam
109 
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
111 
112 #endif
113 
114 // ************************************************************************* //
Generic GeometricField class.
Base class for combustion models.
const fluidMulticomponentThermo & thermo() const
Return const access to the thermo.
Dummy combustion model for 'no combustion'.
Definition: noCombustion.H:53
noCombustion(const word &modelType, const fluidMulticomponentThermo &thermo, const compressibleMomentumTransportModel &turb, const word &combustionProperties)
Construct from components.
Definition: noCombustion.C:45
virtual void correct()
Correct combustion rate.
Definition: noCombustion.C:64
TypeName("none")
Runtime type information.
virtual ~noCombustion()
Destructor.
Definition: noCombustion.C:58
virtual tmp< volScalarField::Internal > R(const label speciei) const
Specie consumption rate field.
Definition: noCombustion.C:69
virtual tmp< volScalarField > Qdot() const
Heat release rate [kg/m/s^3].
Definition: noCombustion.C:89
virtual bool read()
Update properties from given dictionary.
Definition: noCombustion.C:100
void operator=(const noCombustion &)=delete
Disallow default bitwise assignment.
Base class for single-phase compressible turbulence models.
Base-class for multi-component fluid thermodynamic properties.
A class for managing temporary objects.
Definition: tmp.H:55
A class for handling words, derived from string.
Definition: word.H:62
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
PtrList< volScalarField > & Y