Merge branch 'master' of ssh://git.code.sf.net/p/foam-extend/foam-extend-3.2
[foam-extend-3.2.git] / tutorials / compressible / rhoPorousMRFPimpleFoam / mixerVessel2D / 0 / U
blobad03e05ef00a3d6ed81c130b9d988d3450288cea
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.2                                |
5 |   \\  /    A nd           | Web:         http://www.foam-extend.org         |
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 (0 0 0);
21 boundaryField
23     rotor
24     {
25         type            fixedValue;
26         value           uniform (0 0 0);
27     }
29     stator
30     {
31         type            fixedValue;
32         value           uniform (0 0 0);
33     }
35     front
36     {
37         type            empty;
38     }
40     back
41     {
42         type            empty;
43     }
46 // ************************************************************************* //