Skip to content
Snippets Groups Projects
U 1.58 KiB
Newer Older
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
henry's avatar
henry committed
|  \\    /   O peration     | Version:  dev                                   |
|   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volVectorField;
    object      U;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 1 -1 0 0 0 0];

internalField   uniform (0 0 0);

boundaryField
{
    movingWall
    {
        type            fixedValue;
        value           uniform (1 0 0);
    }

    farFieldMoving
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }

    fixedWall
    {
        type            fixedValue;
        value           uniform (0 0 0);
    }

    {
        type            symmetryPlane;
    }

    {
        type            pressureInletOutletVelocity;
        value           uniform (0 0 0);
    }

    {
        type            fixedValue;
        value           uniform (0 0 0);
    }

    {
        type            wedge;
    }
}

// ************************************************************************* //