fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / lagrangian / porousExplicitSourceReactingParcelFoam / verticalChannel / 0.org / omega
blob47470373a47038de88b62fb76deb50e9eba81b6f
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     location    "0";
14     object      omega;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions      [0 0 -1 0 0 0 0];
20 internalField   uniform 4.5e-3;
22 boundaryField
24     back
25     {
26         type            symmetryPlane;
27     }
28     front
29     {
30         type            symmetryPlane;
31     }
32     inletCentral
33     {
34         type            compressible::turbulentMixingLengthFrequencyInlet;
35         mixingLength    0.007;
36         k               k;
37         value           uniform 4.5e-3;
38     }
39     inletSides
40     {
41         type            compressible::turbulentMixingLengthFrequencyInlet;
42         mixingLength    0.007;
43         k               k;
44         value           uniform 4.5e-3;
45     }
46     outlet
47     {
48         type            inletOutlet;
49         inletValue      uniform 4.5e-3;
50     }
51     walls
52     {
53         type            compressible::omegaWallFunction;
54         Cmu             0.09;
55         kappa           0.41;
56         E               9.8;
57         value           uniform 0;
58     }
61 // ************************************************************************* //