solidReactionThermo.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-2012 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 "solidReactionThermo.H"
27 #include "fvMesh.H"
28 
29 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
30 
31 namespace Foam
32 {
33  defineTypeNameAndDebug(solidReactionThermo, 0);
34  defineRunTimeSelectionTable(solidReactionThermo, fvMesh);
35  defineRunTimeSelectionTable(solidReactionThermo, dictionary);
36 }
37 
38 
39 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
40 
42 (
43  const fvMesh& mesh,
44  const word& phaseName
45 )
46 :
47  solidThermo(mesh, phaseName)
48 {}
49 
50 
52 (
53  const fvMesh& mesh,
54  const dictionary& dict,
55  const word& phaseName
56 )
57 :
58  solidThermo(mesh, dict, phaseName)
59 {}
60 
61 
62 // * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * * //
63 
65 (
66  const fvMesh& mesh,
67  const word& phaseName
68 )
69 {
70  return basicThermo::New<solidReactionThermo>(mesh, phaseName);
71 }
72 
73 
75 (
76  const fvMesh& mesh,
77  const dictionary& dict,
78  const word& phaseName
79 )
80 {
81  return basicThermo::New<solidReactionThermo>(mesh, dict, phaseName);
82 }
83 
84 
85 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
86 
88 {}
89 
90 
91 // ************************************************************************* //
dictionary dict
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
virtual ~solidReactionThermo()
Destructor.
dynamicFvMesh & mesh
A class for handling words, derived from string.
Definition: word.H:59
defineRunTimeSelectionTable(reactionRateFlameArea, dictionary)
defineTypeNameAndDebug(combustionModel, 0)
Fundamental solid thermodynamic properties.
Definition: solidThermo.H:54
static autoPtr< solidReactionThermo > New(const fvMesh &, const word &phaseName=word::null)
Standard selection based on fvMesh.
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
solidReactionThermo(const fvMesh &, const word &phaseName)
Construct from mesh and phase name.
Namespace for OpenFOAM.