44 lines
1.4 KiB
C++
44 lines
1.4 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
location "constant";
|
|
object thermophysicalProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
thermoType hePsiThermo<pureMixture<const<hConst<perfectGas<specie>>,sensibleEnthalpy>>>;
|
|
|
|
// Note: these are the properties for a "normalised" inviscid gas
|
|
// for which the speed of sound is 1 m/s at a temperature of 1K
|
|
// and gamma = 7/5
|
|
mixture
|
|
{
|
|
specie
|
|
{
|
|
nMoles 1;
|
|
molWeight 11640.3;
|
|
}
|
|
thermodynamics
|
|
{
|
|
Cp 2.5;
|
|
Hf 0;
|
|
}
|
|
transport
|
|
{
|
|
mu 0;
|
|
Pr 1;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|