noCombustion.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2011-2015 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 CombThermoType>
33 (
34  const word& modelType,
35  const fvMesh& mesh,
36  const word& phaseName
37 )
38 :
39  CombThermoType(modelType, mesh, phaseName)
40 {}
41 
42 
43 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
44 
45 template<class CombThermoType>
47 {}
48 
49 
50 // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //
51 
52 template<class CombThermoType>
54 {
55 // Do Nothing
56 }
57 
58 
59 template<class CombThermoType>
62 (
64 ) const
65 {
67  (
69  );
70 
71  return tSu;
72 }
73 
74 
75 template<class CombThermoType>
78 {
80  (
81  new volScalarField
82  (
83  IOobject
84  (
85  IOobject::groupName("dQ", this->phaseName_),
86  this->mesh().time().timeName(),
87  this->mesh(),
88  IOobject::NO_READ,
89  IOobject::NO_WRITE,
90  false
91  ),
92  this->mesh(),
94  zeroGradientFvPatchScalarField::typeName
95  )
96  );
97 
98  return tdQ;
99 }
100 
101 
102 template<class CombThermoType>
105 {
107  (
108  new volScalarField
109  (
110  IOobject
111  (
112  IOobject::groupName("Sh", this->phaseName_),
113  this->mesh().time().timeName(),
114  this->mesh(),
115  IOobject::NO_READ,
116  IOobject::NO_WRITE,
117  false
118  ),
119  this->mesh(),
121  zeroGradientFvPatchScalarField::typeName
122  )
123  );
124 
125  return tSh;
126 }
127 
128 
129 template<class CombThermoType>
131 {
132  if (CombThermoType::read())
133  {
134  return true;
135  }
136  else
137  {
138  return false;
139  }
140 }
141 
142 
143 // ************************************************************************* //
Foam::combustionModels::noCombustion::correct
virtual void correct()
Correct combustion rate.
Definition: noCombustion.C:53
Foam::IOobject
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
Definition: IOobject.H:91
Foam::word
A class for handling words, derived from string.
Definition: word.H:59
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:118
Foam::dimEnergy
const dimensionSet dimEnergy
Foam::read
bool read(const char *, int32_t &)
Definition: int32IO.C:87
Foam::combustionModels::noCombustion::R
virtual tmp< fvScalarMatrix > R(volScalarField &Y) const
Fuel consumption rate matrix.
Definition: noCombustion.C:62
Foam::combustionModels::noCombustion::dQ
virtual tmp< volScalarField > dQ() const
Heat release rate calculated from fuel consumption rate matrix.
Definition: noCombustion.C:77
Foam::dimTime
const dimensionSet dimTime(0, 0, 1, 0, 0, 0, 0)
Definition: dimensionSets.H:51
Foam::fvScalarMatrix
fvMatrix< scalar > fvScalarMatrix
Definition: fvMatricesFwd.H:42
Foam::combustionModels::noCombustion::noCombustion
noCombustion(const noCombustion &)
Disallow copy construct.
Foam::dimensionedScalar
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
Definition: dimensionedScalarFwd.H:41
mesh
dynamicFvMesh & mesh
Definition: createDynamicFvMesh.H:18
Foam::combustionModels::noCombustion::Sh
virtual tmp< volScalarField > Sh() const
Return source for enthalpy equation [kg/m/s3].
Definition: noCombustion.C:104
Foam::fvMesh
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
Foam::dimMass
const dimensionSet dimMass(1, 0, 0, 0, 0, 0, 0)
Definition: dimensionSets.H:49
fvmSup.H
Calculate the matrix for implicit and explicit sources.
Foam::combustionModels::noCombustion::~noCombustion
virtual ~noCombustion()
Destructor.
Definition: noCombustion.C:46
timeName
word timeName
Definition: getTimeIndex.H:3
Foam::combustionModels::noCombustion::read
virtual bool read()
Update properties from given dictionary.
Definition: noCombustion.C:130
Foam::dimVolume
const dimensionSet dimVolume(pow3(dimLength))
Definition: dimensionSets.H:58
Foam::GeometricField
Generic GeometricField class.
Definition: surfaceFieldsFwd.H:52
noCombustion.H
Y
PtrList< volScalarField > & Y
Definition: createFields.H:36