Build instructions update: Cesare Guardino
[foam-extend-3.2.git] / tutorials / incompressible / simpleSRFFoam / axialTurbine / 0_orig / Urel
bloba5a9e59528e6b5e9427a968c31e7a055e5a1aa51
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      Urel;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 1 -1 0 0 0 0];
19 internalField   uniform (0 0 -1);
21 boundaryField
23     RUINLET
24     {
25         type            SRFVelocity;
26         inletValue      uniform (0 0 -1);
27         relative        no;
28         value           uniform (0 0 0);
29     }
30     RUOUTLET
31     {
32         type            zeroGradient;
33     }
34     RUCYCLIC1
35     {
36         type            cyclicGgi;
37     }
38     RUCYCLIC2
39     {
40         type            cyclicGgi;
41     }
42     RUBLADE
43     {
44         type            fixedValue;
45         value           uniform (0 0 0);
46     }
47     RUHUB
48     {
49         type            fixedValue;
50         value           uniform (0 0 0);
51     }
52     RUSHROUD
53     {
54         type            SRFVelocity;
55         inletValue      uniform (0 0 0);
56         relative        yes;
57         value           uniform (0 0 0);
58     }
61 // ************************************************************************* //