repo.or.cz
/
foam-extend-3.2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Removed unneeded lib dependency from mdInitialise
[foam-extend-3.2.git]
/
applications
/
solvers
/
multiphase
/
twoPhaseEulerFoam
/
readPPProperties.H
blob
3acbf758d04105e7d3ec4f6aad60035c7398d082
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
);