ENH: autoLayerDriver: better layering information message
[OpenFOAM-2.0.x.git] / tutorials / incompressible / windSimpleFoam / turbineSiting / 0 / k
blob5092dabbb39087576c01b7c7882a8a990c6a7cc7
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.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volScalarField;
13     object      k;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 #include        "include/initialConditions"
19 dimensions      [0 2 -2 0 0 0 0];
21 internalField   uniform $turbulentKE;
23 boundaryField
25     #include "include/ABLConditions"
27     outlet
28     {
29         type            inletOutlet;
30         inletValue      uniform 0.0;
31         value           $internalField;
32     }
33     inlet
34     {
35         type            uniformFixedValue;
36         uniformValue    $turbulentKE;
37         value           $turbulentKE;
38     }
39     "terrain_.*"
40     {
41         type            kqRWallFunction;
42         value           uniform 0.0;
43     }
45     ground
46     {
47         type            zeroGradient;
48     }
50     #include "include/sideAndTopPatches"
54 // ************************************************************************* //