initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / compressible / sonicFoam / ras / prism / 0 / k
blob2849678bbd167b48b566072c6f79ea70b6693840
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volScalarField;
13     location    "0";
14     object      k;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions      [0 2 -2 0 0 0 0];
20 internalField   uniform 1000;
22 boundaryField
24     inlet
25     {
26         type            fixedValue;
27         value           uniform 1000;
28     }
29     outlet
30     {
31         type            inletOutlet;
32         inletValue      uniform 1000;
33         value           uniform 1000;
34     }
35     bottomWall
36     {
37         type            inletOutlet;
38         inletValue      uniform 1000;
39         value           uniform 1000;
40     }
41     topWall
42     {
43         type            inletOutlet;
44         inletValue      uniform 1000;
45         value           uniform 1000;
46     }
47     prismWall
48     {
49         type            compressible::kqRWallFunction;
50         value           uniform 1000;
51     }
52     defaultFaces
53     {
54         type            empty;
55     }
59 // ************************************************************************* //