/*--------------------------------*- 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            reactingIsothermalPhaseModel;
    diameterModel   constant;
    d               1e-4;
    residualAlpha   1e-6;
}

rock
{
    type            multiComponentPorousIsothermalPhaseModel;
    diameterModel   constant;
    d               1e-2;
    residualAlpha   1e-6;
    
    invKModel       KozenyCarman;
    KozenyCarmanCoeffs
    {
        beta    4.0;
        gamma   1.0;
    }
}

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

);

blending
{
    default
    {
        type            none;
    }
}

massTransfer
(
    (water in rock)
    {
        type       constantMassTransfer;
        constantMassTransferCoeffs
        {
        
        
            rockSpecies         (CaCO3 SiO4);

            mdot
            {
               CaCO3     0.1;
               SiO4      0.2;
               
            }
            contactEfficiency           none;
            characteristicLength        monophasic;
            
        }

        
    }
);

saturation
();

capillarity
();

surfaceTension
();

interfaceCompression
();

aspectRatio
();

drag
();

virtualMass
();

heatTransfer
();


lift
();

wallLubrication
();

turbulentDispersion
();

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