basicChemistryModel.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 "basicChemistryModel.H"
27 
28 /* * * * * * * * * * * * * * * private static data * * * * * * * * * * * * * */
29 
30 namespace Foam
31 {
32  defineTypeNameAndDebug(basicChemistryModel, 0);
33  defineRunTimeSelectionTable(basicChemistryModel, thermo);
34 }
35 
36 // * * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * //
37 
39 {}
40 
41 
42 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
43 
45 (
46  const fluidReactionThermo& thermo
47 )
48 :
50  (
51  IOobject
52  (
53  thermo.phasePropertyName("chemistryProperties"),
54  thermo.T().mesh().time().constant(),
55  thermo.T().mesh(),
58  )
59  ),
60  mesh_(thermo.T().mesh()),
61  thermo_(thermo),
62  chemistry_(lookup("chemistry")),
63  deltaTChemIni_(lookup<scalar>("initialChemicalTimeStep")),
64  deltaTChemMax_(lookupOrDefault("maxChemicalTimeStep", great)),
65  deltaTChem_
66  (
67  IOobject
68  (
69  thermo.phasePropertyName("deltaTChem"),
70  mesh().time().constant(),
71  mesh(),
74  ),
75  mesh(),
76  dimensionedScalar(dimTime, deltaTChemIni_)
77  )
78 {}
79 
80 
81 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
82 
84 {}
85 
86 
87 // ************************************************************************* //
static word phasePropertyName(const word &name, const word &phaseName)
Return the name of a property for a given phase.
Definition: basicThermo.H:156
Base-class for multi-component fluid thermodynamic properties.
void correct()
Correct function - updates due to mesh changes.
const Time & time() const
Return the top-level database.
Definition: fvMesh.H:239
basicChemistryModel(const fluidReactionThermo &thermo)
Construct from thermo.
IOdictionary is derived from dictionary and IOobject to give the dictionary automatic IO functionalit...
Definition: IOdictionary.H:53
virtual ~basicChemistryModel()
Destructor.
const dimensionSet dimTime
stressControl lookup("compactNormalStress") >> compactNormalStress
dynamicFvMesh & mesh
const word & constant() const
Return constant name.
Definition: TimePaths.H:123
defineRunTimeSelectionTable(reactionRateFlameArea, dictionary)
const Mesh & mesh() const
Return mesh.
defineTypeNameAndDebug(combustionModel, 0)
virtual const volScalarField & T() const =0
Temperature [K].
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
Definition: IOobject.H:92
Namespace for OpenFOAM.