Home
Downloads
Documentation
Installation
User Guide
man-pages
API Documentation
README
Release Notes
Changes
License
Support
SourceForge Project
Main Page
Related Pages
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
src
lagrangian
dieselSpray
spraySubModels
atomizationModel
LISA
LISA.H
Go to the documentation of this file.
1
/*---------------------------------------------------------------------------*\
2
========= |
3
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4
\\ / O peration |
5
\\ / A nd | Copyright (C) 1991-2010 OpenCFD Ltd.
6
\\/ M anipulation |
7
-------------------------------------------------------------------------------
8
License
9
This file is part of OpenFOAM.
10
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.
15
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.
20
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/>.
23
24
Class
25
Foam::LISA
26
27
Description
28
Primary Breakup Model for pressure swirl atomizers.
29
30
Accurate description in
31
@verbatim
32
P.K. Senecal, D.P. Shmidt, I. Nouar, C.J. Rutland, R.D. Reitz, M. Corradini
33
"Modeling high-speed viscous liquid sheet atomization"
34
International Journal of Multiphase Flow 25 (1999) pags. 1073-1097
35
@endverbatim
36
37
and
38
39
@verbatim
40
D.P. Schmidt, I. Nouar, P.K. Senecal, C.J. Rutland, J.K. Martin, R.D. Reitz
41
"Pressure-Swirl Atomization in the Near Field"
42
SAE Techical Paper Series 1999-01-0496
43
@endverbatim
44
45
46
\*---------------------------------------------------------------------------*/
47
48
#ifndef LISA_H
49
#define LISA_H
50
51
#include <
dieselSpray/atomizationModel.H
>
52
53
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
54
55
namespace
Foam
56
{
57
58
/*---------------------------------------------------------------------------*\
59
Class LISA Declaration
60
\*---------------------------------------------------------------------------*/
61
62
class
LISA
63
:
64
public
atomizationModel
65
{
66
private
:
67
68
// Private data
69
70
dictionary
coeffsDict_;
71
Random
& rndGen_;
72
scalar Cl_;
73
scalar cTau_;
74
scalar Q_;
75
scalar J_;
76
77
public
:
78
79
//- Runtime type information
80
TypeName
(
"LISA"
);
81
82
83
// Constructors
84
85
//- Construct from components
86
LISA
87
(
88
const
dictionary
& dict,
89
spray
& sm
90
);
91
92
93
// Destructor
94
95
~LISA
();
96
97
98
// Member Operators
99
100
void
atomizeParcel
101
(
102
parcel
&
parcel
,
103
const
scalar deltaT,
104
const
vector
& vel,
105
const
liquidMixture
& fuels
106
)
const
;
107
108
109
};
110
111
112
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
113
114
}
// End namespace Foam
115
116
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
117
118
#endif
119
120
// ************************ vim: set sw=4 sts=4 et: ************************ //