mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Uses a system/caseProperties file to select templates from etc/caseDicts/createZeroDirectoryTemplates to enable high-level setup of a case. See - etc/caseDicts/createZeroDirectoryTemplates - tutorials/preProcessing/createZeroDirectory
54 lines
1.3 KiB
C++
54 lines
1.3 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 2.2.2 |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object thermophysicalProperties;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
thermoType
|
|
{
|
|
type heSolidThermo;
|
|
mixture pureMixture;
|
|
transport constIso;
|
|
thermo hConst;
|
|
equationOfState rhoConst;
|
|
specie specie;
|
|
energy sensibleEnthalpy;
|
|
}
|
|
|
|
mixture
|
|
{
|
|
specie
|
|
{
|
|
nMoles 1;
|
|
molWeight 12;
|
|
}
|
|
|
|
transport
|
|
{
|
|
kappa 80;
|
|
}
|
|
|
|
thermodynamics
|
|
{
|
|
Hf 0;
|
|
Cp 450;
|
|
}
|
|
|
|
equationOfState
|
|
{
|
|
rho 8000;
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|