51 lines
1.5 KiB
C++
51 lines
1.5 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v2012 |
|
|
| \\ / A nd | Website: www.openfoam.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object thermophysicalProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
thermoType
|
|
{
|
|
type hePsiThermo;
|
|
mixture pureMixture;
|
|
transport const;
|
|
thermo hConst;
|
|
equationOfState perfectGas;
|
|
specie specie;
|
|
energy sensibleInternalEnergy;
|
|
}
|
|
|
|
// 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
|
|
{
|
|
molWeight 11640.3;
|
|
}
|
|
thermodynamics
|
|
{
|
|
Cp 2.5;
|
|
Hf 0;
|
|
}
|
|
transport
|
|
{
|
|
mu 0;
|
|
Pr 1;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|