initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / lagrangian / dieselSpray / spraySubModels / injectorModel / pressureSwirl / pressureSwirlInjector.H
blob56fe236c0163a5bb990ec58fc5fa3868fb892918
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::pressureSwirlInjector
28 Description
29     Randomly distribute the parcels between the inner and outer cone angle.
31     Set inner angle to zero for solid cone.
33 \*---------------------------------------------------------------------------*/
35 #ifndef pressureSwirlInjector_H
36 #define pressureSwirlInjector_H
38 #include "injectorModel.H"
39 #include "scalarList.H"
42 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
44 namespace Foam
46 /*---------------------------------------------------------------------------*\
47                            Class pressureSwirlInjector Declaration
48 \*---------------------------------------------------------------------------*/
50 class pressureSwirlInjector
52     public injectorModel
55 private:
57     // Private data
59         dictionary pressureSwirlInjectorDict_;
61         scalarList coneAngle_;
62         scalarList coneInterval_;
63         scalarList maxKv_;
64         
65     // The initial spray angle for the parcels    
66         mutable scalar angle_;
67         
68     // The initial velocity for the parcels           
69         mutable scalar u_;
71     // private member functions
72         
73         scalar kv
74         (
75             const label inj, 
76             const scalar massFlow,
77             const scalar dPressure
78         ) const;
79         
80         scalar deltaPressureInj(const scalar time, const label inj) const;
81         scalar averagePressure(const label inj) const;
83 public:
85     //- Runtime type information
86         TypeName("pressureSwirlInjector");
89     // Constructors
91         //- Construct from components
92         pressureSwirlInjector
93         (
94             const dictionary& dict,
95             spray& sm
96         );
99     // Destructor
101         ~pressureSwirlInjector();
104     // Member Functions
106         //- Return the injected droplet diameter
107         scalar d0(const label injector, const scalar time) const;
109         //- Return the spray angle of the injector
110         vector direction
111         (
112             const label injector,
113             const label hole, 
114             const scalar time,
115             const scalar d
116         ) const;
117     
118         scalar velocity
119         (
120             const label i,
121             const scalar time
122         ) const;
123         
124         scalar averageVelocity
125         (
126             const label i
127         ) const;
128         
133 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
135 } // End namespace Foam
137 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
139 #endif
141 // ************************************************************************* //