initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / applications / solvers / multiphase / twoPhaseEulerFoam / readPPProperties.H
blob3acbf758d04105e7d3ec4f6aad60035c7398d082
1     IOdictionary ppProperties
2     (
3         IOobject
4         (
5             "ppProperties",
6             runTime.constant(),
7             mesh,
8             IOobject::MUST_READ,
9             IOobject::NO_WRITE
10         )
11     );
13     scalar preAlphaExp
14     (
15         readScalar(ppProperties.lookup("preAlphaExp"))
16     );
18     scalar alphaMax
19     (
20         readScalar(ppProperties.lookup("alphaMax"))
21     );
23     scalar expMax
24     (
25         readScalar(ppProperties.lookup("expMax"))
26     );
28     dimensionedScalar g0
29     (
30         ppProperties.lookup("g0")
31     );
33     Switch packingLimiter
34     (
35         ppProperties.lookup("packingLimiter")
36     );