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
applications
solvers
multiphase
twoPhaseEulerFoam
readPPProperties.H
Go to the documentation of this file.
1
IOdictionary
ppProperties
2
(
3
IOobject
4
(
5
"ppProperties"
,
6
runTime.constant(),
7
mesh
,
8
IOobject::MUST_READ,
9
IOobject::NO_WRITE
10
)
11
);
12
13
scalar
preAlphaExp
14
(
15
readScalar
(
ppProperties
.lookup(
"preAlphaExp"
))
16
);
17
18
scalar
alphaMax
19
(
20
readScalar
(
ppProperties
.lookup(
"alphaMax"
))
21
);
22
23
scalar
expMax
24
(
25
readScalar
(
ppProperties
.lookup(
"expMax"
))
26
);
27
28
dimensionedScalar
g0
29
(
30
ppProperties
.lookup(
"g0"
)
31
);
32
33
Switch
packingLimiter
34
(
35
ppProperties
.lookup(
"packingLimiter"
)
36
);
37
38
// ************************ vim: set sw=4 sts=4 et: ************************ //