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/compressible/sonicLiquidFoam/decompressionTank/constant/polyMesh/blockMeshDict
Dominik Christ b28965db7b Changed some tutorials
Changed some more tutorials

Changed a few more tutorials

Changed even  more tutorials
2014-05-30 18:24:36 +01:00

116 lines
2.3 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | foam-extend: Open Source CFD |
| \\ / O peration | Version: 3.0 |
| \\ / A nd | Web: http://www.extend-project.de |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 0.1;
vertices
(
(0 0 -0.1)
(1 0 -0.1)
(0 0.5 -0.1)
(1 0.5 -0.1)
(1.5 0.5 -0.1)
(0 0.6 -0.1)
(1 0.6 -0.1)
(1.5 0.6 -0.1)
(0 3 -0.1)
(1 3 -0.1)
(0 0 0.1)
(1 0 0.1)
(0 0.5 0.1)
(1 0.5 0.1)
(1.5 0.5 0.1)
(0 0.6 0.1)
(1 0.6 0.1)
(1.5 0.6 0.1)
(0 3 0.1)
(1 3 0.1)
);
blocks
(
hex (0 1 3 2 10 11 13 12) (30 20 1) simpleGrading (1 1 1)
hex (2 3 6 5 12 13 16 15) (30 5 1) simpleGrading (1 1 1)
hex (3 4 7 6 13 14 17 16) (25 5 1) simpleGrading (1 1 1)
hex (5 6 9 8 15 16 19 18) (30 95 1) simpleGrading (1 1 1)
);
edges
(
);
boundary
(
outerWall
{
type wall;
faces
(
(0 1 11 10)
(1 3 13 11)
(3 4 14 13)
(7 6 16 17)
(6 9 19 16)
(9 8 18 19)
);
}
axis
{
type symmetryPlane;
faces
(
(0 10 12 2)
(2 12 15 5)
(5 15 18 8)
);
}
nozzle
{
type patch;
faces
(
(4 7 17 14)
);
}
back
{
type empty;
faces
(
(0 2 3 1)
(2 5 6 3)
(3 6 7 4)
(5 8 9 6)
);
}
front
{
type empty;
faces
(
(10 11 13 12)
(12 13 16 15)
(13 14 17 16)
(15 16 19 18)
);
}
);
mergePatchPairs
(
);
// ************************************************************************* //