mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
XiDyMFoam : compressible version of XiFoam oscillatingCylinder : 2D case with cylinder moving up and down annularCombustorTurbine : part of 3D combuster using cyclicPeriodicAMI
62 lines
1.6 KiB
C++
62 lines
1.6 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev-OpenCFD.feature-periodicAMIAndXiDyMFoam|
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class polyBoundaryMesh;
|
|
location "constant/polyMesh";
|
|
object boundary;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
6
|
|
(
|
|
inletAir
|
|
{
|
|
type patch;
|
|
nFaces 16;
|
|
startFace 5952;
|
|
}
|
|
inletFuel
|
|
{
|
|
type patch;
|
|
nFaces 8;
|
|
startFace 5968;
|
|
}
|
|
outlet
|
|
{
|
|
type patch;
|
|
nFaces 24;
|
|
startFace 5976;
|
|
}
|
|
walls
|
|
{
|
|
type wall;
|
|
inGroups 1(wall);
|
|
nFaces 240;
|
|
startFace 6000;
|
|
}
|
|
cylinder
|
|
{
|
|
type wall;
|
|
inGroups 1(wall);
|
|
nFaces 96;
|
|
startFace 6240;
|
|
}
|
|
frontAndBack
|
|
{
|
|
type empty;
|
|
inGroups 1(empty);
|
|
nFaces 6144;
|
|
startFace 6336;
|
|
}
|
|
)
|
|
|
|
// ************************************************************************* //
|