BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / lagrangian / dieselSpray / injector / commonRailInjector / commonRailInjector.H
blob3e6b72a059d68c7b7dd269afd2f43868cf9b78b7
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::commonRailInjector
27 Description
28     Common-rail injector
30 SourceFiles
31     commonRailInjectorI.H
32     commonRailInjector.C
33     commonRailInjectorIO.C
35 \*---------------------------------------------------------------------------*/
37 #ifndef commonRailInjector_H
38 #define commonRailInjector_H
40 #include "injectorType.H"
41 #include "vector.H"
43 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
45 namespace Foam
48 /*---------------------------------------------------------------------------*\
49                      Class commonRailInjector Declaration
50 \*---------------------------------------------------------------------------*/
52 class commonRailInjector
54     public injectorType
57 private:
59     typedef VectorSpace<Vector<scalar>, scalar, 2> pair;
61     // Private data
63         dictionary propsDict_;
65         vector position_;
66         vector direction_;
67         scalar d_;
68         scalar mass_;
69         scalar injectionPressure_;
70         scalar T_;
71         label nParcels_;
72         scalarField X_;
73         List<pair> massFlowRateProfile_;
74         List<pair> velocityProfile_;
75         List<pair> injectionPressureProfile_;
76         List<pair> CdProfile_;
77         List<pair> TProfile_;
78         scalar averageParcelMass_;
80         bool pressureIndependentVelocity_;
82         //- two orthogonal vectors that are also orthogonal
83         //  to the injection direction
84         vector tangentialInjectionVector1_, tangentialInjectionVector2_;
87     // Private Member Functions
89         //- Disallow default bitwise copy construct
90         commonRailInjector(const commonRailInjector&);
92         //- Disallow default bitwise assignment
93         void operator=(const commonRailInjector&);
95         //- Create two vectors orthonoal to each other
96         //  and the injection vector
97         void setTangentialVectors();
99         //- Return the fraction of the total injected liquid
100         scalar fractionOfInjection(const scalar time) const;
103 public:
105     //- Runtime type information
106     TypeName("commonRailInjector");
109     // Constructors
111         //- Construct from components
112         commonRailInjector(const Time& t, const dictionary& dict);
115     //- Destructor
116     virtual ~commonRailInjector();
119     // Member Functions
121         //- Return number of particles to inject
122         label nParcelsToInject
123         (
124             const scalar t0,
125             const scalar t1
126         ) const;
128         //- Return the injection position
129         const vector position(const label n) const;
131         //- Return the injection position
132         vector position
133         (
134             const label n,
135             const scalar time,
136             const bool twoD,
137             const scalar angleOfWedge,
138             const vector& axisOfSymmetry,
139             const vector& axisOfWedge,
140             const vector& axisOfWedgeNormal,
141             cachedRandom& rndGen
142         ) const;
144         //- Return the number of holes
145         label nHoles() const;
147         //- Return the injector diameter
148         scalar d() const;
150         //- Return the injection direction
151         const vector& direction
152         (
153             const label i,
154             const scalar time
155         ) const;
157         //- Return the mass of the injected particle
158         scalar mass
159         (
160             const scalar t0,
161             const scalar t1,
162             const bool twoD,
163             const scalar angleOfWedge
164         ) const;
166         //- Return the mass injected by the injector
167         scalar mass() const;
169         //- Return the fuel mass fractions of the injected particle
170         const scalarField& X() const;
172         //- Return the temperature profile of the injected particle
173         List<pair> T() const;
175         //- Return the temperature of the injected particle
176         scalar T(const scalar time) const;
178         //- Return the start-of-injection time
179         scalar tsoi() const;
181         //- Return the end-of-injection time
182         scalar teoi() const;
184         //- Return the injected liquid mass
185         scalar injectedMass(const scalar t) const;
187         List<pair> massFlowRateProfile() const
188         {
189             return massFlowRateProfile_;
190         }
192         scalar massFlowRate(const scalar time) const;
194         List<pair> injectionPressureProfile() const
195         {
196             return injectionPressureProfile_;
197         }
199         scalar injectionPressure(const scalar time) const;
201         List<pair> velocityProfile() const
202         {
203             return velocityProfile_;
204         }
206         scalar velocity(const scalar time) const;
208         List<pair> CdProfile() const;
209         scalar Cd(const scalar time) const;
211         vector tan1(const label n) const;
212         vector tan2(const label n) const;
214         void correctProfiles
215         (
216             const liquidMixtureProperties& fuel,
217             const scalar referencePressure
218         );
220         bool pressureIndependentVelocity() const
221         {
222             return pressureIndependentVelocity_;
223         }
227 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
229 } // End namespace Foam
231 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
233 #endif
235 // ************************************************************************* //