STYLE: miss-aligned Headers
[foam-extend-3.2.git] / tutorials / basic / laplacianFoam / twoBlocksMixingPlaneMismatch / 0_orig / T
blob14c38c6a596f9027eac689064866320c03790bbe
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.0                                |
5 |   \\  /    A nd           | Web:         http://www.extend-project.de       |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volScalarField;
13     object      T;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 0 0 1 0 0 0];
19 internalField   uniform 100;
21 boundaryField
23     top
24     {
25         type            zeroGradient;
26     }
28     bottom
29     {
30         type            zeroGradient;
31     }
33     leftIn
34     {
35         type            fixedValue;
36         value           uniform 10;
37     }
39     rightOut
40     {
41         type            fixedValue;
42         value           uniform 0;
43     }
45     mixpLeftOut
46     {
47         type            mixingPlane;
48     }
50     mixpRightIn
51     {
52         type            mixingPlane;
53     }
55     frontAndBack
56     {
57         type            empty;
58     }
61 // ************************************************************************* //