/*--------------------------------*- 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"

// flow properties
thetamin  thetamin [0 0 0 0 0 0 0] $vangenuchten_thetamin;
thetamax  thetamax [0 0 0 0 0 0 0] $vangenuchten_thetamax;

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
{
    m	  $vangenuchten_m;
    alpha $vangenuchten_alpha;
}

// transport properties
eps eps [0 0 0 0 0 0 0]	$kinematic_porosity;
Dm Dm [0 2 -1 0 0 0 0] $molecular_diffusion;

porousTransport
{
    Kd Kd [-1 3 0 0 0 0 0] $retention_coefficient;
    rs rs [1 -3 0 0 0 0 0] $density;
    epsTotal epsTotal [0 0 0 0 0 0 0] $total_porosity;
    lambda lambda [0 0 -1 0 0 0 0 ] $radioactive_decay;
}

dispersionModel alphaDispersion;

alphaDispersionCoeffs
{
    tau tau [0 0 0 0 0 0 0] $tortuosity;
    alphaL alphaL [0 1 0 0 0 0 0] $longitudinal_dispersivity;
    alphaT alphaT [0 1 0 0 0 0 0] $transversal_dispersivity;
}

#includeIfPresent "../eventFile.txt";

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