Files
CFDEMcoupling-PFM/tutorials/cfdemSolverPiso/bubblingFluidizedBed/CFD/system/blockMeshDict
danielque 73e21bec5d add bubbling fluidized bed test case
based on Khawaja, H.A., J. Comput. Multiph. Flows 7(4), 227-240 (2015)
2021-10-14 12:44:47 +02:00

71 lines
1.4 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 1;
vertices
(
( 0.0432 0.0000 -0.0048 )
( 0.0000 0.0000 -0.0048 )
( 0.0000 0.0100 -0.0048 )
( 0.0432 0.0100 -0.0048 )
( 0.0432 0.0000 0.1200 )
( 0.0000 0.0000 0.1200 )
( 0.0000 0.0100 0.1200 )
( 0.0432 0.0100 0.1200 )
);
blocks
(
hex (1 0 3 2 5 4 7 6) (12 1 26) simpleGrading (1 1 1)
);
boundary
(
inlet
{
type patch;
faces
(
(0 1 2 3)
);
}
outlet
{
type patch;
faces
(
(4 7 6 5)
);
}
wall
{
type wall;
faces
(
(1 0 4 5)
(0 3 7 4)
(3 2 6 7)
(2 1 5 6)
);
}
);
// ************************************************************************* //