/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM:  The Open Source CFD Toolbox
   \\    /   O peration     | Version:   OpenFOAM-9 (f8d11b031) (openfoam.org)
    \\  /    A nd           | Upstream:  A Wikki Brasil project (wikki.com.br)
     \\/     M anipulation  | Version:   dev
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "constant";
    object      phaseProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

type basicMultiphaseSystem;

phases (water rock);

water
{
    type            pureIsothermalPhaseModel;
    diameterModel   constant;
    d               1e-4;
    residualAlpha   1e-6;
}

rock
{
    type            purePorousIsothermalPhaseModel;
    diameterModel   constant;
    d               1e-2;
    residualAlpha   1e-6;
    PVBTCoeffs
    {
        alpha         0.05;
    }
    invKModel       KozenyCarman;
    KozenyCarmanCoeffs
    {
        beta    9;
        gamma   4;
    }
}

porous
(
    (water in rock)
    {
        type            Darcy;
        KrModel         linear;
    }

);

blending
{
    default
    {
        type            none;
    }
}

massTransfer
(
    (water in rock)
    {
        type                          acidMassTransfer;
        Dm                            3.7e-06;
        tortuosity                    0;
        sourceModel                   sourceTwoScale;
        sourceTwoScaleCoeffs
        {
            alpha0s         0.7;
            lambda          (0.2 0.2 0.2);
            Shinf           3.0;
            ks              0.001;
            contactEfficiency           none;
            characteristicLength        monophasic;
        }
    }
);

saturation
();

capillarity
();

surfaceTension
();

interfaceCompression
();

aspectRatio
();

drag
();

virtualMass
();

heatTransfer
();


lift
();

wallLubrication
();

turbulentDispersion
();

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