initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / multiphase / interFoam / les / nozzleFlow2D / 0 / k
blobd79a980fe357fa7122e27f64dc2e215d2da16741
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.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 // ************************************************************************* //