readThermodynamicProperties.H
Go to the documentation of this file.
1 Info<< "Reading thermodynamicProperties\n" << endl;
2 
3 IOdictionary thermodynamicProperties
4 (
5  IOobject
6  (
7  "thermodynamicProperties",
8  runTime.constant(),
9  mesh,
10  IOobject::MUST_READ_IF_MODIFIED,
11  IOobject::NO_WRITE
12  )
13 );
14 
16 (
17  "psil",
19  thermodynamicProperties
20 );
21 
22 dimensionedScalar rholSat
23 (
24  "rholSat",
25  dimDensity,
26  thermodynamicProperties
27 );
28 
30 (
31  "psiv",
33  thermodynamicProperties
34 );
35 
37 (
38  "pSat",
40  thermodynamicProperties
41 );
42 
43 dimensionedScalar rhovSat("rhovSat", psiv*pSat);
44 
45 dimensionedScalar rhol0("rhol0", rholSat - pSat*psil);
46 
47 dimensionedScalar rhoMin
48 (
49  "rhoMin",
50  dimDensity,
51  thermodynamicProperties
52 );
engineTime & runTime
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
dynamicFvMesh & mesh
const dimensionSet dimPressure
const dimensionSet dimDensity
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
messageStream Info
const dimensionSet dimCompressibility