diff options
author | Amit Shekhar | 2018-08-17 20:27:17 +0530 |
---|---|---|
committer | Amit Shekhar | 2018-08-17 20:27:17 +0530 |
commit | ea2fa3f28c4e351ea06ad0082236368105aa7ddf (patch) | |
tree | 674c98aa109b72d8e21aee57aec6ef150084a958 /convection-diffusion/basecase/system/blockMeshDict | |
parent | a3d90dcf6a46bc4bea5dc1af88c9c7e6f72553da (diff) | |
download | openfoam-tutorials-master.tar.gz openfoam-tutorials-master.tar.bz2 openfoam-tutorials-master.zip |
Diffstat (limited to 'convection-diffusion/basecase/system/blockMeshDict')
-rw-r--r-- | convection-diffusion/basecase/system/blockMeshDict | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/convection-diffusion/basecase/system/blockMeshDict b/convection-diffusion/basecase/system/blockMeshDict new file mode 100644 index 0000000..56b18ce --- /dev/null +++ b/convection-diffusion/basecase/system/blockMeshDict @@ -0,0 +1,68 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: 5 | +| \\ / A nd | Web: www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +convertToMeters 1; + +vertices +( + (-1 -.1 -1) + (1 -.1 -1) + (1 .1 -1) + (-1 .1 -1) + (-1 -.1 1) + (1 -.1 1) + (1 .1 1) + (-1 .1 1) +); + +blocks +( + hex (0 1 2 3 4 5 6 7) (1000 1 1) simpleGrading (1 1 1) +); + +edges +( +); + +boundary +( + sides + { + type patch; + faces + ( + (1 2 6 5) + (0 4 7 3) + ); + } + empty + { + type empty; + faces + ( + (0 1 5 4) + (5 6 7 4) + (3 7 6 2) + (0 3 2 1) + ); + } +); + +mergePatchPairs +( +); + +// ************************************************************************* // |