/*--------------------------------*- 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;
    location    "constant";
    object      transportProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

phases (water air);


//Uncomment the fluid properties pair you want to simulate and comment out the other pairs

////////////////////////////

//Uncomment the section below for gamma1.06 case


air //freshwater
{
    transportModel  Newtonian;
    nu              1e-06;
    rho             1000;
}

water//seawater with 35g salt/kg water
{
    transportModel  Newtonian;
    nu              0.937e-06;
    rho             1030;
    //ref MIT seawater properties
}

sigma            0.0;
//negligable

///////////////////////////

//Uncomment the section below for gamma100 case

/*
water
{
    transportModel  Newtonian;
    nu              1e-06;
    rho             1000;
}

air //imaginary fluid
{
    transportModel  Newtonian;
    nu              1e-06;
    rho             10;
    
}

sigma            0.07;
//default value of air water
*/

////////////////////////

//Uncomment the section below for gamma135943 case
/*

water//Mercury
{
    transportModel  Newtonian;
    nu              0.114e-06;
    rho             13593;
}

air
{
    transportModel  Newtonian;
    nu              1.48e-05;
    rho             1;
    
}

sigma            0.0486;
//source : wikipedia

*/