STYLE: miss-aligned Headers
[foam-extend-3.2.git] / tutorials / incompressible / simpleSRFFoam / mixer / 0 / omega
blobca03ec39082229250e6feb305c1f6123f0856ae8
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.0                                |
5 |   \\  /    A nd           | Web:         http://www.extend-project.de       |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volScalarField;
13     location    "0";
14     object      omega;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions      [0 0 -1 0 0 0 0];
20 internalField   uniform 3.5;
22 boundaryField
24     inlet
25     {
26         type            fixedValue;
27         value           uniform 3.5;
28     }
29     outlet
30     {
31         type            zeroGradient;
32     }
33     innerWall
34     {
35         type            omegaWallFunction;
36         U               Urel;
37         Cmu             0.09;
38         kappa           0.41;
39         E               9.8;
40         beta1           0.075;
41         value           uniform 3.5;
42     }
43     outerWall
44     {
45         type            omegaWallFunction;
46         U               Urel;
47         Cmu             0.09;
48         kappa           0.41;
49         E               9.8;
50         beta1           0.075;
51         value           uniform 3.5;
52     }
53     cyclic
54     {
55         type            cyclic;
56         value           uniform 3.5;
57     }
60 // ************************************************************************* //