/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM v2512                                  |
|  \\    /   O peration     | Transport Properties                            |
|   \\  /    A nd           | Fluid Property Definitions                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/

// Fluid transport properties

FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    object      transportProperties;
}

// Diffusion coefficient

DT              DT [ 0 2 -1 0 0 0 0 ] 1;    //4e-05;

// Fluid model

transportModel  Newtonian;

// Kinematic viscosity and density

nu              nu [ 0 2 -1 0 0 0 0 ] 3.85e-04;
rho             rho [ 1 -3 0 0 0 0 0 ] 970.0;

// Cross Power Law model coefficients

CrossPowerLawCoeffs
{
    nu0             nu0 [ 0 2 -1 0 0 0 0 ] 1e-06;
    nuInf           nuInf [ 0 2 -1 0 0 0 0 ] 1e-06;
    m               m [ 0 0 1 0 0 0 0 ] 1;
    n               n [ 0 0 0 0 0 0 0 ] 1;
}

// Bird Carreau model coefficients

BirdCarreauCoeffs
{
    nu0             nu0 [ 0 2 -1 0 0 0 0 ] 1e-06;
    nuInf           nuInf [ 0 2 -1 0 0 0 0 ] 1e-06;
    k               k [ 0 0 1 0 0 0 0 ] 0;
    n               n [ 0 0 0 0 0 0 0 ] 1;
}

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