Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / lagrangian / dieselSpray / spraySubModels / evaporationModel / noEvaporation / noEvaporation.C
blobbaf8d3e50b36145a24048a8713c982253e566fb8
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 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
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 "error.H"
28 #include "noEvaporation.H"
29 #include "addToRunTimeSelectionTable.H"
31 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33 namespace Foam
35     defineTypeNameAndDebug(noEvaporation, 0);
37     addToRunTimeSelectionTable
38     (
39         evaporationModel,
40         noEvaporation,
41         dictionary
42     );
46 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
48 Foam::noEvaporation::noEvaporation( const dictionary& dict)
50     evaporationModel(dict)
54 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
56 Foam::noEvaporation::~noEvaporation()
60 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
62 bool Foam::noEvaporation::evaporation() const
64     return false;
68 Foam::scalar Foam::noEvaporation::Sh
70     const scalar,
71     const scalar
72 ) const
74     return 0.0;
78 Foam::scalar Foam::noEvaporation::relaxationTime
80     const scalar,
81     const scalar,
82     const scalar,
83     const scalar,
84     const scalar,
85     const scalar,
86     const scalar,
87     const scalar,
88     const scalar,
89     const scalar,
90     const scalar
91 ) const
93     return GREAT;
97 Foam::scalar Foam::noEvaporation::boilingTime
99     const scalar,
100     const scalar,
101     const scalar,
102     const scalar,
103     const scalar,
104     const scalar,
105     const scalar,
106     const scalar,
107     const scalar,
108     const scalar,
109     const scalar,
110     const scalar,
111     const scalar,
112     const scalar,
113     const scalar,
114     const scalar
115 ) const
117     return GREAT;
121 // ************************************************************************* //