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/>.
24 Foam::combustionModel::noCombustion
27 Dummy combustion model for 'none' option
32 \*---------------------------------------------------------------------------*/
34 #ifndef noCombustion_H
35 #define noCombustion_H
37 #include "combustionModel.H"
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace combustionModels
46 /*---------------------------------------------------------------------------*\
47 Class noCombustion Declaration
48 \*---------------------------------------------------------------------------*/
52 public combustionModel
54 // Private Member Functions
56 //- Disallow copy construct
57 noCombustion(const noCombustion&);
59 //- Disallow default bitwise assignment
60 void operator=(const noCombustion&);
65 //- Runtime type information
71 //- Construct from components
74 const dictionary& combustionProperties,
75 hsCombustionThermo& thermo,
76 const compressible::turbulenceModel& turbulence,
77 const surfaceScalarField& phi,
78 const volScalarField& rho
83 virtual ~noCombustion();
87 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
89 } // End namespace combustionModels
90 } // End namespace Foam
92 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
96 // ************************************************************************* //