fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / stressAnalysis / icoFsiFoam / flappingConsoleSmall / fluid / 0 / U
blob8129141095de1c4cfe62dcd7a8c820123f5705bb
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.3                                   |
5 |   \\  /    A nd           | Web:      http://www.openfoam.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
9 FoamFile
11     version 2.0;
12     format ascii;
13     class volVectorField;
14     object U;
17 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
19 dimensions      [0 1 -1 0 0 0 0];
21 internalField   uniform (0 0 0);
23 boundaryField
25     consoleFluid
26     {
27         type            movingWallVelocity;
28         value           uniform (0 0 0);
29     }
30     topWall
31     {
32         type            fixedValue;
33         value           uniform (0 0 0);
34     }
35     bottomWall
36     {
37         type            fixedValue;
38         value           uniform (0 0 0);
39     }
40     outlet
41     {
42         type            zeroGradient;
43     }
44     inlet
45     {
46         type            fixedValue;
47         value           uniform (4 0 0);
48     }
49     frontAndBackPlanes
50     {
51         type            empty;
52     }
56 // ************************************************************************* //