initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / thermophysicalModels / chemistryModel / chemistryModel / psiChemistryModel / psiChemistryModel.H
blob4cf7af58ec89920d63395302ee0d84feb72df17c
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2009-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
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.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::psiChemistryModel
28 Description
29     Chemistry model for compressibility-based thermodynamics
31 SourceFiles
32     psiChemistryModelI.H
33     psiChemistryModel.C
34     newChemistryModel.C
36 \*---------------------------------------------------------------------------*/
38 #ifndef psiChemistryModel_H
39 #define psiChemistryModel_H
41 #include "basicChemistryModel.H"
42 #include "autoPtr.H"
43 #include "runTimeSelectionTables.H"
44 #include "hCombustionThermo.H"
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 namespace Foam
51 // Forward declaration of classes
52 class fvMesh;
54 /*---------------------------------------------------------------------------*\
55                      class psiChemistryModel Declaration
56 \*---------------------------------------------------------------------------*/
58 class psiChemistryModel
60     public basicChemistryModel
62     // Private Member Functions
64         //- Construct as copy (not implemented)
65         psiChemistryModel(const psiChemistryModel&);
67         //- Disallow default bitwise assignment
68         void operator=(const psiChemistryModel&);
71 protected:
73     // Protected data
75         //- Thermo package
76         autoPtr<hCombustionThermo> thermo_;
79 public:
81     //- Runtime type information
82     TypeName("psiChemistryModel");
85     //- Declare run-time constructor selection tables
86     declareRunTimeSelectionTable
87     (
88         autoPtr,
89         psiChemistryModel,
90         fvMesh,
91         (
92             const fvMesh& mesh,
93             const word& compTypeName,
94             const word& thermoTypeName
95         ),
96         (mesh, compTypeName, thermoTypeName)
97     );
100     // Constructors
102         //- Construct from mesh
103         psiChemistryModel(const fvMesh& mesh, const word& thermoTypeName);
106     //- Selector
107     static autoPtr<psiChemistryModel> New(const fvMesh& mesh);
110     //- Destructor
111     virtual ~psiChemistryModel();
114     // Member Functions
116         //- Return access to the thermo package
117         inline hCombustionThermo& thermo();
119         //- Return const access to the thermo package
120         inline const hCombustionThermo& thermo() const;
124 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
126 } // End namespace Foam
128 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
130 #include "psiChemistryModelI.H"
132 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
134 #endif
136 // ************************************************************************* //