Merge /u/wyldckat/foam-extend32/ branch master into master
[foam-extend-3.2.git] / src / lagrangian / dieselSpray / spraySubModels / injectorModel / Chomiak / Chomiak.H
blob7be51251ffe6d29a29a61b4831488f3418d63e98
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::ChomiakInjector
27 Description
28     Injector model based on an idea of Jerzy Chomiak.
30     Given the initial droplet size pdf in an interval d = (d0, d1),
31     the spray angle phi = phi(d), such that
32     the largest droplets have zero spray angle
33     and the smallest droplets have maximum spray angle.
34     i.e. phi(d=d1) = 0, phi(d=d0) = phiMax,
35     where phiMax is a model parameter.
37 \*---------------------------------------------------------------------------*/
39 #ifndef ChomiakInjector_H
40 #define ChomiakInjector_H
42 #include "injectorModel.H"
43 #include "scalarList.H"
44 #include "pdf.H"
46 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
48 namespace Foam
51 /*---------------------------------------------------------------------------*\
52                            Class ChomiakInjector Declaration
53 \*---------------------------------------------------------------------------*/
55 class ChomiakInjector
57     public injectorModel
60 private:
62     // Private data
64         dictionary ChomiakDict_;
66         autoPtr<pdf> dropletPDF_;
67         scalarList maxSprayAngle_;
69 public:
71     //- Runtime type information
72         TypeName("ChomiakInjector");
75     // Constructors
77         //- Construct from components
78         ChomiakInjector
79         (
80             const dictionary& dict,
81             spray& sm
82         );
85     // Destructor
87         ~ChomiakInjector();
90     // Member Functions
92         //- Return the injected droplet diameter
93         scalar d0(const label injector, const scalar time) const;
95         //- Return the spray angle of the injector
96         vector direction
97         (
98             const label injector,
99             const label hole,
100             const scalar time,
101             const scalar d
102         ) const;
104         scalar velocity
105         (
106             const label i,
107             const scalar time
108         ) const;
110         scalar averageVelocity
111         (
112             const label i
113         ) const;
117 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
119 } // End namespace Foam
121 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
123 #endif
125 // ************************************************************************* //