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-2020 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"
29 
30 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 
32 namespace Foam
33 {
34 namespace combustionModels
35 {
36  defineTypeNameAndDebug(noCombustion, 0);
37  addToRunTimeSelectionTable(combustionModel, noCombustion, dictionary);
38 }
39 }
40 
41 
42 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
43 
45 (
46  const word& modelType,
47  const fluidReactionThermo& thermo,
49  const word& combustionProperties
50 )
51 :
52  combustionModel(modelType, thermo, turb)
53 {}
54 
55 
56 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
57 
59 {}
60 
61 
62 // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
63 
65 {}
66 
67 
69 (
71 ) const
72 {
74 }
75 
76 
79 {
80  return volScalarField::New
81  (
82  this->thermo().phasePropertyName(typeName + ":Qdot"),
83  this->mesh(),
85  );
86 }
87 
88 
90 {
92  {
93  return true;
94  }
95  else
96  {
97  return false;
98  }
99 }
100 
101 
102 // ************************************************************************* //
virtual ~noCombustion()
Destructor.
Definition: noCombustion.C:58
fvMatrix< scalar > fvScalarMatrix
Definition: fvMatricesFwd.H:42
fluidReactionThermo & thermo
Definition: createFields.H:28
virtual bool read()
Update properties from given dictionary.
Definition: noCombustion.C:89
static tmp< GeometricField< scalar, fvPatchField, volMesh > > New(const word &name, const Internal &, const PtrList< fvPatchField< scalar >> &)
Return a temporary field constructed from name,.
Base-class for multi-component fluid thermodynamic properties.
fvMesh & mesh
Macros for easy insertion into run-time selection tables.
virtual void correct()
Correct combustion rate.
Definition: noCombustion.C:64
const dimensionSet dimTime
A class for handling words, derived from string.
Definition: word.H:59
noCombustion(const word &modelType, const fluidReactionThermo &thermo, const compressibleMomentumTransportModel &turb, const word &combustionProperties)
Construct from components.
Definition: noCombustion.C:45
virtual bool read()
Update properties from given dictionary.
Base class for combustion models.
const dimensionSet dimEnergy
const dimensionSet dimMass
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
const dimensionSet dimVolume
A class for managing temporary objects.
Definition: PtrList.H:53
defineTypeNameAndDebug(diffusion, 0)
Base class for single-phase compressible turbulence models.
Calculate the matrix for implicit and explicit sources.
addToRunTimeSelectionTable(combustionModel, diffusion, dictionary)
Namespace for OpenFOAM.
virtual tmp< fvScalarMatrix > R(volScalarField &Y) const
Fuel consumption rate matrix.
Definition: noCombustion.C:69
virtual tmp< volScalarField > Qdot() const
Heat release rate [kg/m/s^3].
Definition: noCombustion.C:78