BUGFIX: Uninitialised member variables
[foam-extend-3.2.git] / tutorials / multiphase / interFoam / les / nozzleFlow2D / 0 / k
blob7b786703403e8517385bae7eb5734816edd4d3b5
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      www.extend-project.de                 |
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 // ************************************************************************* //