Fix tutorials: surfaceTracking/surfactantFoam/sphereTransport: fix system/faSolution
[OpenFOAM-1.6-ext.git] / tutorials / coupled / coupledSwirlTest / 0 / U.org
blob1660a72149b7d36096535bde0d5e70c6a33c906b
1 /*--------------------------------*- C++ -*----------------------------------*\
2 | =========                 |                                                 |
3 | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
4 |  \\    /   O peration     | Version:  1.5                                   |
5 |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
6 |    \\/     M anipulation  |                                                 |
7 \*---------------------------------------------------------------------------*/
8 FoamFile
10     version         2.0;
11     format          ascii;
12     class           volVectorField;
13     object          U;
16 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
19 dimensions      [0 1 -1 0 0 0 0];
21 internalField   uniform (0 0 0);
23 boundaryField
25     inlet      
26     {
27         type            fixedValue;
28         value           uniform (0 -1 0);
29     }
31     outlet
32     {
33         type            fixedValue;
34         value           uniform (0 0 0);
35     }
37     fixedWalls      
38     {
39         type            fixedValue;
40         value           uniform (0 0 0);
41     }
43     defaultFaces    
44     {
45         type            empty;
46     }
50 // ************************************************************************* //