Merge branch 'upstream/OpenFOAM' into master
[freefoam.git] / tutorials / incompressible / simpleSRFFoam / mixer / 0 / Urel
blob3e5028362ad4113578bc3c4a2739c891b9d4115d
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      ascii;
12     class       volVectorField;
13     object      Urel;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 1 -1 0 0 0 0];
19 internalField   uniform (0 0 0);
21 boundaryField
23     inlet
24     {
25         type            SRFVelocity;
26         inletValue      uniform (0 0 -10);
27         relative        yes;
28         value           uniform (0 0 0);
29     }
31     outlet
32     {
33         type            zeroGradient;
34     }
36     innerWall
37     {
38         type            fixedValue;
39         value           uniform (0 0 0);
40     }
42     outerWall
43     {
44         type            SRFVelocity;
45         inletValue      uniform (0 0 0);
46         relative        yes;
47         value           uniform (0 0 0);
48     }
50     cyclic
51     {
52         type            cyclic;
53     }
56 // ********************* vim: set ft=cpp sw=4 sts=4 et: ******************** //