Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / incompressible / porousSimpleFoam / angledDuctImplicit / 0 / k
blob1febf452fdfc907feefa5f5a1d574b7e9da9d097
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  2.0.0                                 |
5 |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
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 1;
22 boundaryField
24     front
25     {
26         type            kqRWallFunction;
27         value           uniform 1;
28     }
30     back
31     {
32         type            kqRWallFunction;
33         value           uniform 1;
34     }
36     wall
37     {
38         type            kqRWallFunction;
39         value           uniform 1;
40     }
42     porosityWall
43     {
44         type            kqRWallFunction;
45         value           uniform 1;
46     }
48     inlet
49     {
50         type            turbulentIntensityKineticEnergyInlet;
51         intensity       0.05;
52         value           uniform 1;
53     }
55     outlet
56     {
57         type            inletOutlet;
58         inletValue      uniform 1;
59         value           uniform 1;
60     }
64 // ************************************************************************* //