noCombustion.C
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 "noCombustion.H"
27 #include "fvmSup.H"
28 
29 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
30 
31 template<class ReactionThermo>
33 (
34  const word& modelType,
35  ReactionThermo& thermo,
36  const compressibleTurbulenceModel& turb,
37  const word& combustionProperties
38 )
39 :
41 {}
42 
43 
44 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
45 
46 template<class ReactionThermo>
48 {}
49 
50 
51 // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
52 
53 template<class ReactionThermo>
55 {}
56 
57 
58 template<class ReactionThermo>
61 (
63 ) const
64 {
66  (
68  );
69 
70  return tSu;
71 }
72 
73 
74 template<class ReactionThermo>
77 {
79  (
80  new volScalarField
81  (
82  IOobject
83  (
84  this->thermo().phasePropertyName(typeName + ":Qdot"),
85  this->mesh().time().timeName(),
86  this->mesh(),
87  IOobject::NO_READ,
88  IOobject::NO_WRITE,
89  false
90  ),
91  this->mesh(),
93  )
94  );
95 
96  return tQdot;
97 }
98 
99 
100 template<class ReactionThermo>
102 {
104  {
105  return true;
106  }
107  else
108  {
109  return false;
110  }
111 }
112 
113 
114 // ************************************************************************* //
virtual ~noCombustion()
Destructor.
Definition: noCombustion.C:47
fvMatrix< scalar > fvScalarMatrix
Definition: fvMatricesFwd.H:42
virtual bool read()
Update properties from given dictionary.
Definition: noCombustion.C:101
rhoReactionThermo & thermo
Definition: createFields.H:28
virtual void correct()
Correct combustion rate.
Definition: noCombustion.C:54
const dimensionSet dimVolume(pow3(dimLength))
Definition: dimensionSets.H:58
Dummy combustion model for &#39;no combustion&#39;.
Definition: noCombustion.H:51
dynamicFvMesh & mesh
A class for handling words, derived from string.
Definition: word.H:59
word timeName
Definition: getTimeIndex.H:3
Abstract base class for turbulence models (RAS, LES and laminar).
Thermo model wrapper for combustion models.
const dimensionSet dimEnergy
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
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:53
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
Definition: IOobject.H:92
Calculate the matrix for implicit and explicit sources.
virtual tmp< fvScalarMatrix > R(volScalarField &Y) const
Fuel consumption rate matrix.
Definition: noCombustion.C:61
virtual tmp< volScalarField > Qdot() const
Heat release rate [kg/m/s3].
Definition: noCombustion.C:76