1 /*---------------------------------------------------------------------------*\
3 \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 \\ / A nd | Copyright (C) 2011 OpenFOAM Foundation
7 -------------------------------------------------------------------------------
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
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 * * * * * * * * * * * * * //
32 namespace combustionModels
34 defineTypeNameAndDebug(noCombustion, 0);
35 addToRunTimeSelectionTable
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 // ************************************************************************* //