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/rhoCentralFoam/LadenburgJet60psi/constant/polyMesh/blockMeshDict

108 lines
1.9 KiB
Text
Raw Normal View History

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
2013-12-11 16:09:41 +00:00
| \\ / F ield | foam-extend: Open Source CFD |
2014-06-01 11:15:18 +00:00
| \\ / O peration | Version: 3.1 |
2013-12-11 16:09:41 +00:00
| \\ / A nd | Web: http://www.extend-project.de |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 0.001;
vertices
(
( 0 0 0)
(30 0 0)
( 0 5 -0.008726655121)
(30 5 -0.008726655121)
( 0 10 -0.017453310242)
(30 10 -0.017453310242)
( 0 5 0.008726655121)
(30 5 0.008726655121)
( 0 10 0.017453310242)
(30 10 0.017453310242)
);
blocks
(
hex (0 1 3 2 0 1 7 6) (60 10 1) simpleGrading (1 1 1)
hex (2 3 5 4 6 7 9 8) (60 10 1) simpleGrading (1 1 1)
);
edges
(
);
boundary
(
inlet
{
type patch;
faces
(
(0 2 6 0)
);
}
outlet
{
type patch;
faces
(
(1 3 7 1)
(3 5 9 7)
);
}
freestreamInlet
{
type patch;
faces
(
(2 4 8 6)
);
}
freestream
{
type patch;
faces
(
(4 8 9 5)
);
}
wedge1
{
type wedge;
faces
(
(0 2 3 1)
(2 4 5 3)
);
}
wedge2
{
type wedge;
faces
(
(0 1 7 6)
(6 7 9 8)
);
}
);
2010-11-24 20:48:09 +00:00
mergePatchPairs
(
);
// ************************************************************************* //