Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / immersedBoundary / pitzDailyLaminarIcoIbFoam / 0_org / p
blobbf665ee761a05b19e300c1c7036d97d6cd794549
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     pitzDailyIB
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     inlet
37     {
38         type zeroGradient;
39     }
41     outlet
42     {
43         type zeroGradient;
44 //         type fixedValue;
45 //         value uniform 0;
46     }
48     top
49     {
50         type zeroGradient;
51     }
53     bottom
54     {
55         type zeroGradient;
56     }
58     frontAndBack
59     {
60         type empty;
61     }
64 // ************************************************************************* //