fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / incompressible / shallowWaterFoam / squareBump / 0 / U
blob369f079254014fc243203ea8fc0bd5116691d767
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       volVectorField;
13     location    "0";
14     object      U;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
18 dimensions      [0 1 -1 0 0 0 0];
20 internalField   uniform (0.1 0 0);
22 boundaryField
24     sides
25     {
26         type            slip;
27     }
28     inlet
29     {
30         type            fixedValue;
31         value           uniform (0.1 0 0);
32     }
33     outlet
34     {
35         type            zeroGradient;
36     }
37     frontAndBack
38     {
39         type            empty;
40     }
43 // ************************************************************************* //