initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / lagrangian / dieselSpray / spraySubModels / dispersionModel / dispersionModel / dispersionModel.H
blob101d746a1707448cbafb4e87aeb7fbfdf056acbd
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::dispersionModel
28 Description
29     Foam::dispersionModel
31 \*---------------------------------------------------------------------------*/
33 #ifndef dispersionModel_H
34 #define dispersionModel_H
36 #include "IOdictionary.H"
37 #include "spray.H"
38 #include "autoPtr.H"
39 #include "runTimeSelectionTables.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 /*---------------------------------------------------------------------------*\
47                            Class dispersionModel Declaration
48 \*---------------------------------------------------------------------------*/
50 class dispersionModel
53 protected:
55     // Protected data
57         const dictionary& dict_;
58         spray& spray_;
61 public:
63     //- Runtime type information
64     TypeName("dispersionModel");
67     // Declare runtime constructor selection table
69         declareRunTimeSelectionTable
70         (
71             autoPtr,
72             dispersionModel,
73             dictionary,
74             (
75                 const dictionary& dict,
76                 spray& sm
77             ),
78             (dict, sm)
79         );
82     // Constructors
84         //- Construct from components
85         dispersionModel
86         (
87             const dictionary& dict,
88             spray& sm
89         );
92     // Destructor
94         virtual ~dispersionModel();
97     // Selector
99         static autoPtr<dispersionModel> New
100         (
101             const dictionary& dict,
102             spray& sm
103         );
106     // Member Functions
108         virtual void disperseParcels() const = 0;
112 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
114 } // End namespace Foam
116 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
118 #endif
120 // ************************************************************************* //