openfoam/tutorials/combustion/coldEngineFoam/freePiston/0/k
2020-12-23 10:01:39 +01:00

54 lines
1.2 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM:.khe Open Source CFD Toolbox |
| \\ / O peration | Version: v2012 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format binary;
class volScalarField;
location "0";
object k;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "include/caseSettings"
dimensions [0 2 -2 0 0 0 0];
internalField uniform $:internalField.k;
boundaryField
{
back
{
type wedge;
}
front
{
$back;
}
liner
{
$:wall.k;
}
cylinderHead
{
$liner;
}
piston
{
$liner;
}
}
// ************************************************************************* //