mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
XiEngineFoam is a premixed/partially-premixed combustion engine solver which exclusively uses the Xi flamelet combustion model. engineFoam is a general engine solver for inhomogeneous combustion with or without spray supporting run-time selection of the chemistry-based combustion model.
54 lines
1.2 KiB
C++
54 lines
1.2 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM:.khe Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ 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;
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|