Fixed URL for libccmio-2.6.1 (bug report #5 by Thomas Oliveira)
[foam-extend-3.2.git] / tutorials / mesh / moveDynamicMesh / circCylinder3dHex / 0 / motionU
blobd089c072a65cad695cf57fdfa6811615cf9bf08c
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       tetPointVectorField;
13     object      motionU;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 1 -1 0 0 0 0];
19 internalField   uniform (0 0 0);
21 boundaryField
23     bottomWall
24     {
25         type            fixedValue;
26         value           uniform (0 0 0);
27     }
29     sideWall
30     {
31         type            zeroGradient; //slip;
32     }
34     topWall
35     {
36         type            oscillatingFixedValue;
37         refValue        uniform (0 0 0);
38         amplitude       uniform (0 0 0.5);
39         frequency       0.1;
40         //type            fixedValue;
41         //value           uniform (0 0 0.1);
42     }
44     outlet
45     {
46         type            fixedValue;
47         value           uniform (0 0 0);
48     }
51 // ************************************************************************* //