Files
OpenFOAM-12/tutorials/heatTransfer/chtMultiRegionFoam/heatedDuct/system/blockMeshDict
Will Bainbridge 719d567a62 chtMultiRegionFoam: Added heatedDuct tutorial
This is a CHT case which uses snappyHexMesh. It is a tutorial, in the
traditional sense, in that it has been designed for training purposes.
It does not rely on changeDictionary, surface utilities, or extensive
scripting.

This work was supported by Colin Moughton, at Strix
2018-02-12 14:33:08 +00:00

52 lines
1.3 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;
location "system";
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
convertToMeters 0.001;
vertices
(
(-0.001 -10.001 -0.001)
(50.001 -10.001 -0.001)
(50.001 50.001 -0.001)
(-0.001 50.001 -0.001)
(-0.001 -10.001 150.001)
(50.001 -10.001 150.001)
(50.001 50.001 150.001)
(-0.001 50.001 150.001)
);
blocks
(
hex (0 1 2 3 4 5 6 7) fluid (20 24 60) simpleGrading (1 1 1)
);
edges
(
);
defaultPatch
{
type empty;
name default;
}
boundary
(
);
// ************************************************************************* //