Files
CFDEMcoupling-PFM/tutorials/cfdemSolverIBTorque/CFD/system/blockMeshDict
Achuth1992 25b57b978c Tutorial case for the two-way coupled immersed boundary solver.
Consists of a comparison of the angular velocity damping when the two-
way coupling is considered.
2018-10-08 16:57:32 +02:00

84 lines
1.6 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 1.6 |
| \\ / A nd | Web: http://www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 1;
vertices
(
(0 0 0)
(0.025 0 0)
(0.025 0.1 0)
(0 0.1 0)
(0 0 0.025)
(0.025 0 0.025)
(0.025 0.1 0.025)
(0 0.1 0.025)
);
blocks
(
hex (0 1 2 3 4 5 6 7) (20 80 20) simpleGrading (1 1 1)
//hex (0 1 2 3 4 5 6 7) (120 480 1) simpleGrading (1 1 1)
);
edges
(
);
boundary
(
inlet
{
type wall;
faces
(
(0 3 2 1)
);
}
channelWall
{
type wall;
faces
(
(2 6 5 1)
(0 4 7 3)
(3 7 6 2)
(1 5 4 0)
);
}
outlet
{
type wall;
faces
(
(4 5 6 7)
);
}
/*empty frontAndBack
(
(0 3 2 1)
(4 5 6 7)
)*/
);
mergePatchPairs
(
);
// ************************************************************************* //