Upgrade case file headers
[foam-extend-3.2.git] / tutorials / immersedBoundary / cylinderInChannelScalarTransport / 0_org / U
blob98a6d5b4cd14d070dbaf03c781a1fefb08e6e4cd
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volVectorField;
13     object      U;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 1 -1 0 0 0 0];
19 internalField   uniform (0 0 0);
21 boundaryField
23     ibCylinder
24     {
25         type immersedBoundary;
26         refValue uniform (0 0 0);
27         refGradient  uniform (0 0 0);
28         fixesValue yes;
30         setDeadCellValue   yes;
31         deadCellValue      (0 0 0);
32     }
34     in
35     {
36         type fixedValue;
37         value uniform (1 0 0);
38     }
40     out
41     {
42         type inletOutlet;
43         inletValue uniform (0 0 0);
44         value uniform (1 0 0);
45     }
47     top
48     {
49         type fixedValue;
50         value uniform (0 0 0);
51     }
53     bottom
54     {
55         type fixedValue;
56         value uniform (0 0 0);
57     }
59     frontAndBack
60     {
61         type empty;
62     }
65 // ************************************************************************* //