1) Adding interfaceHeight FO 2) Adding interfaceHeatResistance mass transfer model to interCondensatingEvaporatingFoam with spread source approach 3) Reworking framework for icoReactingMultiphaseInterFoam
53 lines
1.4 KiB
Plaintext
Executable File
53 lines
1.4 KiB
Plaintext
Executable File
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v1906 |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object thermophysicalProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
thermoType
|
|
{
|
|
type heRhoThermo;
|
|
mixture pureMixture;
|
|
transport const;
|
|
thermo hConst;
|
|
equationOfState rhoConst;
|
|
specie specie;
|
|
energy sensibleEnthalpy;
|
|
}
|
|
|
|
mixture
|
|
{
|
|
specie
|
|
{
|
|
nMoles 1;
|
|
molWeight 18.9;
|
|
}
|
|
equationOfState
|
|
{
|
|
rho 958.4;
|
|
}
|
|
thermodynamics
|
|
{
|
|
Cp 4216;
|
|
Hf 2.26e6;//-1.5833e7;//deltaHv 2.45e6; //[J/Kg]
|
|
}
|
|
transport
|
|
{
|
|
mu 959e-6;
|
|
Pr 6.62;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|