50 lines
1.2 KiB
C++
50 lines
1.2 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: dev
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
format ascii;
|
|
class dictionary;
|
|
object physicalProperties.water;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
thermoType
|
|
{
|
|
type heRhoThermo;
|
|
mixture pureMixture;
|
|
transport const;
|
|
thermo hConst;
|
|
equationOfState rhoConst;
|
|
specie specie;
|
|
energy sensibleInternalEnergy;
|
|
}
|
|
|
|
mixture
|
|
{
|
|
specie
|
|
{
|
|
molWeight 18;
|
|
}
|
|
equationOfState
|
|
{
|
|
rho 997;
|
|
}
|
|
thermodynamics
|
|
{
|
|
Cp 4195;
|
|
hf 0;
|
|
}
|
|
transport
|
|
{
|
|
mu 3.645e-4;
|
|
Pr 2.289;
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|