Upgrade case file headers
[foam-extend-3.2.git] / tutorials / immersedBoundary / sphereInChannel / 0_org / p
blobf10d5f5d6b6f9eaded22d1f38e979b41ee518af5
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     ibSphere
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 fixedValue;
44         value uniform 0;
45     }
47     top
48     {
49         type zeroGradient;
50     }
52     bottom
53     {
54         type zeroGradient;
55     }
57     back
58     {
59         type zeroGradient;
60     }
62     front
63     {
64         type zeroGradient;
65     }
68 // ************************************************************************* //