ENH: partialWrite: support regions
[OpenFOAM-1.7.x.git] / tutorials / incompressible / simpleWindFoam / turbineSiting / 0 / k
blob30221e9df0306b77f5459803accf286c92f5f90b
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.7.1                                 |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.com               |
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     }
34     inlet
35     {
36         type            fixedValue;
37         value           $internalField;
38     }
40     "terrain_.*"
41     {
42         type            kqRWallFunction;
43         value           uniform 0.0;
44     }
46     ground
47     {
48         type            zeroGradient;
49     }
51     #include "include/sideAndTopPatches"
55 // ************************************************************************* //