initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / tutorials / incompressible / pimpleDyMFoam / movingCone / 0 / pointMotionUx
blobe0a68b5aff1f4d4d3c3ccd6ed8238c2e8e4b339c
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       pointScalarField;
13     object      pointMotionU;
15 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
17 dimensions      [0 1 -1 0 0 0 0];
19 internalField   uniform 0;
21 boundaryField
23     movingWall
24     {
25         type            fixedValue;
26         value           uniform 1;
27     }
28     farFieldMoving
29     {
30         type            slip;
31     }
32     fixedWall
33     {
34         type            fixedValue;
35         value           uniform 0;
36     }
37     axis
38     {
39         type            symmetryPlane;
40     }
41     left
42     {
43         type            fixedValue;
44         value           uniform 0;
45     }
46     farField
47     {
48         type            slip;
49     }
50     back
51     {
52         type            wedge;
53     }
54     front
55     {
56         type            wedge;
57     }
60 // ************************************************************************* //