Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / tutorials / combustion / fireFoam / les / oppositeBurningPanels / 0 / O2
blob1d6df004b78d69d5309c1bdda1b75dc0bfa2f132
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          O2;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 0 0 0 0 0 0];
19 internalField   uniform 0.23301;
21 boundaryField
23     top
24     {
25         type            inletOutlet;
26         inletValue      $internalField;
27         value           $internalField;
28     }
30     ground
31     {
32         type            zeroGradient;
33     }
35     sides
36     {
37         type            inletOutlet;
38         inletValue      $internalField;
39         value           $internalField;
40     }
42     burner
43     {
44         type            fixedValue;
45         value           uniform 0;
46     }
48     "(region0_to.*)"
49     {
50         type            zeroGradient;
51     }
55 // ************************************************************************* //