/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  4.x                                   |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    object      dAlpha;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 0 0 0 0 0 0];

internalField   uniform 0;

boundaryField
{
    inletWall
    {
        type            zeroGradient;
    }
    outletWall
    {
        type            zeroGradient;
    }
    movingWall
    {
        type            zeroGradient;
/*
        type            myConstantAlphaContactAngle;
	theta0		62;
        limit		gradient;
	value		uniform 0;
*/
    }
    upperWall
    {
        type            zeroGradient;
    }
    atmosphere
    {
        type            zeroGradient;
/*
        type            inletOutlet;
        inletValue      uniform 0;
        value           uniform 0;
*/
    }
    defaultFaces
    {
        type            empty;
    }
}

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