BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / thermophysicalModels / laminarFlameSpeed / constant / constant.C
blobe74d787e63b86f465e70483d1951d21ea51f6295
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
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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "constant.H"
27 #include "addToRunTimeSelectionTable.H"
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 namespace Foam
33 namespace laminarFlameSpeedModels
35     defineTypeNameAndDebug(constant, 0);
37     addToRunTimeSelectionTable
38     (
39         laminarFlameSpeed,
40         constant,
41         dictionary
42     );
47 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
49 Foam::laminarFlameSpeedModels::constant::constant
51     const dictionary& dict,
52     const hhuCombustionThermo& ct
55     laminarFlameSpeed(dict, ct),
57     Su_(dict.lookup("Su"))
61 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
63 Foam::laminarFlameSpeedModels::constant::~constant()
67 // * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * * //
69 Foam::tmp<Foam::volScalarField>
70 Foam::laminarFlameSpeedModels::constant::operator()() const
72     return tmp<volScalarField>
73     (
74         new volScalarField
75         (
76             IOobject
77             (
78                 "Su0",
79                 hhuCombustionThermo_.T().time().timeName(),
80                 hhuCombustionThermo_.T().db(),
81                 IOobject::NO_READ,
82                 IOobject::NO_WRITE
83             ),
84             hhuCombustionThermo_.T().mesh(),
85             Su_
86         )
87     );
91 // ************************************************************************* //