initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / lagrangian / dieselSpray / spraySubModels / evaporationModel / noEvaporation / noEvaporation.C
blobc8c7052eba0a36a46b54abce137c63b79814872b
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 "error.H"
29 #include "noEvaporation.H"
30 #include "addToRunTimeSelectionTable.H"
32 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
34 namespace Foam
37 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
39 defineTypeNameAndDebug(noEvaporation, 0);
41 addToRunTimeSelectionTable
43     evaporationModel,
44     noEvaporation,
45     dictionary
48 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
50 // Construct from dictionary
51 noEvaporation::noEvaporation
53     const dictionary& dict
56     evaporationModel(dict)
59 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
61 noEvaporation::~noEvaporation()
65 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
67 bool noEvaporation::evaporation() const
69     return false;
72 scalar noEvaporation::Sh
74     const scalar,
75     const scalar
76 ) const
78     return 0.0;
81 scalar noEvaporation::relaxationTime
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 scalar,
92     const scalar,
93     const scalar
94 ) const
96     return GREAT;
100 scalar noEvaporation::boilingTime
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 scalar,
116     const scalar,
117     const scalar
118 ) const
120     return GREAT;
123 inline label noEvaporation::nEvapIter() const
125     return 0;
128 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
130 } // End namespace Foam
132 // ************************************************************************* //