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 / k
blob67d8011bf7e7372ae8f847392d5f47a4ed77d751
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      k;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 2 -2 0 0 0 0];
19 internalField   uniform 1e-8;
21 boundaryField
23     inlet
24     {
25         type            fixedValue;
26         value           uniform 1e-8;
27     }
29     outlet
30     {
31         type            inletOutlet;
32         inletValue      uniform 1e-8;
33         value           uniform 1e-8;
34     }
36     walls
37     {
38         type            zeroGradient;
39     }
41     defaultFaces
42     {
43         type            empty;
44     }
47 // ************************************************************************* //