Fix tutorials: typo in tutorials/viscoelastic/viscoelasticFluidFoam/S-MDCPP/constant...
[OpenFOAM-1.6-ext.git] / tutorials / coupled / conjugateHeatFoam / conjugateCavity / 0 / T
blob9d9e9c1f020b7c7282c41f46e31f610e2e3886d7
1 /*---------------------------------------------------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.3                                   |
5 |   \\  /    A nd           | Web:      http://www.openfoam.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
9 FoamFile
11     version         2.0;
12     format          ascii;
14     root            "";
15     case            "";
16     instance        "";
17     local           "";
19     class           volScalarField;
20     object          T;
23 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
26 dimensions      [0 0 0 1 0 0 0];
28 internalField   uniform 273;
30 boundaryField
32     movingWall
33     {
34         type            zeroGradient;
35     }
37     left
38     {
39         type            fixedValue;
40         value           uniform 273;
41     }
43     right
44     {
45         type            regionCoupling;
46         value           uniform 273;
48         remoteField     T;
49     }
51     bottom
52     {
53         type            zeroGradient;
54     }
56     frontAndBack
57     {
58         type            empty;
59     }
63 // ************************************************************************* //