Upgrade case file headers
[foam-extend-3.2.git] / tutorials / multiphase / interFoam / les / nozzleFlow2D / 0 / k
blobef2b5a780d2392889ad32175d67d74ca24029348
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-11;
21 boundaryField
23     axis
24     {
25         type            empty;
26     }
28     inlet
29     {
30         type            fixedValue;
31         value           uniform 1e-05;
32     }
34     wall
35     {
36         type            fixedValue;
37         value           uniform 1e-11;
38     }
40     atmosphere
41     {
42         type            inletOutlet;
43         inletValue      uniform 0.001;
44         value           uniform 1e-11;
45     }
47     front
48     {
49         type            wedge;
50     }
52     back
53     {
54         type            wedge;
55     }
58 // ************************************************************************* //