Files
CFDEMcoupling-PFM/tutorials/displacementField/CFD/system/blockMeshDict
2021-07-30 07:43:42 +02:00

75 lines
1.5 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: 2.3.0 |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 1;
vertices
(
(-0.04 -0.0075 0)
(0.04 -0.075 0)
(0.04 0.075 0)
(-0.04 0.075 0)
(-0.04 -0.075 0.25)
(0.04 -0.075 0.25)
(0.04 0.075 0.25)
(-0.04 0.075 0.25)
);
blocks
(
hex (0 1 2 3 4 5 6 7) (35 6 110) simpleGrading (1 1 1)
);
edges
(
);
boundary
(
walls
{
type wall;
faces
(
(0 4 7 3)
(2 6 5 1)
(1 5 4 0)
(3 7 6 2)
);
}
inlet
{
type patch;
faces
(
(0 3 2 1)
);
}
outlet
{
type patch;
faces
(
(4 5 6 7)
);
}
);
mergePatchPairs
(
);
// ************************************************************************* //