Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / lagrangian / porousExplicitSourceReactingParcelFoam / verticalChannel / 0.org / omega
blobe1def77d0bdab01183207dbf0be874f731efeb3b
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
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 // ************************************************************************* //