initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / solvers / multiphase / twoPhaseEulerFoam / interfacialModels / dragModels / GidaspowSchillerNaumann / GidaspowSchillerNaumann.H
blob152f6def4d4af1692be086a81712a9e1c2d2347f
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 Class
26     Foam::GidaspowSchillerNaumann
28 Description
29     H, Enwald, E. Peirano, A-E Almstedt
30     'Eulerian Two-Phase Flow Theory Applied to Fluidization'
31     Int. J. Multiphase Flow, Vol. 22, Suppl, pp. 21-66 (1996)
32     Eq. 86-87, p. 40
34     This is identical to the Wen and Yu, Rowe model Table 3.6 p.56  in
35     the Ph.D. thesis of Berend van Wachem
36     'Derivation, Implementation and Validation
37                     of
38           Computer Simulation Models
39          for Gas-Solid Fluidized Beds'
41 SourceFiles
42     GidaspowSchillerNaumann.C
44 \*---------------------------------------------------------------------------*/
46 #ifndef GidaspowSchillerNaumann_H
47 #define GidaspowSchillerNaumann_H
49 #include "dragModel.H"
51 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
53 namespace Foam
56 /*---------------------------------------------------------------------------*\
57                            Class GidaspowSchillerNaumann Declaration
58 \*---------------------------------------------------------------------------*/
60 class GidaspowSchillerNaumann
62     public dragModel
65 public:
67     //- Runtime type information
68     TypeName("GidaspowSchillerNaumann");
71     // Constructors
73         //- Construct from components
74         GidaspowSchillerNaumann
75         (
76             const dictionary& interfaceDict,
77             const volScalarField& alpha,
78             const phaseModel& phasea,
79             const phaseModel& phaseb
80         );
83     //- Destructor
84     virtual ~GidaspowSchillerNaumann();
87     // Member Functions
89         tmp<volScalarField> K(const volScalarField& Ur) const;
93 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
95 } // End namespace Foam
97 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
99 #endif
101 // ************************************************************************* //