noSoot.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) 2013-2016 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 "noSoot.H"
28 
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
30 
31 namespace Foam
32 {
33  namespace radiation
34  {
35  defineTypeNameAndDebug(noSoot, 0);
36 
38  (
39  sootModel,
40  noSoot,
41  dictionary
42  );
43  }
44 }
45 
46 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
47 
49 (
50  const dictionary& dict,
51  const fvMesh& mesh,
52  const word& modelType
53 )
54 :
55  sootModel(dict, mesh, modelType)
56 {}
57 
58 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
60 {}
61 
62 
64 {}
65 
67 {
69  return tmp<volScalarField>(nullptr);
70 }
71 
72 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
defineTypeNameAndDebug(cloudAbsorptionEmission, 0)
const volScalarField & soot() const
Return Ysoot.
Definition: noSoot.C:66
Macros for easy insertion into run-time selection tables.
virtual ~noSoot()
Destructor.
Definition: noSoot.C:59
Base class for soor models.
Definition: sootModel.H:53
void correct()
Main update/correction routine.
Definition: noSoot.C:63
A class for handling words, derived from string.
Definition: word.H:59
noSoot(const dictionary &dict, const fvMesh &mesh, const word &)
Construct from components.
Definition: noSoot.C:49
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
addToRunTimeSelectionTable(absorptionEmissionModel, cloudAbsorptionEmission, dictionary)
A class for managing temporary objects.
Definition: PtrList.H:53
#define NotImplemented
Issue a FatalErrorIn for a function not currently implemented.
Definition: error.H:366
autoPtr< radiation::radiationModel > radiation(radiation::radiationModel::New(T))
Namespace for OpenFOAM.