STYLE: tutorial files: corrected object name
[OpenFOAM-2.0.x.git] / tutorials / incompressible / simpleFoam / motorBike / 0.org / omega
blob2d296d9c5adc14ac6a21a031128aaa52597db002
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     object      omega;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 #include        "include/initialConditions"
19 dimensions      [0 0 -1 0 0 0 0];
21 internalField   uniform $turbulentOmega;
23 boundaryField
25     #include "include/fixedInlet"
27     outlet
28     {
29         type            inletOutlet;
30         inletValue      $internalField;
31         value           $internalField;
32     }
34     lowerWall
35     {
36         type            omegaWallFunction;
37         value           $internalField;
38     }
40     "motorBike_.*"
41     {
42         type            omegaWallFunction;
43         value           $internalField;
44     }
46     #include "include/frontBackUpperPatches"
50 // ************************************************************************* //