openfoam/tutorials/combustion/coldEngineFoam/freePiston/0/air
2023-02-13 21:18:57 +01:00

54 lines
1.2 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2306 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class volScalarField;
object air;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "include/caseSettings"
dimensions [0 0 0 0 0 0 0];
internalField uniform 1;
boundaryField
{
back
{
type wedge;
}
front
{
$back;
}
liner
{
$/wall/p;
}
cylinderHead
{
$liner;
}
piston
{
$liner;
}
}
#remove (wall piston)
// ************************************************************************* //