initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / lagrangian / dieselSpray / spraySubModels / injectorModel / Chomiak / Chomiak.H
blob2a62b9e668e861dd85311cb3a17bf463f2638fe9
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::ChomiakInjector
28 Description
29     Injector model based on an idea of Jerzy Chomiak.
31     Given the initial droplet size pdf in an interval d = (d0, d1),
32     the spray angle phi = phi(d), such that
33     the largest droplets have zero spray angle
34     and the smallest droplets have maximum spray angle.
35     i.e. phi(d=d1) = 0, phi(d=d0) = phiMax,
36     where phiMax is a model parameter.
38 \*---------------------------------------------------------------------------*/
40 #ifndef ChomiakInjector_H
41 #define ChomiakInjector_H
43 #include "injectorModel.H"
44 #include "scalarList.H"
45 #include "pdf.H"
47 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
49 namespace Foam
52 /*---------------------------------------------------------------------------*\
53                            Class ChomiakInjector Declaration
54 \*---------------------------------------------------------------------------*/
56 class ChomiakInjector
58     public injectorModel
61 private:
63     // Private data
65         dictionary ChomiakDict_;
67         autoPtr<pdf> dropletPDF_;
68         scalarList maxSprayAngle_;
70 public:
72     //- Runtime type information
73         TypeName("ChomiakInjector");
76     // Constructors
78         //- Construct from components
79         ChomiakInjector
80         (
81             const dictionary& dict,
82             spray& sm
83         );
86     // Destructor
88         ~ChomiakInjector();
91     // Member Functions
93         //- Return the injected droplet diameter
94         scalar d0(const label injector, const scalar time) const;
96         //- Return the spray angle of the injector
97         vector direction
98         (
99             const label injector,
100             const label hole, 
101             const scalar time,
102             const scalar d
103         ) const;
104     
105         scalar velocity
106         (
107             const label i,
108             const scalar time
109         ) const;
110         
111         scalar averageVelocity
112         (
113             const label i
114         ) const;
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
120 } // End namespace Foam
122 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
124 #endif
126 // ************************************************************************* //