Merge branch 'upstream/OpenFOAM' into master
[freefoam.git] / tutorials / multiphase / twoPhaseEulerFoam / bed2 / 0 / Ub
blob535d3677328d84bfb1e633574379a2d0f3d2b9a7
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.6                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version     2.0;
11     format      binary;
12     class       volVectorField;
13     object      Ub;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 1 -1 0 0 0 0];
19 internalField   uniform (0 0.25 0);
21 referenceLevel      (0 0 0);
23 boundaryField
25     walls
26     {
27         type            fixedValue;
28         value           uniform (0 0 0);
29     }
30     outlet
31     {
32        type             zeroGradient;
33     }
34     inlet
35     {
36         type               fixedValue;
37         value              uniform (0 0.25 0);
38     }
39     frontAndBackPlanes
40     {
41         type               empty;
42     }
45 // ********************* vim: set ft=cpp sw=4 sts=4 et: ******************** //