54 lines
1.4 KiB
Plaintext
54 lines
1.4 KiB
Plaintext
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v2112 |
|
|
| \\ / A nd | Website: www.openfoam.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object thermophysicalProperties.liquid;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
thermoType
|
|
{
|
|
type heRhoThermo;
|
|
mixture pureMixture;
|
|
transport const;
|
|
thermo hConst;
|
|
equationOfState rhoConst;
|
|
specie specie;
|
|
energy sensibleEnthalpy;
|
|
}
|
|
|
|
|
|
mixture
|
|
{
|
|
specie
|
|
{
|
|
nMoles 1;
|
|
molWeight 18.9;
|
|
}
|
|
equationOfState
|
|
{
|
|
rho 1000;
|
|
}
|
|
thermodynamics
|
|
{
|
|
Cp 4181;
|
|
Hf -2.45e6; //[J/Kg]
|
|
}
|
|
transport
|
|
{
|
|
Pr 6.62;
|
|
mu 959e-6;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|