/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . Class Foam::combustionModels::noCombustion Description Dummy combustion model for 'no combustion' SourceFiles noCombustion.C \*---------------------------------------------------------------------------*/ #ifndef noCombustion_H #define noCombustion_H // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { namespace combustionModels { /*---------------------------------------------------------------------------*\ Class noCombustion Declaration \*---------------------------------------------------------------------------*/ template class noCombustion : public CombThermoType { //- Disallow copy construct noCombustion(const noCombustion&); //- Disallow default bitwise assignment void operator=(const noCombustion&); public: //- Runtime type information TypeName("noCombustion"); // Constructors //- Construct from components noCombustion ( const word& modelType, const fvMesh& mesh, const word& phaseName ); //- Destructor virtual ~noCombustion(); // Member Functions // Evolution //- Correct combustion rate virtual void correct(); //- Fuel consumption rate matrix virtual tmp R(volScalarField& Y) const; //- Heat release rate calculated from fuel consumption rate matrix virtual tmp dQ() const; //- Return source for enthalpy equation [kg/m/s3] virtual tmp Sh() const; // IO //- Update properties from given dictionary virtual bool read(); }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace combustionModels } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository #include "noCombustion.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //