FreeFOAM The Cross-Platform CFD Toolkit
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 
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: ************************ //