BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / tutorials / multiphase / LTSInterFoam / wigleyHull / 0 / omega
blob3ab4ae16c41924ca3c26805b738de4f9125e5374
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.org                      |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      ascii;
12     class       volScalarField;
13     object      omega;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 0 -1 0 0 0 0];
19 internalField   uniform 2;
21 boundaryField
23     inlet
24     {
25         type            fixedValue;
26         value           uniform 2;
27     }
29     outlet
30     {
31        type            inletOutlet;
32        inletValue      uniform 2;
33        value           uniform 2;
34     }
36     outlet
37     {
38         type            zeroGradient;
39     }
41     sides
42     {
43         type            symmetryPlane;
44     }
46     atmosphere
47     {
48         type            inletOutlet;
49         inletValue      uniform 2;
50         value           uniform 2;
51     }
53     hull_wall
54     {
55         type            omegaWallFunction;
56         value           uniform 2;
57     }
62 // ************************************************************************* //