/*--------------------------------*- 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       dictionary;
  object      blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

convertToMeters 0.01;

vertices
(
    (0 0 0)     // 0
    (10 0 0)    // 1
    (10 4 0)    // 2
    (0 4 0)     // 3
    (0 0 1)     // 4
    (10 0 1)    // 5
    (10 4 1)    // 6
    (0 4 1)     // 7

    /*(0 0 0)     // 8
    (10 0 0)    // 9
    (10 4 0)    // 10
    (0 4 0)     // 11
    (0 0 1)     // 12
    (10 0 1)    // 13
    (10 4 1)    // 14
    (0 4 1)     // 15 */
);



blocks
(
    hex (0 1 2 3 4 5 6 7) (100 40 1) simpleGrading (1 1 1)
);


boundary
(
left {
  type wall;
  faces
  (
      (4 7 3 0)
  );
}
right {
  type patch;
  faces
  (
      (1 2 6 5)
  );
}
down {
  type patch;
  faces
  (
      (0 1 5 4)
  );
}
up {
  type patch;
  faces
  (
      (3 7 6 2)
  );
}
frontAndBack {
  type empty;
  faces
  (
      (4 5 6 7)
      (0 3 2 1)
  );
}
);

mergePatchPairs
(
);

// ************************************************************************* //
