alpha.air

/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  4.1                                   |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      binary;
    class       volScalarField;
    location    "0.01";
    object      alpha.air;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 0 0 0 0 0 0];

internalField   uniform 0.0027;

boundaryField
{
    Techo
    {
        type            zeroGradient;
    }
    Fondo
    {
        type            zeroGradient;
    }
    Pared
    {
        type            zeroGradient;
    }
    outOil
    {
        type            inletOutlet;
        phi             phi.air;
        inletValue      uniform 0.0027;
        value           uniform 0.0027;
    }
    Entrada
    {
        type            fixedValue;
        value           uniform 0.0027;
    }
    outH2O
    {
        type            inletOutlet;
        phi             phi.air;
        inletValue      uniform 0.0027;
        value           uniform 0.0027;
    }
    frontAndBack_pos
    {
        type            wedge;
    }
    frontAndBack_neg
    {
        type            wedge;
    }
}


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