initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / lagrangian / dieselSpray / spraySubModels / injectorModel / hollowCone / hollowCone.H
blobb18af3f1da626f7a6b217005fa89496aa1a755d8
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::hollowConeInjector
28 Description
29     A hollow cone injector with randomly distributed parcels between
30     the inner and outer cone angle.
32     Set inner angle to zero for solid cone.
34 \*---------------------------------------------------------------------------*/
36 #ifndef hollowConeInjector_H
37 #define hollowConeInjector_H
39 #include "injectorModel.H"
40 #include "scalarList.H"
41 #include "pdf.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
47 /*---------------------------------------------------------------------------*\
48                            Class hollowConeInjector Declaration
49 \*---------------------------------------------------------------------------*/
51 class hollowConeInjector
53     public injectorModel
56 private:
58     // Private data
60         dictionary hollowConeDict_;
62         autoPtr<pdf> dropletPDF_;
63         scalarList innerAngle_;
64         scalarList outerAngle_;
66 public:
68     //- Runtime type information
69         TypeName("hollowConeInjector");
72     // Constructors
74         //- Construct from components
75         hollowConeInjector
76         (
77             const dictionary& dict,
78             spray& sm
79         );
82     // Destructor
84         ~hollowConeInjector();
87     // Member Functions
89         //- Return the injected droplet diameter
90         scalar d0(const label injector, const scalar time) const;
92         //- Return the spray angle of the injector
93         vector direction
94         (
95             const label injector,
96             const label hole,
97             const scalar time,
98             const scalar d
99         ) const;
100     
101         scalar velocity
102         (
103             const label i,
104             const scalar time
105         ) const;
106         
107         scalar averageVelocity
108         (
109             const label i
110         ) const;
114 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
116 } // End namespace Foam
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
120 #endif
122 // ************************************************************************* //