STYLE: miss-aligned Headers
[foam-extend-3.2.git] / tutorials / incompressible / pimpleDyMFoam / movingCone / 0 / pointMotionUx
blob177849d1d830d665f8493ecaa5ecd0c6a61947a2
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | foam-extend: Open Source CFD                    |
4 |  \\    /   O peration     | Version:     3.0                                |
5 |   \\  /    A nd           | Web:         http://www.extend-project.de       |
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 // ************************************************************************* //