Initial commit of NavalHydro package from Wikki to the ShipHydroSIG
[ShipHydroSIG.git] / run / navalFoam / twoBoats / 0 / U
blob96fbcecea1c8358c33a5e5648b79cbf5c6a7f087
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 (3 0 0);
23 boundaryField
25     frontBoat
26     {
27         type            movingWallVelocity;
28         value           uniform (0 0 0);
29     }
31     backBoat
32     {
33         type            movingWallVelocity;
34         value           uniform (0 0 0);
35     }
37     in
38     {
39         type            fixedValue;
40         value           uniform (3 0 0);
41     }
43     out
44     {
45         type            inletOutlet;
46         inletValue      uniform (0 0 0);
47         value           uniform (3 0 0);
48     }
50     bottom
51     {
52         type            slip;
53     }
55     top
56     {
57         type            slip;
58     }
60     back
61     {
62         type            slip;
63     }
65     front
66     {
67         type            slip;
68     }
72 // ************************************************************************* //