Upgrade case file headers
[foam-extend-3.2.git] / tutorials / immersedBoundary / cylinderInChannelFineIcoIbFoam / 0_org / p
blob78508f3bd0e626b34adf22d9d44069a72bbd2ad8
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       volScalarField;
13     object      p;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions [0 2 -2 0 0 0 0];
19 internalField uniform 0;
21 boundaryField
23     ibCylinder
24     {
25         type immersedBoundary;
26         refValue uniform 0;
27         refGradient  uniform 0;
28         fixesValue no;
30         setDeadCellValue   yes;
31         deadCellValue      0;
33         value uniform 0;
34     }
36     in
37     {
38         type zeroGradient;
39     }
41     out
42     {
43         type zeroGradient;
45 //         type fixedValue;
46 //         value uniform 0;
47     }
49     top
50     {
51         type zeroGradient;
52     }
54     bottom
55     {
56         type zeroGradient;
57     }
59     frontAndBack
60     {
61         type empty;
62     }
65 // ************************************************************************* //