mirror of
https://github.com/ParticulateFlow/CFDEMcoupling-PFM.git
synced 2025-12-08 06:37:44 +00:00
48 lines
1.3 KiB
C++
Executable File
48 lines
1.3 KiB
C++
Executable File
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 4.x |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class polyBoundaryMesh;
|
|
location "constant/polyMesh";
|
|
object boundary;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
4
|
|
(
|
|
walls
|
|
{
|
|
type wall;
|
|
inGroups 1(wall);
|
|
nFaces 9020;
|
|
startFace 64580;
|
|
}
|
|
inlet
|
|
{
|
|
type patch;
|
|
nFaces 190;
|
|
startFace 73600;
|
|
}
|
|
outlet
|
|
{
|
|
type patch;
|
|
nFaces 210;
|
|
startFace 73790;
|
|
}
|
|
nozzle
|
|
{
|
|
type patch;
|
|
nFaces 20;
|
|
startFace 74000;
|
|
}
|
|
)
|
|
|
|
// ************************************************************************* //
|