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

type basicMultiphaseSystem;

phases (water rock);

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

rock
{
    type            multiComponentPorousIsothermalPhaseModel;
    diameterModel   constant;
    d               1e-2;
    residualAlpha   1e-6;

    invKModel Sharma;
    SharmaCoeffs
    {
        fineDiameters
        {
            d1   5e-6;
        }
        beta            0.035;
    }
}

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

);

blending
{
    default
    {
        type            none;
    }
}

massTransfer
(
    (water in rock)
    {
        type            particleInfiltration;
        particulated         (d1);
        particleInfiltrationCoeffs
        {
            cakePor    0.6;
            maxporosityEntry 0.99;
            depositionModel
            {
                d1
                {
                    particleDeposition   lambdaCte;
                    lambdaCteCoeffs
                    {   
                        d       1e-6;
                        lambda  1e4;
                        maxporosityEntry 0.99;
                    }
                }
            }
        }
    }
);

saturation
();

capillarity
();

surfaceTension
();

interfaceCompression
();

aspectRatio
();

drag
();

virtualMass
();

heatTransfer
();


lift
();

wallLubrication
();

turbulentDispersion
();

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