4 /*************************************Libraries**************************************************/
6 1. Included cubic equations of state for pure fluid.
7 --> Redlich Kwong --> class = redlichKwong
8 --> Peng Robinson --> class = pengRobinson
9 --> Soave Redlich Kwong --> class = soaveRedlichKwong
10 --> Aungier Redlich Kwong --> class = aungierRedlichKwong
12 2. Included cubic equations of state for mixtures.
13 TODO: connect the classes to the reaction models
14 -->class = mixtureRedlichKwong
15 -->class = mixturePengRobinson
16 -->class = mixtureSoaveRedlichKwong
17 -->class = aungierSoaveRedlichKwong
19 3. Included a new Thermo model
20 --> enthalpy calculated using NASA heat capacity polynomical
21 Added real gas correction in class
22 class = nasaHeatCapacityPolynomial
24 4. Minor changed in thermo related models so that they can be used with real gas classes
25 --> class = realGasSpecieThermo
26 --> class = sutherland
28 --> class = basicMixture
29 --> class = basicPsiThermo
31 5. Added enthalpy and internal energy thermodynamic class based on basicPsiThermo for real gases
32 --> enthalpy based thermo model, class = realGasHThermo
33 --> internal energy based thermo model, class = realGasEThermo
35 6. Added high precision water properties (IAPWS97) based on freeSteam (external program, not included)
36 Classes will not be compiled by Allwmake file
37 Classes will compile without freeSteam. Freesteam is loaded at runTime (see Tutorial)
38 --> classes = externalMedia/IAPWS_Waterproperties
40 /*************************************Solver**************************************************/
42 1. Changed pressure equation of rhoPisoFoam. Orginal pressure equation assumes perfect gas
43 (linear relationship between pressure and density)
44 --> new solver = realFluidPisoFoam
46 /*************************************Tutorials**************************************************/
48 1. pure fluid real gas mixture tutorial
49 --> realFluidPisoFoam/ras/backStep
51 2. IAPWS97 water properties tutorial
52 freeSteam must be installed for this tutorial
53 additional classes loaded in controlDict
54 --> realFluidPisoFoam/ras/cavity_IAPWS97
57 /*************************************Change log**************************************************/
59 git commit: "add branch ReadMe file"