/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | faSavageHutterFOAM                              |
|   \\  /    A nd           | Copyright (C) 2017 Matthias Rauter              |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       dictionary;
    location    "system";
    object      faSolution;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

solvers
{
    Us
    {
        solver           PBiCG;
        preconditioner   DILU;
        tolerance       1e-10;
        relTol          0.01;
    }

    h
    {
        solver           PBiCG;
        preconditioner   DILU;
        tolerance       1e-10;
        relTol          0.01;
    }

    hentrain
    {
        solver           PBiCG;
        preconditioner   DILU;
        tolerance       1e-10;
        relTol          0.01;
    }

    loss
    {
        solver           PBiCG;
        preconditioner   DILU;
        tolerance       1e-10;
        relTol          0.01;
    }
}

/* Works for Gamma 0.5*/
nOuterCorrectors 15;
minCorrectors 2;
hResidualMax 1e-3;
UsResidualMax 1e-4;

relaxationFactors
{
    h 0.9;
    Us 0.6;
}


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