Initial release of the new fireFoam solver and ancillary libraries.
[OpenFOAM-1.6.x.git] / applications / solvers / combustion / fireFoam / combustionModels / noCombustion / noCombustion.C
blobdd75660aae354b7d3ddca810ceb4f22355641da1
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-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 \*---------------------------------------------------------------------------*/
27 #include "noCombustion.H"
28 #include "addToRunTimeSelectionTable.H"
30 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32 namespace Foam
34 namespace combustionModels
36     defineTypeNameAndDebug(noCombustion, 0);
37     addToRunTimeSelectionTable
38     (
39         combustionModel,
40         noCombustion,
41         dictionary
42     );
47 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
49 Foam::combustionModels::noCombustion::noCombustion
51     const dictionary& combustionProperties,
52     const hsCombustionThermo& thermo,
53     const compressible::turbulenceModel& turbulence,
54     const surfaceScalarField& phi,
55     const volScalarField& rho
58     combustionModel(combustionProperties, thermo, turbulence, phi, rho)
62 // * * * * * * * * * * * * * * * * Destructors * * * * * * * * * * * * * * * //
64 Foam::combustionModels::noCombustion::~noCombustion()
68 void Foam::combustionModels::noCombustion::correct()
72 Foam::tmp<Foam::volScalarField>
73 Foam::combustionModels::noCombustion::wFuelNorm() const
75     return tmp<Foam::volScalarField>
76     (
77         new volScalarField
78         (
79             IOobject
80             (
81                 "wFuelNorm",
82                 mesh_.time().timeName(),
83                 mesh_,
84                 IOobject::NO_READ,
85                 IOobject::NO_WRITE
86             ),
87             mesh_,
88             dimensionedScalar("wFuelNorm", dimMass/dimTime/pow3(dimLength), 0.0)
89         )
90     );
94 bool Foam::combustionModels::noCombustion::read
96     const dictionary& combustionProperties
99     return combustionModel::read(combustionProperties);
103 // ************************************************************************* //