fixed writing out entries in advective bc
[OpenFOAM-1.6-ext.git] / tutorials / incompressible / icoDyMFoam / movingBlockRBF / 0 / U
blob31b95e8f3fbf37204d843a5f284e72815957ad77
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     object      U;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 1 -1 0 0 0 0];
19 internalField   uniform (1 0 0);
21 boundaryField
23     block
24     {
25         type            movingWallVelocity;
26         value           uniform (0 0 0);
27     }
29     top
30     {
31         type            fixedValue;
32         value            uniform (0 0 0);
33     }
35     bottom
36     {
37         type            fixedValue;
38         value           uniform (0 0 0);
39     }
41     left
42     {
43         type            fixedValue;
44         value           uniform (1 0 0);
45     }
47     right
48     {
49         type            inletOutlet;
50         inletValue      uniform (0 0 0);
51         value           uniform (1 0 0);
52     }
54     defaultFaces
55     {
56         type            empty;
57     }
60 // ************************************************************************* //