/*--------------------------------*- C++ -*----------------------------------*\
  | =========                 |                                                 |
  | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
  |  \\    /   O peration     | Version:  5.0                                   |
  |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
  |    \\/     M anipulation  |                                                 |
  \*---------------------------------------------------------------------------*/
FoamFile
{
  version     2.0;
  format      ascii;
  class       dictionary;
  location    "constant";
  object      transportProperties;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

#include "../parameters.txt"

phase.theta
{
  rho rho [1 -3 0 0 0 0 0] $fluid_density;
  mu  mu [1 -1 -1 0 0 0 0] $dynamic_viscosity;
}

relativePermeabilityModel  VanGenuchten;

capillarityModel	VanGenuchten;

VanGenuchtenCoeffs
{
    thetamin  $vangenuchten_thetamin;
    thetamax  $vangenuchten_thetamax;
    m	  $vangenuchten_m;
    alpha $vangenuchten_alpha;
}

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