/*--------------------------------*- C++ -*----------------------------------*\
  =========                 |
  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
   \\    /   O peration     | Website:  https://openfoam.org
    \\  /    A nd           | Version:  7
     \\/     M anipulation  |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      transportProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

phases (water vapour);

phaseChangeTwoPhaseMixture SchnerrSauer;



pSat            2300;   // Saturation pressure (pa) ; As per temperature 25 degree celcius

sigma           1.2; //cavitaion number

water
{
    transportModel  Newtonian; // viscosity Model
    nu              0.892e-6; // Kinematic viscosity of water
    rho             997; // density of liquid water
}

vapour
{
    transportModel  Newtonian;// Viscosity model
    nu              4.283e-4; // Kinematic viscosity of vapour
    rho             0.02308; // density of vapour
}

 //Mass Transport Model
/*KunzCoeffs 
{
    UInf            8.0; // Referential Velocity
    tInf            0.0125; // L = 0.1 m = Lref/Velocity
    Cc              100; // Condensation constant
    Cv              5000; // Evaporation constant
}*/

/*MerkleCoeffs
{
    UInf            20.0;
    tInf            0.005;  // L = 0.1 m
    Cc              80;
    Cv              1e-03;
}*/

SchnerrSauerCoeffs
{
    n               10e12; // number of bubbles
    dNuc            1e-5; //diameter of nucleii
    Cc              1; // keep as default
    Cv              1; //keep as default
}
