noChemistrySolver.H
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 Class
25  Foam::noChemistrySolver
26 
27 Description
28  Dummy chemistry solver for 'none' option
29 
30 SourceFiles
31  noChemistrySolver.H
32  noChemistrySolver.C
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef noChemistySolver_H
37 #define noChemistySolver_H
38 
39 #include "chemistrySolver.H"
40 
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 
43 namespace Foam
44 {
45 
46 /*---------------------------------------------------------------------------*\
47  Class noChemistrySolver Declaration
48 \*---------------------------------------------------------------------------*/
49 
50 template<class ChemistryModel>
52 :
53  public chemistrySolver<ChemistryModel>
54 {
55 
56 public:
57 
58  //- Runtime type information
59  TypeName("none");
60 
61 
62  // Constructors
63 
64  //- Construct from mesh and phase name
65  noChemistrySolver(const fvMesh& mesh, const word& phaseName);
66 
67 
68  //- Destructor
69  virtual ~noChemistrySolver();
70 
71 
72  // Member Functions
73 
74  //- Update the concentrations and return the chemical time
75  virtual void solve
76  (
77  scalarField& c,
78  scalar& T,
79  scalar& p,
80  scalar& deltaT,
81  scalar& subDeltaT
82  ) const;
83 };
84 
85 
86 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
87 
88 } // End namespace Foam
89 
90 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
91 
92 #ifdef NoRepository
93 # include "noChemistrySolver.C"
94 #endif
95 
96 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
97 
98 #endif
99 
100 // ************************************************************************* //
Foam::noChemistrySolver
Dummy chemistry solver for 'none' option.
Definition: noChemistrySolver.H:50
p
p
Definition: pEqn.H:62
Foam::word
A class for handling words, derived from string.
Definition: word.H:59
Foam::chemistrySolver
An abstract base class for solving chemistry.
Definition: chemistrySolver.H:51
noChemistrySolver.C
Foam::noChemistrySolver::~noChemistrySolver
virtual ~noChemistrySolver()
Destructor.
Definition: noChemistrySolver.C:45
Foam::Field
Pre-declare SubField and related Field type.
Definition: Field.H:57
Foam::noChemistrySolver::TypeName
TypeName("none")
Runtime type information.
Foam::T
void T(FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
Definition: FieldFieldFunctions.C:55
chemistrySolver.H
mesh
dynamicFvMesh & mesh
Definition: createDynamicFvMesh.H:18
Foam::fvMesh
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::noChemistrySolver::noChemistrySolver
noChemistrySolver(const fvMesh &mesh, const word &phaseName)
Construct from mesh and phase name.
Definition: noChemistrySolver.C:33
Foam::constant::universal::c
const dimensionedScalar c
Speed of light in a vacuum.
Foam::noChemistrySolver::solve
virtual void solve(scalarField &c, scalar &T, scalar &p, scalar &deltaT, scalar &subDeltaT) const
Update the concentrations and return the chemical time.
Definition: noChemistrySolver.C:53