fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / incompressible / simpleFoam / motorBike / 0 / k
blob96eb3ce26ba4a0cb4cd853db360c3455639b1206
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM Extend Project: Open Source CFD        |
4 |  \\    /   O peration     | Version:  1.6-ext                               |
5 |   \\  /    A nd           | Web:      www.extend-project.de                 |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volScalarField;
13     object      k;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 #include        "initialConditions"
19 dimensions      [0 2 -2 0 0 0 0];
21 internalField   uniform $turbulentKE;
23 boundaryField
25     #include "fixedInlet"
27     outlet
28     {
29         type            inletOutlet;
30         inletValue      $internalField;
31         value           $internalField;
32     }
34     lowerWall
35     {
36         type            kqRWallFunction;
37         value           $internalField;
38     }
40     "motorBike_.*"
41     {
42         type            kqRWallFunction;
43         value           $internalField;
44     }
46     #include "frontBackUpperPatches"
49 // ************************************************************************* //