Initial commit of NavalHydro package from Wikki to the ShipHydroSIG
[ShipHydroSIG.git] / run / navalFoam / hullSlammingMovingBox2D / 0 / U
blobe5bda41ce8b65d0c5d225efacff56cf8b8a4bbb4
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.4.1-dev                             |
5 |   \\  /    A nd           | Web:      http://www.openfoam.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
9 FoamFile
11     version 2.0;
12     format ascii;
13     class volVectorField;
14     object U;
17 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
19 dimensions      [0 1 -1 0 0 0 0];
21 internalField   uniform (0 0 0);
23 boundaryField
25     hull
26     {
27         type            movingWallVelocity;
28         value           uniform (0 0 0);
29     }
31     left
32     {
33         type            symmetryPlane;
34     }
36     right
37     {
38         type            fixedValue;
39         value           uniform (0 0 0);
40     }
42     bottom
43     {
44         type            fixedValue;
45         value           uniform (0 0 0);
46     }
48     top
49     {
50         type            inletOutlet;
51         inletValue      uniform (0 0 0);
52         value           uniform (0 0 0);
53     }
55     frontAndBack
56     {
57         type            empty;
58     }
62 // ************************************************************************* //