ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / src / combustionModels / noCombustion / noCombustion.C
blob9d0e2c692e0ac5f6a408832caa236c085b8cec2e
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
10     OpenFOAM is free software: you can redistribute it and/or modify it
11     under the terms of the GNU General Public License as published by
12     the Free Software Foundation, either version 3 of the License, or
13     (at your option) any later version.
15     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
16     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
17     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
18     for more details.
20     You should have received a copy of the GNU General Public License
21     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
23 \*---------------------------------------------------------------------------*/
25 #include "noCombustion.H"
26 #include "addToRunTimeSelectionTable.H"
28 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
30 namespace Foam
32 namespace combustionModels
34     defineTypeNameAndDebug(noCombustion, 0);
35     addToRunTimeSelectionTable
36     (
37         combustionModel,
38         noCombustion,
39         dictionary
40     );
45 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
47 Foam::combustionModels::noCombustion::noCombustion
49     const dictionary& combustionProps,
50     hsCombustionThermo& thermo,
51     const compressible::turbulenceModel& turbulence,
52     const surfaceScalarField& phi,
53     const volScalarField& rho
56     combustionModel(combustionProps, thermo, turbulence, phi, rho)
60 // * * * * * * * * * * * * * * * * Destructors * * * * * * * * * * * * * * * //
62 Foam::combustionModels::noCombustion::~noCombustion()
66 // ************************************************************************* //