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

ddtSchemes
{
    default         Euler;
    ddt(A)          backward;
}

gradSchemes
{
    default             Gauss linear;
    grad(U)             Gauss  linear;
    divGradCorr(U)      Gauss  linear;
    snGradCorr(U)       Gauss  linear;
    nHat                Gauss linear;
    grad(alpha.viscoelastic_liquid) Gauss linear;
    "grad\(A.*\)"       Gauss  linear;
    "grad\(U.*\)"       Gauss linear;
}

divSchemes
{
    default	none;
    div(rhoPhi,U)    Gauss vanLeerTDC;
    div(phi,alpha)   Gauss vanLeer;
    div(phirb,alpha) Gauss interfaceCompression;
    div(((rho*nuEff)*dev2(T(grad(U))))) Gauss linear;
    div(phi,tau)     Gauss vanLeerTDC;
}

laplacianSchemes
{
    default          Gauss linear corrected;
}

interpolationSchemes
{
    default             linear;
    interpolate(tau)     linear;
    flux(U)              linear;
    interpolate(nHat)   linear;
    "interpolate\(interfaceNormal.*\)" linear;
    interpolate(rAGamma)  linear;
    interpolate(sGrad(U))  linear;
    interpolate((1|A(U))) linear;
    interpolate((rho*(1|A(U))))  linear;
    dotInterpolate(S,U_0) linear;
    flux(HbyA)           linear;
    interpolate(K_)     linear;
    interpolate(sigma)  linear;
}

snGradSchemes
{
    default          corrected;
}

fluxRequired
{
    default          no;
    p_rgh;
    pcorr;
    alpha.viscoelastic_liquid;
}


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