This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/tutorials/overset/simpleTests/channelSimpleOverlapLaplaceNonInterfering/blockMeshDict
2018-06-01 18:11:37 +02:00

94 lines
1.7 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | foam-extend: Open Source CFD |
| \\ / O peration | Version: 4.1 |
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 0.1;
vertices
(
(0 0 0)
(6.1 0 0)
(6.1 5 0)
(0 5 0)
(0 0 1)
(6.1 0 1)
(6.1 5 1)
( 0 5 1)
(3.9 0 0)
(10 0 0)
(10 5 0)
(3.9 5 0)
(3.9 0 1)
(10 0 1)
(10 5 1)
(3.9 5 1)
);
blocks
(
hex (0 1 2 3 4 5 6 7) left (6 5 1) simpleGrading (1 1 1)
hex (8 9 10 11 12 13 14 15) right (6 5 1) simpleGrading (1 1 1)
);
edges
(
);
patches
(
patch left
(
(0 4 7 3)
)
patch leftEnd
(
(2 6 5 1)
)
patch rightStart
(
(8 12 15 11)
)
patch right
(
(9 10 14 13)
)
wall top
(
(3 7 6 2)
(11 15 14 10)
)
wall bottom
(
(1 5 4 0)
(9 13 12 8)
)
empty frontAndBack
(
(0 3 2 1)
(4 5 6 7)
(8 11 10 9)
(12 13 14 15)
)
);
mergePatchPairs
(
);
// ************************************************************************* //