Upgrade case file headers
[foam-extend-3.2.git] / tutorials / immersedBoundary / cylBumpInterIbFoam / 0_org / alpha1
blob33ec78a057ebd612635a7461f267f3e544e8328a
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      alpha1;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions [0 0 0 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     left
37     {
38         type zeroGradient;
39     }
41     right
42     {
43         type zeroGradient;
44     }
46     top
47     {
48         type inletOutlet;
49         inletValue uniform 0;
50         value uniform 0;
51     }
53     bottom
54     {
55         type zeroGradient;
56     }
58     frontAndBack
59     {
60         type empty;
61     }
64 // ************************************************************************* //