Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / multiphase / bubbleFoam / bubbleColumn / 0 / epsilon
bloba481bca672492e5dbd5ceecbce4bc58f13a09a68
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      epsilon;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 2 -3 0 0 0 0];
19 internalField   uniform 0.1;
21 boundaryField
23     inlet
24     {
25         type            fixedValue;
26         value           uniform 0.1;
27     }
29     outlet
30     {
31         type            inletOutlet;
32         inletValue      uniform 0.1;
33         value           uniform 0.1;
34     }
36     walls
37     {
38         type            zeroGradient;
39     }
41     defaultFaces
42     {
43         type            empty;
44     }
47 // ************************************************************************* //