Files
OpenFOAM-6/tutorials/lagrangian/reactingParcelFoam/splashPanel/system/blockMeshDict
Henry Weller 87e32ab499 Code style: Updated line comments to start with a space
//This is a comment   ->   // This is a comment
2018-05-01 11:57:50 +01:00

72 lines
1.4 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 0.1;
vertices
(
// back
( 0 0 0)
( 1 0 0)
( 0 0.5 0)
( 1 0.5 0)
// front
( 0 0 1)
( 1 0 1)
( 0 0.5 1)
( 1 0.5 1)
);
blocks
(
hex (0 1 3 2 4 5 7 6 ) (20 10 20) simpleGrading (1 1 1)
);
edges
(
);
boundary
(
sides
{
type patch;
faces
(
(1 5 7 3)
(4 5 7 6)
(4 0 2 6)
(7 3 2 6)
(0 4 5 1)
);
}
filmWalls
{
type wall;
faces
(
(0 1 3 2)
);
}
);
mergePatchPairs
(
);
// ************************************************************************* //